﻿body {
    margin: 0px;
    background-color: #eeeeee;
    font-family: "phenomena_light";
    font-size: 20px;
    color: #1A6A7C;
}

@font-face {
    font-family: "phenomena_light";
    src: url("../img/Phenomena-Light.otf");
  }

@font-face {
    font-family: "amatic_bold";
    src: url("../img/AmaticSC-Bold.ttf");
  }

.content {
    width: 1024px;
    margin: auto;
    padding: 30px;
    background-image: url(../img/dust_scratches.png);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

button {
    background: #1A6A7C;
    border: solid 1px #1A6A7C;
    margin: 40px;
    padding: 10px;
    font-size: 18pt;
    font-family: "amatic_bold";
    color: white;
    cursor: pointer;
  }

.closeButton {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}

.helpCard {
    position: relative;
    padding: 15px;
    margin: 20px;
    width: 330px;
    border: solid 1px  #1A6A7C;
    border-radius: 10px;
    background: #ffffff;
    -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .4));
    filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .4));
}

.helpPanel {
    position: absolute;
    left: 0;
    top: 0;
    padding: 15px;
    background-image: url(../img/dust_scratches.png);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 2;
}

.helpPivots {
    display: flex;
    justify-content: space-evenly;
    font-family: "amatic_bold";
    font-size: 22pt;
    font-weight: 900;
    cursor: pointer;
}
.cardCaption {
    font-family: "amatic_bold";
    font-size: 22pt;
}

.code {
    font-family: Consolas
}

.activePivot {
    border-bottom: 3px solid orange;
}

.icon {
    height: 35px;
    margin-right: 15px;
}

.container {
    display: flex;
    justify-content: space-between;
}

.top-bar {
    align-items: center;
}

.message-bar {
    width: 73.5%;
    background: #ffffff;
    border: 1.5px solid #1A6A7C;
    border-radius: 20px;
    max-height: 35px;
    margin-top: 20px;
    text-align: center;
    padding: 5px;
    color: #1A6A7C;
}

.ribbon {
    height: 100px;
    margin-bottom: 15px;
    display: flex;                   /* defines flexbox */
    align-items: flex-end;           /* bottom of the box */
}

.palette>div {
    display: flex;
}

.auxButtons>img {
    max-height: 35px;
    margin-right: 10px;
}

.scene {
    width: 456px;
    height: 456px;
    perspective: 1000px;
  }

.card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
  }

.card__face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }

.card__face--back {
    background: white;
    backface-visibility: hidden;
    transform: rotateY( 180deg );
  }

.card.is-flipped {
    transform: rotateY(180deg);
  }

canvas {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

select {
    width: 205px;
    margin-bottom: 3px;
    font-size: 13pt;
    border: 1.5px solid #1A6A7C;
    border-radius: 10px;
    height: 30px;
    padding-left: 5px;
    color: #1A6A7C;
}

.editButtonsContainer {
    width: 100%;
}

.palette>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
    width: 270px;
}

.palette>div>div {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 18px;
    margin-top: 5px;
}

.program {
    font-family: Consolas;
    height: 434px; 
    width: 250px;
    font-size: 14pt;
    border: solid 1px;
    padding: 10px;
    overflow-y: scroll;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.label {
    margin-bottom: 10px;
}

.edit {
    background: rgb(227, 241, 250); 
    border-color: rgb(0, 58, 94); 
    color: rgb(0, 58, 94);
}

.read {
    background: rgb(241, 241, 241);
    border-color: rgb(58, 58, 58);
    color: rgb(58, 58, 58);
}

.normal {
    background: rgb(241, 241, 241);
}

.running {
    background: rgb(181, 234, 255);
}

.error {
    background: rgb(255, 159, 159);
}