.pt-25 {
  padding-top: 25px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.calc-col-1 {width: 8.33%;}
.calc-col-2 {width: 16.66%;}
.calc-col-3 {width: 25%;}
.calc-col-4 {width: 33.33%;}
.calc-col-5 {width: 41.66%;}
.calc-col-6 {width: 50%;}
.calc-col-7 {width: 58.33%;}
.calc-col-8 {width: 66.66%;}
.calc-col-9 {width: 75%;}
.calc-col-10 {width: 83.33%;}
.calc-col-11 {width: 91.66%;}
.calc-col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .calc-col-1,
  .calc-col-2,
  .calc-col-3,
  .calc-col-4,
  .calc-col-5,
  .calc-col-6,
  .calc-col-7,
  .calc-col-8,
  .calc-col-9,
  .calc-col-10,
  .calc-col-11,
  .calc-col-12
   {
    width: 100%;
  }
}


.range{
  margin:30px 0 20px 0;
  -webkit-appearance: none;
  background-color: #f5f6f8;
  height: 5px;
  width: 100%;
  margin: 10px auto;
}
.range:focus{
  outline:none;
}
.range::-webkit-slider-thumb{
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #0091FF;
  border-radius: 50%;
  cursor: -moz-grab;
  cursor: -webkit-grab; 
}

/* modal */

#modal_wrapper.overlay::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(0,0,0,0.7);
  }

  #modal_window {
    display: none;
    z-index: 200;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 360px;
    overflow: auto;
    padding: 10px 20px;
    background: #fff;
    border: 5px solid #999;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  #modal_wrapper.overlay #modal_window {
    display: block;
  }


.price-calculator .text{
    color: #0A396C;
    font-family: 'Red Hat Display';

}


.price-calculator .text-big{
    font-size: 30px;

}

.price-calculator .row-right{
    text-align: right;

}

.price-calculator .row-left{
    text-align: left;

}

.price-box {
    background-color: #0091FF;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin: 10px 0;
    padding: 35px 0;
    border-radius: 24px;
    box-shadow: 0px 30px 20px -17px rgb(10 41 85 / 50%);
}


.price-content {
    padding: 30px 40px;

}

.price-box h1,
.price-box h2,
.price-box p {
    color: white;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: bold;
    font-size: 35px;
}

.price-box h1{
    color: #FFFFFF;
    font-size: 35px;
    font-weight: 600;
}

.price-box h2 {
    font-size: 22px;
    font-weight: 400;
}

.price-box p {
    font-size: 17px;
    font-weight: 400;
}


.price-slider {
    width: 100%; /* Width of the outside container */
  }
  
  /* The slider itself */
  .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
  }
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #00A7FF; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #00A7FF; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }


.price-calculator button#cot, 
.price-calculator button {
    background: #90AC67;
    color: white;
    border-radius: 40px;
    border: none;
    min-width: 120pt;
}

.price-calculator button#cot, 
.price-calculator button,
.btn-cot  {
    background: #90AC67;
    color: white;
    border-radius: 40px;
    border: none;
    min-width: 120pt;
}

.btn-cot:hover  {
  background: #5f743f;
  color: white;
}

.price-calculator input#nb_collabs {
    background: #FFFFFF;
    border: 1px solid #9E9E9E;
    color: #0A396C;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 0px;
    width: 100px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
