body{
    padding: 0px;
    margin:0px;
    box-sizing: border-box;
    /*font-family: 'Nunito Sans', sans-serif;*/
    /*font-family:'T1 Body Font',Helvetica,sans-serif;*/
    /*font-family:"Toyota Regular",arial,helvetica,sans-serif;*/
}

@font-face {
    font-family: 'T1 Body Font';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/ToyotaType-Book.eot');
    src: url('../fonts/ToyotaType-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/ToyotaType-Book.woff2') format('woff2'), url('../fonts/ToyotaType-Book.woff') format('woff'), url('../fonts/ToyotaType-Book.ttf') format('truetype');
}
.app-wrapper{
    max-width:1200px;
    margin: 0 auto;
}
.global-wrapper{
    position: relative;
}
.loader{
    position: absolute;
    width:100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hide-loader{
    display: none;
}
.loader img{
    height: 40px;
}
.cost-calculator-controls{
    display: flex;
    flex-wrap: wrap;
}
.cost-calculator-controls .cost-control-box{
    /* background-color: green; */
    width:calc(100% / 6 - 10px);
    height: 100px;
    margin-right: 10px;  
}
.cost-calculator-controls .cost-control-box label{
    display: block;
    margin-bottom: 10px;
}
.cost-calculator-controls .cost-control-box select{
    /*padding: 10px;*/
    height: 45px;
    border-radius: 20px;
    width: 100%;
    outline: none;
    border: 1px solid #888585;
}
.cost-calculator-controls .cost-control-box input{
    /*padding: 10px;*/
    height: 40px;
    border-radius: 20px;
    width:95%;
    outline: none;
    border: 1px solid #888585;
}
.cost-calculator-controls .cost-control-sum{
    width:100%;
}
.cost-calculator-controls .cost-control-sum a{
    width: 100%;
    display: block;
    background-color: #CC0033;
    color: white;
    height: 45px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.4s ease-in-out;
}
.cost-calculator-controls .cost-control-sum a:hover{
    background-color: #840223;
}
.result {
    padding: 10px;
    position: absolute;
    top:-80px;
    left: 50%;
    transform: translate(-50%,50%);
    background-color: #f4f4f4;
    width:50%;
    /*height: 100%;*/
    border-radius: 8px;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.16); 
box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.16);
}
.close-box{
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    color: #cc0033;
}
.close-box:hover{
    cursor: pointer;
}
.resultInner p span{
    font-weight: bold;

}
.resultInner p .price-label{
    color:#CC0033;
    font-size: 23px;
}
.calculatorTitle{
    font-size: 29px;
    /*color: #cc0033;*/
    margin-bottom: 40px;
    text-align:center;
}
.errorMsg{
    background-color: #cc003352;
    color: white;
    /*padding: 10px;*/
    margin-bottom: 15px;
    display: none;
    padding: 5px;
    font-size: 14px;
}
.showError{
    display: block;
}
.errorIconCustom{
    font-size: 17px;
    margin-right: 5px;
    color:#CC0033;
}
.hide-element-custom{
    display: none;
}
@media screen and (max-width:1200px){
    .app-wrapper{
        max-width: 100%;
    }
}
@media screen and (max-width:1076px){
   .result{
    top:-150px;
   }
}
@media screen and (max-width:1060px){
    .cost-calculator-controls .cost-control-box{
        width:calc(100% / 3 - 10px)
    }
}
@media screen and (max-width:580px){
    .cost-calculator-controls .cost-control-box{
        width:100%;
    }
    .cost-calculator-controls .cost-control-box input{
        width:100%;
    }
    .result {
        width:90%;
        height: 300px;
        top:0;
    }
}
.cost-control-box label{
    text-align: center;
}
.global-wrapper{
    /*font-family:"Toyota Regular",arial,helvetica,sans-serif;*/
    font-family: 'T1 Body Font';
}
