.information-contact h1 {
    margin: 0;
}
.shop_head {
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #ED1D24;
    color: #ED1D24;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    padding: 15px 20px;
    margin: 20px 0 0;
    justify-content: space-between;
    gap: 20px;
    border-radius: 5px;
}
.shop_head.active {
    margin: 20px 0;
}
.shop_name {
    max-width: 50%;
    width: 100%;
}
.shop_phone, .shop_schedule {
    max-width: 20%;
    width: 100%;
}
.shop_head .shop_map {
    display: flex;
    align-items: center;
}

.shop_head .shop_map svg {
    width: 25px;
    height: 25px;
    transition: transform .4s;
}
.shop_head.active .shop_map svg {
    transform: rotateX(180deg);
}
.shop_map {
    max-width: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 35px;
}
.shop_map .main_btn:hover {
    border: none;
}

.shop_item {
    display: flex;
    align-items: center;
    background: #EDEDED;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    padding: 45px 20px;
    gap: 20px;
}
.shop_item:not(:last-child) {
    margin-bottom: 10px;
}
.shop_map .main_btn {
    max-width: 130px;
    width: 100%;
    font-size: 14px;
    line-height: 32px;
    padding: 0;
}
.shop_map .main_btn:hover {
    line-height: 35px;
}
.shop_phone a {
    color: #000000;
}

.information-contact .contacts {
    min-height: 42rem;
    position: relative;
    margin: 80px 0 0;
}
.branded_salons-title {
    font-size: 17px;
    font-weight: 700;
    color: #ED1D24;
}
.branded_salons {
    text-align: right;
}

.shop_head :is(.shop_phone, .shop_schedule) {
    display: none;
}
.shop_head * {
    max-width: max-content!important;
}

@media (max-width: 768px) {
    .branded_salons a {
        white-space: nowrap;
    }
    .shop_item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .shop_phone, .shop_schedule, .shop_name {
        max-width: 100%;
    }
    .shop_item .shop_map {
        max-width: 130px;
    }
    .shop_id_js:not(.active) .shop_item .shop_map {
        display: none;
    }
}

@media (max-width: 500px) {
    .information-contact h1 {
        margin: 0 0 10px;
    }
    .information-contact .contacts {
        margin: 40px 0 0;
    }
}