
.contacts__tabs {
    display: flex;
    margin-bottom: 50px;
    padding-top: 30px;
    border-top: 1px solid #DEDEDE;
    margin-top: 30px;
}
.contacts__text-cred{
    margin-top: 45px;
    font-size: 17px;
    color: #636B83;
    line-height: 25px;
}
.contacts__tab {
    font-size: 18px;
    line-height: 21px;
    color: #636B83;
    margin-right: 40px;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s;
}

.contacts__tab:hover {
    color: #00305C;
}

.contacts__tab::before {
    content: '';
    width: 0;
    height: 1px;
    background-color: #00305C;
    position: absolute;
    bottom: 0;
    transition: all 0.6s;
    left: 50%;
    right: 50%;
    opacity: 0;
}

.contacts__tab:hover::before {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 1;
}

.contacts__tab.active {
    color: #00305C;
}

.contacts__tab.active::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #00305C;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
}

.contacts__tab:last-child {
    margin-right: 0;
}

.contacts__map {
    background-color: #F2F2F2;
    border-radius: 8px;
    height: 510px;
    padding: 30px;
    margin-bottom: 100px;
    position: relative;
}

.contacts__shops {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 415px;
    height: 100%;
    padding: 30px;
    overflow: auto;
    position: relative;
}

.contacts__shops::-webkit-scrollbar {
    width: 5px;
    transition: 0.3s;
}

.contacts__shops::-webkit-scrollbar-thumb {
    width: 5px;
    background: #DCE0E5;
    border-radius: 46px;
}

.contacts__shops-close {
    position: absolute;
    width: 34px;
    height: 34px;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.contacts__shop {
    margin-bottom: 25px;
    padding-left: 34px;
    position: relative;
}

.contacts__shop::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    top: 0;
    left: 0;
    background-image: url('icons/location-store.svg');
}

.contacts__shop:last-child {
    margin-bottom: 0;
}

.contacts__shops-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #00305C;
    margin-bottom: 30px;
}

.contacts__shop-info {
    overflow: hidden;
    max-height: 0;
    transition: padding-top 0.3s;
}

.contacts__shop-info.show {
    max-height: 100%;
    padding-top: 15px;
}

.contacts__shop-address {
    font-size: 16px;
    line-height: 130%;
    color: #00305C;
}

.contacts__shop-phone {
    font-size: 14px;
    line-height: 16px;
    color: #00305C;
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}



.contacts__shop-clock {
    font-size: 14px;
    line-height: 130%;
    color: #00305C;
    padding-left: 26px;
    position: relative;
}

.contacts__shop-more {
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #636B83;
    margin-top: 10px;
    cursor: pointer;
}

.contacts__subtitle {
    margin-bottom: 40px;
}

.contacts__offices {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contacts__office {
    border: 1px solid #DCE0E5;
    border-radius: 8px;
    padding: 20px 120px 20px 20px;
    width: 412px;
}

.contacts__office-city {
    font-size: 18px;
    line-height: 130%;
    color: #00305C;
    padding-left: 32px;
    position: relative;
    margin-bottom: 30px;
}

.contacts__office-city::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    top: 0;
    left: 0;
    background-image: url('icons/location-store.svg');
}

.contacts__office-phone {
    font-size: 14px;
    line-height: 16px;
    color: #636B83;
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.contacts__office-clock {
    font-size: 14px;
    line-height: 16px;
    color: #636B83;
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
}

.contacts__office-address {
    font-size: 14px;
    line-height: 130%;
    color: #636B83;
    padding-left: 26px;
    position: relative;
}


.contacts__shop-phone::before,
.contacts__office-phone::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0;
    background-image: url('icons/phone.svg');
}

.contacts__shop-clock::before,
.contacts__office-clock::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0;
    background-image: url('icons/clock.svg');
}

.contacts__office-address::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0;
    background-image: url('icons/location.svg');
}

.contacts__map .ymap-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (max-width: 1439px) {
    .contacts__office {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .contacts__offices {
        flex-direction: column;
        gap: 20px;
    }

    .contacts__office {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contacts__tabs {
        margin-bottom: 30px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .contacts__tab {
        font-size: 16px;
    }

    .contacts__shops {
        width: 280px;
        padding: 25px 20px;
    }

    .contacts__shops-title {
        margin-bottom: 25px;
        width: 60%;
    }

    .contacts__map {
        padding: 20px;
        margin: 0 -5.5% 50px -5.5%;
    }
}
