@font-face {
  font-family: "roboto-bold";
  src: url(/public/fonts/Roboto/Roboto-medium.ttf) format("opentype"); }

@font-face {
  font-family: "roboto";
  src: url(/public/fonts/Roboto/Roboto-Regular.ttf) format("opentype"); }

@font-face {
  font-family: "roboto-bold";
  src: url(/public/fonts/Roboto/Roboto-medium.ttf) format("opentype"); }

@font-face {
  font-family: "roboto";
  src: url(/public/fonts/Roboto/Roboto-Regular.ttf) format("opentype"); }

.car-item {
  display: flex;
  box-shadow: 1px 1px 7px 0 rgba(2, 28, 78, 0.2);
  background-color: #fff;
  margin-bottom: 20px;
  transition: 0.3s;
  border-radius: 30px; }
  .car-item:hover {
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate(0, -4px);
    transform: translate(0, -4px); }
  .car-item_is-arabic .car-item__section-item-name {
    margin-right: 0;
    margin-left: 10px; }
    .car-item_is-arabic .car-item__section-item-name:before {
      margin-right: 0;
      margin-left: 10px; }

.car-item__image-container {
  display: flex;
  align-items: center;
  width: 250px;
  padding: 20px;
  flex-shrink: 0; }

.car-item__image {
  width: 100%;
  height: auto; }

.car-item__container {
  display: flex; }
  @media only screen and (max-width: 600px) {
    .car-item__container {
      flex-direction: column; } }

.car-item__section-content {
  display: flex;
  flex-wrap: wrap; }

.car-item__section-item {
  display: flex;
  margin-bottom: 5px;
  width: 50%;
  font-size: 14px; }
  .car-item__section-item_is-link {
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 15px;
    color: #9b9ea0;
    cursor: pointer; }
  .car-item__section-item_is-price {
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    color: #00438E;
    margin-bottom: 10px; }
  .car-item__section-item_is-button {
    width: 100%;
    margin-bottom: 20px; }
  .car-item__section-item_is-terms {
    width: 100%; }
  @media only screen and (max-width: 600px) {
    .car-item__section-item {
      width: 100%; }
      .car-item__section-item_is-terms {
        text-align: center; } }

.car-item__section-item-name {
  display: flex;
  align-items: center;
  margin-right: 10px; }
  .car-item__section-item-name:before {
    content: '';
    background-color: #002f5e;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    margin-right: 10px; }
  .car-item__section-item-name:after {
    content: ':';
    margin: 0 2px; }

.car-item__section-container {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(221, 221, 221, 0.7);
  padding: 20px; }
  .car-item__section-container_is-big {
    width: 100%; }
  .car-item__section-container:last-child {
    align-items: center;
    border-right: 0;
    flex-shrink: 0; }

.car-item__section-title {
  color: #00438E;
  font-weight: 500;
  font-size: 18px; }
