body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
#app{
    background-color: #282830; 
}
.app-wrapper{
    width: 1200px;
   /*background-color: red;*/
    margin: 0 auto;
    display: flex;
}
.control-wrapper{
    display: flex;
    /*height: 400px;*/
    width: 1200px;
    margin: 0 auto;
}
/*Controler style*/
#controler-container{
    display: flex;
    padding: 20px 20px 0px 20px;
    width:50%;
    color:white;
    /*background-color: #eff0f1;*/
}
#controler-container .select-box{
    margin-right: 30px;
    width: 100%;
}
.app-wrapper .left{
    /*border: 2px solid black;*/
    /*background-color: #eff0f1;*/
    width:50%;
    /*height: 400px;*/
    padding: 20px;
}
.app-wrapper .right{
    width:50%;
    margin-top:-60px;
    /*height: 400px;*/
}
.align-class{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.app-wrapper .right .estimated-range-container{
    /*color:#6c6c6c!important;*/
    color:white;
}
.app-wrapper .right .estimated-range-container .estimated-range-container-title{
    font-size:20px;
    text-align: center;
    margin-top:15px;
}
.app-wrapper .right .estimated-range-container .estimated-range-container-range{
    font-size:60px;
    text-align: center;
}
.app-wrapper .right .model-image{
    padding: 0px;
    text-align: center;
}
.app-wrapper .right .model-image img{
    width:80%;
}
.rs-container .rs-selected{
    /*background-color: #282830!important;*/
    /*background-color:#6c6c6c!important;*/
    /*background-color: #b7b7b7!important;*/
    background-color: #e7e7f1!important;
    border-color: #282830!important;
}
.rs-container .rs-bg{
    background-color: white;
}
.rs-tooltip{
    border-color: #282830!important;
}
.form-select{
    height: 45px;
    width: 100%;
    margin-top: 15px;
}
.range-visual-container{
    width:100%;
    display: flex;
}
.range-visual-container .cityRoad{
    width:50%;
    height: 200px;
    border: 1px solid #c3c3c3;
    transition: width 0.5s ease-in-out;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e7e7f1!important;
    color:#6c6c6c!important;
}
.range-visual-container .highwayRoad{
    width:50%;
    height: 200px;
    border: 1px solid #c3c3c3;
    border-left: none;
    transition: width 0.5s ease-in-out;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.range-visual-container .highwayRoad .percent-box{
    color:#6c6c6c!important;
}
.fa-city, .fa-road{
    /*color: #282830!important;*/
    /*color:#868586!important;*/
    /*color:#c3c3c3!important;*/
    color:#282830;
    font-size: 50px!important;
}
/* .fa-city{
    color:white!important;
} */
.road-category-title{
    text-align: center;
}
.road-category-percent{
    text-align: center;
    /*font-weight: bold;*/
    font-size: 25px;
    padding: 5px;
}
.percent-box{
    text-align: center;
}
.section-title{
    padding-bottom:20px;
    color:white;
    position: relative;
}
#trigger-popup:hover{
    cursor: pointer;
}
#trigger-popup:hover ~ .popup-info{
    opacity:1
}
.popup-info{
    position: absolute;
    top: 0px;
    left: 30%;
    background-color: white;
    color: #282830;
    width: 400px;
    padding: 10px;
    -webkit-box-shadow: 2px 3px 3px -2px #000000; 
    box-shadow: 2px 3px 3px -2px #000000;
    opacity:0;
    transition: opacity 0.3s ease-in-out;
}
.popup-info .popup-title{
    font-weight: bold;
    margin-bottom: 5px;
}
.flex-fix{
    display: flex;
    justify-content: center;
    align-items: center;
}
.metric{
    text-align: center;
    font-size: 65px;
    margin-left: 10px;
    color:white;
}
.rs-container .rs-pointer{
    /*background-color:#dc3545;*/
    /*background-color: #00b0f4;*/
    box-shadow: none;
}
.rs-container .rs-scale span ins{
    color:white;
}
.rs-container .rs-scale{
    display:flex;
}
.road-category-title{
    color:#282830;
    font-weight: bold;
}
.decoration-line{
    background-color: #dc3545;
    height: 2px;
    width: 30px;
    margin: 0 auto;
    margin-top:5px;
}
.disclaimer{
    color:#c3c3c3;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
}
@media screen and (max-width:1200px){
    .app-wrapper{
        width:100%;
    }
    .control-wrapper{
        width:100%;
    }
}
@media screen and (max-width:1170px){
    .app-wrapper{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .app-wrapper .right{
        margin-top: 0px;
    }
    .app-wrapper .left{
        width: 80%;
    }
    .app-wrapper .right{
        width: 80%;
    }
    #controler-container{
        width:80%;
        margin: 0 auto;
    }
    #app{
        overflow: hidden;
    }
}
@media screen and (max-width:500px){
    .app-wrapper .left{
        width: 90%;
    }
    .app-wrapper .right{
        width: 90%;
    }
    #controler-container{
        width:90%;
        margin: 0 auto;
        flex-direction: column;
    }
    #controler-container .select-box{
        margin-bottom:10px;
    }
}