/* Global */
body {
    margin: 0;
    padding: 0;
    background-color: #efeeee;
    position: relative;
}

div {
    font-family: alternate-gothic-no-3-d, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.small-grey {
    font-size: 0.7rem;
    color: #747474;
    letter-spacing: 0.15rem;
}

.normal-grey {
    font-size: 18px;
    color: #747474;
    
}

/* Header */
header {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
}
header img {
    height: 13vh;
}
/* Chart Container */
.chart-container {
    background-color: #f7f5f5;
    width: 60vw;
    height: 50vh;
    max-height: 50vh;
    margin: auto;
    margin-bottom: 10px;
}

.chart-container #chart {
    margin:auto;
}

.chart-container div {
    padding: 10px;
    font-size: 20px;
}

.chart-title {
    background-color: #f7f5f5;
    width: 60vw;
    margin: auto;
    padding: 10px;
    font-size: 20px;
    box-sizing: border-box;
}

/* Control box */
.control-box {
    width: 60%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    column-gap: 12px;
}

.control-box .title {
    padding: 5px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.th-box {
    position: relative;
}

.disabled {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.4;
}

.th-box .title {
    margin-left: 7.5%;
}

.cdd-box .title {
    text-align: center;
}

.control-box .th-box, .cdd-box{
    background-color: #f7f5f5;
}

.slider {
    margin: 35px 0 15px 7.5%;

    -webkit-appearance: none;
    width: 85%;
    height: 0.08rem;
    border-radius: 5px;
    background: black;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    /* border: 1px solid #3fc3dc; */
    border: 1px solid grey;
    height: 20px;
    width: 20px;
    border-radius: 25px;
    /* background: #3dc3dc; */
    background: grey;
    cursor: pointer;
    -webkit-appearance: none;

}

.th-box :nth-child(3) {
    float: left;
    padding-left: 7.5%;
}

.th-box :nth-child(4) {
    float: right;
    padding-right: 7.5%;
}

.cdd-box :nth-child(2) {
    float: left;
    font-size: 65px;
    margin-right: 25px;
    margin-left: 25%;
}

.cdd-box :nth-child(3) {
    float: left;
    margin-top: 30px;
}

/* Footer */

footer {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

footer :nth-child(n) {
    flex: 1;
}

.emp-logo {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
}

.emp-logo div {
    padding-left: 82%;
}

.emp-logo img {
    height: 2.8rem;
}

.knl-logo {
    display: grid;
    grid-template-columns: 1fr 6fr;
    align-items: center;
}

.knl-logo img {
    height: 1.35rem;
    padding-left: 9.5px;
}

.not-found-container {
    text-align: center;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-text {
    width: 80%;
    font-weight: bold;
    font-size: 24px;
}


