@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-moz-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-o-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-car-equipment {
  margin-bottom: 60px;
}
.c-car-equipment__title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.75em;
  line-height: normal;
  font-weight: normal;
  color: #ff4438;
}
@media (max-width: 767.98px) {
  .c-car-equipment__title {
    font-size: 1.5em;
  }
}
.c-car-equipment__tabs {
  margin-top: 30px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 50px 40px -30px rgba(77, 90, 95, 0.07), 0 2px 25px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  height: 60px;
  transition: 0.5s all;
}
@media (max-width: 767.98px) {
  .c-car-equipment__tabs {
    margin-top: 20px;
    display: block !important;
    width: 100%;
    min-height: 50px;
    height: fit-content;
  }
}
.c-car-equipment__tab {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3333333333%;
  padding: 10px 20px;
  background-color: #f6f9fa;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1.43;
  font-family: "Roboto", sans-serif;
  color: rgba(88, 88, 88, 0.6);
  position: relative;
}
.c-car-equipment__tab.is-active {
  font-weight: bold;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  color: #000;
  border-collapse: collapse;
  border-bottom: hidden;
  background-color: #ffffff;
}
@media (max-width: 767.98px) {
  .c-car-equipment__tab {
    font-size: 0.875em;
    line-height: 1.43;
    justify-content: flex-start;
    width: 100%;
    display: block;
    padding: 10px 15px;
  }
  .c-car-equipment__tab:after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("../../../img/icons/plus-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 15px;
    top: 10px;
  }
  .c-car-equipment__tab.is-active {
    background-color: #ffffff;
  }
  .c-car-equipment__tab.is-active:after {
    background-image: url("../../../img/icons/minus-icon.svg");
  }
}
.c-car-equipment__tab-content {
  height: 0;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 50px 40px -30px rgba(77, 90, 95, 0.07), 0 2px 25px 0 rgba(0, 0, 0, 0.05);
}
.c-car-equipment__tab-content.is-active {
  padding: 25px 60px;
  height: auto;
}
@media (max-width: 767.98px) {
  .c-car-equipment__tab-content.is-active {
    padding: 20px 0 0;
    box-shadow: none;
  }
}
.c-car-equipment__item {
  margin: 10px 0;
  padding: 0 5px;
}
@media (max-width: 767.98px) {
  .c-car-equipment__item {
    width: 100%;
    margin: 5px 0;
    padding-left: 20px;
  }
}
.c-car-equipment__item-title {
  font-family: "Roboto", sans-serif;
  font-size: 0.875em;
  line-height: 1.43;
  color: #4c4c4c;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}
.c-car-equipment__item-title--list:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ff4438;
  position: absolute;
  top: 7px;
  left: 0;
}
@media (max-width: 767.98px) {
  .c-car-equipment__item-title {
    font-size: 0.75em;
    line-height: 1.82;
  }
}
.c-car-equipment__item-image {
  display: inline-block;
  margin-right: 12px;
  background-color: #ff4438;
}
.c-car-equipment__button {
  width: fit-content;
  margin: 25px auto;
  cursor: pointer;
  line-height: 1.43;
}