@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700|Oswald:400,300,700);
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  font-family: "brandon-grotesque",Arial,Helvetica,Geneva,sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* a:hover {
  text-decoration: none;
}

body {
  width: 100%;
}

section {
  background-color: white;
}

.background--gray {
  background-color: #fcfcfc;
}

.section--padding {
  padding: 50px 200px;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #31c6d6;
}

.section-title h1, .section-title h2, .section-title h3, .section-title h4, .section-title h5, .section-title h6 {
  font-size: 20px;
  font-weight: bold;
  padding: 5px;
  display: inline-block;
}

.section-title span, .section-title p {
  display: block;
  color: #505050;
}

@media (max-width: 992px) {
  .section--padding {
    padding: 50px;
  }
  h2 {
    font-size: 14px;
  }
  .section-title h1, .section-title h2, .section-title h3, .section-title h4, .section-title h5, .section-title h6 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section-title h1, .section-title h2, .section-title h3, .section-title h4, .section-title h5, .section-title h6 {
    font-size: 16px;
  }
  .section--padding {
    padding: 20px;
  }
}

/* Shadow on Background Pages */
.black-full-shadow {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.navbar-toggler {
  padding: 0;
}

.nav-icon {
  width: 35px;
  height: 24px;
  position: absolute;
  left: 15px;
  top: -40px;
  margin: auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}

.nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
  left: 8px;
}

.main-btn, .red-btn, .pink-btn, .orange-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #31c6d6;
  border: none;
  border-radius: 0.6em;
  color: white;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  margin: 10px 0;
  padding: 1em 1.5em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: color 300ms ease-in-out, -webkit-box-shadow 100ms ease-in-out;
  transition: color 300ms ease-in-out, -webkit-box-shadow 100ms ease-in-out;
  transition: box-shadow 100ms ease-in-out, color 300ms ease-in-out;
  transition: box-shadow 100ms ease-in-out, color 300ms ease-in-out, -webkit-box-shadow 100ms ease-in-out;
}

.main-btn:hover, .main-btn:focus, .red-btn:hover, .red-btn:focus, .pink-btn:hover, .pink-btn:focus, .orange-btn:hover, .orange-btn:focus {
  color: #31c6d6;
  outline: 0;
  -webkit-box-shadow: 0 0 40px 40px #f3f3f3 inset;
          box-shadow: 0 0 40px 40px #f3f3f3 inset;
}

.main-btn i, .red-btn i, .pink-btn i, .orange-btn i {
  display: inline-block;
  margin: 0 5px;
}

.main-btn.gray-btn {
  background-color: white;
  color: #31c6d6;
}

.main-btn.gray-btn:hover, .main-btn.gray-btn:focus {
  color: #f3f3f3;
  -webkit-box-shadow: 0 0 40px 40px #31c6d6 inset;
          box-shadow: 0 0 40px 40px #31c6d6 inset;
}

.button__container {
  width: 100%;
  padding: 0 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.button__container.row {
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button__container > div {
  text-align: center;
}

.button__container div.col-5 .main-btn {
  display: inline-block;
  padding: 1em 1.5em;
  max-width: 100%;
}

.button__container div.col .main-btn {
  max-width: 90%;
}

.pink-btn {
  background-color: #ea6a7c;
}

.pink-btn:hover, .pink-btn:focus {
  color: #ea6a7c;
  outline: 0;
  -webkit-box-shadow: 0 0 40px 40px #f3f3f3 inset;
          box-shadow: 0 0 40px 40px #f3f3f3 inset;
}

.red-btn {
  background-color: #da1e40;
}

.red-btn:hover, .red-btn:focus {
  color: #da1e40;
  outline: 0;
  -webkit-box-shadow: 0 0 40px 40px #f3f3f3 inset;
          box-shadow: 0 0 40px 40px #f3f3f3 inset;
}

.orange-btn {
  background-color: #ff6600;
}

.orange-btn:hover, .orange-btn:focus {
  color: #ff6600;
  outline: 0;
  -webkit-box-shadow: 0 0 40px 40px #f3f3f3 inset;
          box-shadow: 0 0 40px 40px #f3f3f3 inset;
}

.slideToggleBtn {
  width: 50px;
  height: 70px;
  cursor: pointer;
  -webkit-animation: slideToggleAnimation 1s infinite alternate;
          animation: slideToggleAnimation 1s infinite alternate;
  padding: 5px 10px;
}

.slideToggleBtn i {
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.slideToggleBtn i:last-of-type {
  position: relative;
  top: -6px;
}

.slideToggleBtnRotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@-webkit-keyframes slideToggleAnimation {
  from {
    color: black;
  }
  to {
    color: #31b2d6;
  }
}

@keyframes slideToggleAnimation {
  from {
    color: black;
  }
  to {
    color: #31b2d6;
  }
}

.form__container {
  overflow: hidden;
  padding: 15px;
}

.form__container .form-group {
  overflow: hidden;
}

.form__container .form-group label {
  color: #000;
  margin-bottom: 0;
}

.form__container .form-group input, .form__container select, .form__container textarea, .form__container .select2-container--default .select2-selection--single {
  background-color: #ffffff3d;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 15px;
  outline: none;
  margin: 5px 0;
  color: #3d3d3d;
}

.form__container .form-group input, .form__container select, .form__container .select2-container--default .select2-selection--single {
  height: 50px;
}

.form__container select, .form__container .select2-container--default .select2-selection--single {
  font-size: 14px;
}

.form__container select option, .form__container .select2-container--default .select2-selection--single option {
  color: inherit;
}

.form__container ::-webkit-input-placeholder {
  color: #3d3d3d;
  font-size: 14px;
}

.form__container :-ms-input-placeholder {
  color: #3d3d3d;
  font-size: 14px;
}

.form__container ::-ms-input-placeholder {
  color: #3d3d3d;
  font-size: 14px;
}

.form__container ::placeholder {
  color: #3d3d3d;
  font-size: 14px;
}

.form__container .form-group {
  overflow: hidden;
  position: relative;
}

.form__container .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
}

.form__container .form-group input.datepicker {
  padding-left: 30px;
}

.form__container .form-group i {
  color: #10bebe;
  position: absolute;
  bottom: 22px;
  left: 17px;
  z-index: 1000;
  display: inline-block;
}

.check input[type="checkbox"] {
  display: none;
}

.check label {
  display: block;
  margin: 1.5em 1em;
  margin-right: 0;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  color: black;
}

.check input[type="checkbox"]:checked + label.checkbox,
.check input[type="checkbox"]:checked + label.checkbox::before {
  border-color: #31c6d6;
  -webkit-transition: all .1s ease-in;
  transition: all .1s ease-in;
}

.check label.checkbox::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  left: -2em;
  -webkit-transition: all .1s ease-in;
  transition: all .1s ease-in;
}

.check label.checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: -22.5px;
  visibility: hidden;
  background-color: #31c6d6;
}

.check input[type="checkbox"]:checked + label.checkbox::after {
  visibility: visible;
  -webkit-transition: all .1s ease-in;
  transition: all .1s ease-in;
}

/* input:checked */
#delivery {
  top: 65px;
}

.delivery {
  top: 0 !important;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}

.return-show {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.return-show-off {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .check label {
    margin: 1em 0 1em 1.5em !important;
  }
}

/* select2 */
.select2-container {
  display: block;
  width: 100% !important;
}

.select2-container--open {
  width: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 10px;
  right: 20px;
  width: 20px;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
  color: #3d3d3d;
  text-align: left;
  padding: unset;
}

.select2-dropdown.select2-dropdown--below,
.select2-dropdown.select2-dropdown--above {
  text-align: right;
}

.select2-container--default
.select2-results__option--highlighted[aria-selected] {
  background-color: #ffffffbe;
  color: #3d3d3d;
}

.select2-dropdown.select2-dropdown--below, .select2-dropdown.select2-dropdown--above {
  text-align: left;
  background-color: #ffffffbe;
  color: black;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #9ccbdb;
}

#ui-datepicker-div {
  z-index: 10000 !important;
}

.form--color-white .form__container ::-webkit-input-placeholder, .form--color-white .select2-container--default .select2-selection--single .select2-selection__rendered, .form--color-white .check label {
  color: white;
}

.form--color-white .form__container :-ms-input-placeholder, .form--color-white .select2-container--default .select2-selection--single .select2-selection__rendered, .form--color-white .check label {
  color: white;
}

.form--color-white .form__container ::-ms-input-placeholder, .form--color-white .select2-container--default .select2-selection--single .select2-selection__rendered, .form--color-white .check label {
  color: white;
}

.form--color-white .form__container ::placeholder, .form--color-white .select2-container--default .select2-selection--single .select2-selection__rendered, .form--color-white .check label {
  color: white;
}

.form--color-white .form__container .form-group label {
  color: #fff;
}

.form--color-white .form__container .form-group input.datepicker {
  padding-left: 25px;
  color: white;
}

.car-list {
  text-align: center;
}

.car-container {
  max-height: 110vh;
  max-width: 1400px;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height .5s;
  -moz-transition: max-height 0.5s;
  -ms-transition: max-height .5s;
  -o-transition: max-height .5s;
}

.car-container > .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.faded {
  display: inline-block;
  visibility: visible;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0.014)));
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0.014));
}

.faded-hidden {
  visibility: hidden;
}

.car-container-show {
  display: block !important;
  max-height: 1000vh !important;
  -webkit-transition: max-height 1s ease;
  -moz-transition: max-height 1s ease;
  -ms-transition: max-height 1s ease;
  -o-transition: max-height 1s ease;
}

.slideToggleFaded {
  display: inline-block;
  visibility: visible;
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(closest-corner, #00000065 60%, #00000000);
}

.slideToggleFaded-hidden {
  visibility: hidden;
}

.car-box {
  height: 100%;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f7f7;
  border-radius: 5px;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.car-box > div {
  padding: 5px !important;
}

.car-box .car-box__img {
  padding-top: 20px;
}

.car-box .car-box__img a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.car-box .car-box__img img {
  width: 100%;
}

.car-box div.offer {
  display: inline-block;
  width: 50%;
  max-width: 110px;
  position: absolute;
  top: 15px;
  left: -5px;
  z-index: 50;
  padding: 5px;
  background-color: #31c6d6;
  color: white;
  font-weight: 400;
  font-size: 13px;
  border-radius: 5px;
}

.car-box .animated {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.car-box .pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.car-box .car-box__title {
  text-align: center;
  margin: 10px 0;
}

.car-box .car-box__title h1, .car-box .car-box__title h2, .car-box .car-box__title h3, .car-box .car-box__title h4, .car-box .car-box__title h5, .car-box .car-box__title h6, .car-box .car-box__title span, .car-box .car-box__title p {
  color: #31c6d6;
  line-height: 2;
  font-size: 18px;
  font-weight: bold;
}

.car-box div.right-left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
  width: 100%;
  max-width: 300px;
}

.car-box div.right-left div span {
  font-size: 13px;
  color: black;
}

.car-box div.right-left div:first-child {
  text-align: left;
}

.car-box div.right-left div:last-child {
  text-align: right;
  color: #ea6a7c;
}

.car-box div.right-left div span.del {
  text-decoration: line-through;
  color: gray;
}

.car-box div.right-left div .daily {
  font-size: 10px;
  font-weight: normal;
  color: #fff;
  background-color: #ea6a7c;
  padding: 2px 5px;
  border-radius: 15px;
}

.car-box .car-box__text {
  padding: 0 5px;
  text-align: center;
}

.car-box .car-box__text div.car-box__text__model span {
  color: gray !important;
  font-size: 14px;
}

.car-box .car-box__text .car-box__text__equips ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 260px;
  margin: 10px 0;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.car-box .car-box__text .car-box__text__equips ul li {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: gray;
}

.car-box .car-box__text .car-box__text__equips ul li span {
  font-size: .8em;
  color: #31c6d6;
  font-weight: bold;
  margin-left: 5px;
}

.car-box .car-box__text .car-box__text__detail span {
  text-align: center;
  color: #ea6a7c;
  font-size: 14px;
}

.car-box .car-box__text p, .car-box .car-box__text span {
  font-size: 16px;
  color: gray;
}

.car-box .car-box__text .car-box__text__btn {
  width: 100%;
}

.car-box [class*="-btn"] {
  margin-bottom: 20px;
}

.car-box [class*="-btn"]:hover, .car-box [class*="-btn"]:focus {
  -webkit-box-shadow: 0 0 40px 40px white inset;
          box-shadow: 0 0 40px 40px white inset;
}

.car-box .main-btn.gray-btn {
  background-color: white;
}

.car-box .main-btn.gray-btn:hover, .car-box .main-btn.gray-btn:focus {
  -webkit-box-shadow: 0 0 40px 40px #31c6d6 inset;
          box-shadow: 0 0 40px 40px #31c6d6 inset;
}

@media (min-width: 578px) and (max-width: 991px) {
  .car-box div.right-left span {
    display: inline-block;
    font-size: 12px;
  }
  .car-box .car-box__text .car-box__text__detail span {
    font-size: 13px;
  }
  .car-box .car-box__text p, .car-box .car-box__text span {
    font-size: 12px;
  }
}

.new-car-list {
  text-align: center;
}

.new-car-list .new-offer {
  background-color: #31c6d6;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 30px;
}

.new-car-list .new-offer div {
  position: absolute;
  width: 100px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.new-car-list .new-car-container > .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.new-car-list .new-car-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.new-car-list .new-car-box > div {
  padding: 5px !important;
}

.new-car-list .new-car-box .car-box__img {
  position: relative;
  padding-top: 20px;
}

.new-car-list .new-car-box .car-box__img img {
  width: 100%;
  max-width: 300px;
}

.new-car-list .new-car-box .car-box__equips ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 260px;
  margin: 10px 0;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.new-car-list .new-car-box .car-box__equips ul li {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: gray;
}

.new-car-list .new-car-box .car-box__equips ul li span {
  font-size: .8em;
  color: #31c6d6;
  font-weight: bold;
  margin-left: 5px;
}

.new-car-list .new-car-box .car-box__text {
  text-align: center;
  padding: 0;
}

.new-car-list .new-car-box .car-box__text div.car-box__text__model span {
  font-size: 14px;
}

.new-car-list .col-xl-12:nth-of-type(2n+1) .new-car-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.new-car-list .col-xl-12:nth-of-type(2n+1) .new-car-box .new-offer {
  left: unset;
  right: 0px;
}

.new-car-list .col-xl-12:nth-of-type(2n+1) .new-car-box .new-offer div {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.new-car-list .col-xl-12:nth-of-type(2n) .new-car-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.new-car-list .col-xl-12:nth-of-type(2n) .new-car-box .new-offer {
  left: 0px;
}

.new-car-list .col-xl-12:nth-of-type(2n) .new-car-box .new-offer div {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.new-car-list .col-xl-6 .new-car-box .new-offer {
  left: unset;
  right: 0px;
}

.new-car-list .col-xl-6 .new-car-box .new-offer div {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.new-car-list .button__container div {
  padding: 5px 10px !important;
  font-size: 14px;
}

.new-car-list .button__container div a[class*="-btn"] {
  width: 100%;
  margin: 0;
}

@media only screen and (max-width: 1200px) {
  .new-car-list .col-xl-6 .new-car-box .col-12.col-xl-5:not(.car-box__content), .new-car-list .col-12.col-xl-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .new-car-list .new-car-box .car-box__img {
    padding-top: 0;
    display: inline-block;
    height: 100%;
  }
  .new-car-list .new-car-box .car-box__equips {
    display: inline-block;
  }
  .new-car-list .new-car-box .car-box__equips ul {
    margin: 0;
    display: block;
  }
  .new-car-list .new-car-box .car-box__equips ul li {
    display: block;
  }
  .new-car-list .new-car-box .car-box__equips ul li span {
    display: block;
    margin: 0 !important;
  }
  .new-car-list .new-car-box .car-box__star {
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .new-car-list .col-xl-12:nth-of-type(2n+1) .new-car-box .new-offer, .new-car-list .col-xl-12:nth-of-type(2n) .new-car-box .new-offer, .new-car-list .col-xl-6 .new-car-box .new-offer {
    right: unset;
    left: 0;
  }
  .new-car-list .col-xl-12:nth-of-type(2n+1) .new-car-box .new-offer div, .new-car-list .col-xl-12:nth-of-type(2n) .new-car-box .new-offer div, .new-car-list .col-xl-6 .new-car-box .new-offer div {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@media only screen and (min-width: 1200px) {
  .col-xl-6 .car-box.new-car-box div.right-left div span {
    font-size: 11.5px;
  }
  .col-xl-6 .car-box.new-car-box .daily {
    font-size: 9px;
  }
  .col-xl-6 .car-box.new-car-box .car-box__text__detail span {
    font-size: 12px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Helvetica Neue, Helvetica,Arial,Verdana,sans-serif;
}

body {
  background: #e9f0f8;
}

a, a:hover {
  text-decoration: none;
  color: black;
}

header {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .brand-logo a {
  display: inline-block;
  height: 50px;
}

header .brand-logo a img {
  height: 50px;
}

header .user-login .btn {
  padding: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

header .user-login .btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

header .user-login .dropdown .dropdown-menu, header .user-login .dropdown .dropdown-menu.show {
  top: 60px !important;
  left: unset !important;
  right: 0 !important;
  -webkit-transform: unset !important;
          transform: unset !important;
}

aside {
  display: inline-block;
  padding: 20px;
}

aside .aside__container {
  float: left;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

aside ul li {
  list-style: none;
  margin: 10px 0;
  text-align: center;
}

aside ul li a {
  color: #100029;
  text-align: center;
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
}

aside ul li a:hover {
  background-color: #d1dfe4;
  color: #100029;
}

aside ul li a i {
  display: inline-block;
  font-size: 30px;
  width: 30px;
  height: 30px;
  margin: 5px;
}

aside ul li.active a {
  color: white;
  background-color: #100029;
}

main {
  display: inline-block;
  width: 100%;
  padding: 0 20px 20px 0;
  overflow: hidden;
}

main > .container-fluid {
  padding: 20px;
  border-radius: 30px;
  background-color: white;
  width: 100%;
  height: 100%;
}

main section {
  padding: 20px;
  margin-bottom: 20px;
}

main section.menu .container-fluid > .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main section.menu canvas {
  margin: 20px auto;
  width: 100%;
  height: 100%;
}

main section.menu .menu-box {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 30px;
  height: 100%;
}

main section.menu .menu-box .menu-box__icon {
  text-align: center;
  margin-bottom: 10px;
}

main section.menu .menu-box .menu-box__icon i {
  font-size: 50px;
  color: #31c6d6;
}

main section.menu .menu-box .menu-box__title span, main section.menu .menu-box h1, main section.menu .menu-box h2, main section.menu .menu-box h3, main section.menu .menu-box h4, main section.menu .menu-box h5, main section.menu .menu-box h6, main section.menu .menu-box .menu-box__title {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  line-height: 2;
}

main section.menu .menu-box .menu-box__text span, main section.menu .menu-box h1, main section.menu .menu-box h2, main section.menu .menu-box h3, main section.menu .menu-box h4, main section.menu .menu-box h5, main section.menu .menu-box h6, main section.menu .menu-box .menu-box__text {
  text-align: justify;
  font-size: 15px;
  color: #4e4e4e;
}

@media only screen and (max-width: 991px) {
  canvas {
    display: none !important;
  }
}

@media only screen and (max-width: 548px) {
  aside ul li a {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.social-login i {
  font-size: 30px;
}

.card {
  width: 350px;
  margin: 3em auto;
  border-radius: 30px;
  background-color: #ffff;
  padding: 1.8rem;
  -webkit-box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
}

.title, .subtitle {
  text-align: center;
  font-weight: bold;
  margin: 0;
  font-size: 18px;
}

.subtitle {
  font-size: 15px;
  margin-top: 10px;
}

.btn-text {
  margin: 0;
}

.social-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin: 10px 0;
}

.social-login button:focus, .social-login button:hover {
  outline: none;
}

.google-btn {
  background: #e9f0f8;
  border: solid 2px #e9f0f8;
  border-radius: 10px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fb-btn {
  background: #e9f0f8;
  border: none;
  border-radius: 10px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.or {
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #100029;
  line-height: 0.1em;
  margin: 25px 0;
}

.or span {
  background: #fff;
  padding: 0 10px;
}

.email-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.email-login label {
  color: #100029;
  font-size: 16px;
}

input {
  outline: none;
  border-radius: 20px;
  border: 2px solid #100029;
}

input[type="text"],
input[type="password"] {
  padding: 15px 20px;
  margin-top: 8px;
  margin-bottom: 15px;
  border: 2px solid #ccc;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-color: #100029;
}

.cta-btn {
  background-color: #100029;
  color: white;
  padding: 18px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 20px;
  border: none !important;
  outline: none;
  font-weight: bold;
}

.cta-btn:focus, .cta-btn:hover {
  border: none !important;
  outline: none;
  background-color: #e9f0f8;
  color: #100029;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.forget-pass {
  text-align: center;
  display: block;
}

@media only screen and (max-width: 400px) {
  .card {
    width: 300px;
    padding: 20px;
  }
}

.table tr {
  text-align: center;
  width: 100%;
}

.table tr th, .table tr td {
  padding: 8px;
  font-size: 14px;
  vertical-align: middle;
}

.table tr th .badge, .table tr td .badge {
  padding: 5px;
  display: inline-block;
  margin: 5px 0;
}

.table tr th .badge i, .table tr td .badge i {
  font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
  background-color: #f7f7f7 !important;
}

.form-group .control-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}

.form-group > .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}

.form-group > .row select {
  max-width: 32%;
}

.main-btn.gray-btn {
  background-color: #ececec !important;
}
.hidden {
  display: none !important;
}
/*# sourceMappingURL=admin-panel.css.map */
