
@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');
}
body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.app-wrapper{
  width: 100%;
  /*height: 400px;*/
  font-family: 'T1 Body Font';
}
.app-container{
  width:1090px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.app-container .app-box{
  /*background-color: yellow;*/
  width: calc(100% / 3 - 12px);
  margin-right: 10px;
  /*height: 400px;*/
  /* border: 1px solid black; */
}
.app-container .app-box .app-box-label{
  background-color: lightgray;
  padding: 10px 5px;
  border:1px solid black;
}
.app-container .app-box .grade-slider{
  width: 100%;
  margin: 0 auto;
}
#car-grade{
  margin-top: 20px;
  border:1px solid black;
}
#car-color{
  margin-top: 20px;
  border:1px solid black;
  height: 250px;
  overflow: hidden;
}
.app-container .app-box .grade-slider .grade-slider-thumbnail{
  width:100%;
}
.app-container .app-box .grade-slider .grade-slider-thumbnail img{
  width:100%;
}
.app-container .app-box .grade-slider .loader{
width:20%;
margin: 0 auto;
}
.loader-container{
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.app-container .app-box .grade-slider .grade-slider-grade-info{

}
.app-container .app-box .grade-slider .grade-title{
  margin-left: 40px;
  font-size: 20px;
}
.grade-item-list {list-style: none}
.grade-item-list li::before {
  content: "•";
  color: red;
  font-size: 25px;
}
.km-list{
  margin-top: 20px;
}

/*Radio button style*/
.radio-btn {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
   -khtml-border-radius: 50%;
   -webkit-appearance: none; 
   padding:0;
  border: 2px solid black;
}

/* On mouse-over, add a grey background color */
.radio-btn:hover input ~ .checkmark {
  background-color: white;
}

/* When the radio button is checked, add a blue background */
.radio-btn input:checked ~ .checkmark {
  background-color: white;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-btn input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-btn .checkmark:after {
     top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
   -khtml-border-radius: 50%;
   -webkit-appearance: none; 
   padding:0;
    background: black;
}
.slick-dots{
  list-style: none;
  padding: 0px;
  display: flex;
  justify-content: center;
}
.slick-dots .slick-active button{
  background-color: black;
}
.slick-dots li button{
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
   -khtml-border-radius: 50%;
  -webkit-appearance: none; 
  padding:0;
  background-color: white;
  color: white;
  text-indent: -9999px;
  height: 14px;
  width:14px;
  border-color:black;
}
.slick-dots li{
  margin: 2px;
}
.slick-dots li button:hover{
  cursor: pointer;
}
.mr-top-35{
  margin-top:45px;
}
.span-bold{
  font-weight: bold;
  display: inline-block;
  display: block;
  margin-bottom: 10px;
  /*padding: 10px 5px;*/
}
.red-text{
  color: red;
  font-weight: bold;
}
.promotion-details .app-box-label{
  margin-bottom: 10px;
}
.summary-info{
  position: absolute;
    left: 33%;
    margin-top: 90px;
    width:66%;
}
@media screen and (max-width:1200px){
  .app-container{
      width:95%;
  }
  .summary-info{
    left: 0%;
    margin-top: 10px;
    width:100%;
  }
}
@media screen and (max-width:850px){
  .app-container .app-box{
      width: calc(100% / 2 - 12px);
      margin-bottom: 20px;
  }
}
@media screen and (max-width:600px){
  .app-container .app-box{
      width: 100%;
      margin-right:0px;
  }
}