.map-marker {
    width: 25px;
    height: 40px;
    background-size: cover;
    background-image: url('/wp-content/themes/oasis_group/images/map_marker.svg');
    cursor: pointer;
    margin-left: -12.5px;
    margin-top: -40px;
}

.dealer-map {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.dealer-ya-map {
    flex-grow: 1;
    height: 300px;
}

.dealers-panel {
    flex-shrink: 0;
    position: relative;
}

.dealers-list {
    padding: 10px;
    list-style-type: none;
}

.dealers-list-item {
    margin-bottom: 12px;
    cursor: pointer;
}

.dealers-list-item__name {
    font-weight: 400;
    font-size: 18px;
    leading-trim: none;
    line-height: 22px;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.dealers-list-item:hover .dealers-list-item__name {
    text-decoration: underline;
}

.dealers-list-item__worktime {
    color: #999999;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
}

.dealers-info {
    padding: 15px;
    z-index: 100000;
    width: 100vw;
}

.dealers-info-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.dealers-info-overlay_enable {
    display: block;
}

.dealers-info {
    background-color: #fff;
    position: fixed;
    bottom: 0;
}

.dealers-info__close {
    position: absolute;
    top: 0;
    right: 0;
      width: 40px;
      height: 40px;
      border: none;
      background: transparent;
      border-radius: 50%;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      margin-left: 16px;
}

.dealers-info__close:hover {
  background-color: #f5f5f5;
}

.dealers-info__close:active {
  transform: scale(0.95);
}

.dealers-info__close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.dealers-info__close-icon::before,
.dealers-info__close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222222;
  border-radius: 1px;
}

.dealers-info__close-icon::before {
  transform: rotate(45deg);
}

.dealers-info__close-icon::after {
  transform: rotate(-45deg);
}

.dealers-info__close:hover .dealers-info__close-icon::before,
.dealers-info__close:hover .dealers-info__close-icon::after {
  background-color: #333;
}

.dealers-info__name {
    color: #DAA520;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 25px;
}

.dealers-info__address {
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
}

.dealers-info__phones {
    margin-bottom: 15px;
}

.dealers-info__phones::before {
    content: ' ';
      display: inline-block;
      width: 11px;
      height: 11px;
      background-image: url('/wp-content/themes/oasis_group/images/map_phone.svg');
      background-size: cover;
      margin-right: 6px;
}

.dealers-info__phones a {
    color: #707070;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.dealers-info__emails {
    margin-bottom: 15px;
}

.dealers-info__emails_disable {
    display: none;
}

.dealers-info__emails::before {
    content: ' ';
      display: inline-block;
      width: 13px;
      height: 11px;
      background-image: url('/wp-content/themes/oasis_group/images/map_calendar.svg');
      background-size: cover;
      margin-right: 6px;
}

.dealers-info__emails a {
    color: #707070;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.dealers-info__site {
    margin-bottom: 15px;
}

.dealers-info__site a {
    color: #707070;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.dealers-info__worktimes {
    margin-bottom: 20px;
}

.dealers-info__worktimes-row {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.dealer-map .dealers-panel a.dealers-info__build-route {
    text-decoration: underline;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 22px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #000000;
}

.dealer-map .dealers-panel a.dealers-info__build-route:hover {
    text-decoration: none;
}

.dealers-info__build-route:hover {
    text-decoration: none;
}

@media (min-width:  768px) {
    .dealers-list {
        display: flex;
        flex-wrap: wrap;
    }

    .dealers-list-item {
        width: 50%;

    }

    .dealers-list-item__name {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .dealers-info__groups {
        display: flex;
    }

    .dealers-info__group {
        width: 50%;
    }

    .dealer-ya-map {
        height: 675px;
    }
}

@media (min-width: 1024px) {
    .dealers-list-item {
        width: 100%;
    }

    .dealers-list-item:last-child {
        margin-bottom: 0;
    }

    .dealers-list {
        flex-direction: column;
    }

    .dealer-map {
        flex-direction: row;
    }

    .dealer-ya-map {
        flex-grow: 1;
    }

    .dealers-panel {
        width: 400px;
        flex-shrink: 0;
        position: relative;
    }

    .dealers-info-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #fff;
    }
    .dealers-info {
        background-color: #fff;
        position: relative;
        padding: 15px;
        width: 100%;
    }

    .dealers-info__groups {
        flex-direction: column;
    }

    .dealers-info__group {
        width: 100%;
    }

    .dealers-list-item__name {
        font-size: 20px;
    }

    .dealers-list_scroll {
        overflow-y: scroll;
        flex-wrap: nowrap;
        max-height: 680px;
    }
}

a.text-underline {
    text-decoration: underline;
}

.our-address {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.our-address p {
    margin: 0 0 4px;
    color: #242424;
}

.our-address__item {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .our-address {
        flex-direction: row;
    }

    .our-address__item {
        width: 50%;
        padding: 3px;
    }

    .our-address__social-networks {
        text-align: center;
    }
    .our-address__social-networks-container {
        width: fit-content;
    }
}

@media (min-width: 1024px) {
    .our-address {
        justify-content: space-between;
    }
    .our-address__item {
        width: unset;
        max-width: 260px;
    }
}
