.form-container {
   /* background-color: #f6f6f6;*/
    padding: 1em;
}
.block-shadow {
 /*   background: #e9e9e9;*/
    border-radius: 3px;
    margin: 25px 0;
  /*  box-shadow: 0px 0px 9px 3px #d7d7d7;*/
}
.field-is-filled:after {
    content: "\f00c";
    font-family: 'fontawesome';
    color: #65cf65;
    margin-left: 7px;
}
.field-is-filled {
    color: #65cf65;
}
.field-is-filled+.form-control {
    border:2px solid #65cf65;
}
.form-control {
    background-color: transparent!important;
    color: #fff!important;
     border:none!important;
     border-radius: 0!important;
}
.calc-btn {
    background: linear-gradient(335deg, #03488d 0, #003d7b 52%, #00d4ff 100%);
    color: #fff;
    font-size: 1.1em;
    box-shadow: rgba(148,148,148,.175) 0 2px 6px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: .75em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
    border-radius: 2px;
    margin: 3px 0;
    text-decoration: none;
    font-weight: 600;
}

.result {
    color: #333;
    font-size: 1.4em;
    font-weight: 700;
    padding: .5em 10px;
}
label {
    font-weight: 600;
    color: #59C2DF;
}
.new-calculation {
    margin-top: 10px;
    font-size: .7em;
}
.result .ct-tooltiptext {

    visibility: hidden;
    width: 140px;
    background-color: #242424;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 11px;
    left: 0;
    top: -100%;
    font-weight: normal;
}
.result  .ct-ctc {
    position: relative;
    display: inline-block;
}
.result .ct-link {
  font-size: 12px;  
}
.result .copy-btn:hover + .ct-tooltiptext {
    visibility: visible;
    opacity: 1;
}
.result .copy-btn {
    cursor: pointer;
    margin-right: 2px;
}
#result-block .price-label {
    font-size: 30px;
    color: #fff;
}

#result-block .result_price  {
        font-size: 35px;
    color: #e1ff00;
}
.result .copy-btn img {
  width: 23px;
}
#calculator option{
    background-color: #000;
    color:#fff;
} 

#calculator .form-group
{
    margin-bottom: 1rem;
    padding: 10px 5px;
    background-color: #04041c;

    border: 1px solid #303030;
}
label.error {
    padding: 5px;
    background: red;
    color: #fff;
    border-radius: 0 0 10px 10px;
    line-height: 1;
}
#car-info-content,#car-info-saved {
    padding: 15px 10px;
}
div.modal {
 background-color: rgb(0 0 0 / 75%);
 padding-top: 130px;

}
.modal-backdrop {
    display: none;
}
.modal-footer {
    background-color: #fff;
}
.modal-content {
    min-height: 250px;
}
.car-title {
    font-weight:600;
    margin-bottom:7px;
}
.loader{
      display: block;
      position: relative;
      height: 12px;
      width: 100%;
      border: 1px solid #fff;
      border-radius: 10px;
      overflow: hidden;
      margin-top:15px;
    }
    .loader::after {
      content: '';
      width: 40%;
      height: 100%;
      background: #FF3D00;
      position: absolute;
      top: 0;
      left: 0;
      box-sizing: border-box;
      animation: animloader 2s linear infinite;
    }
    
    @keyframes animloader {
      0% {
        left: 0;
        transform: translateX(-100%);
      }
      100% {
        left: 100%;
        transform: translateX(0%);
      }
    }
    
    