

/* Start:/contacts/contacts.css?17494311437910*/
.new-contacts h1 {
    margin-bottom: 15px;
}
.new-contacts .contacts {
    display: none;
}
.new-contacts .contacts.active {
    display: block;
}
.new-contacts .city-change {
    padding: 5px;
    text-align: center;
    font-size: 22px;
    margin: 15px 0;
    cursor: pointer;
    border: 1px #ccc solid;
    transition: 0.15s;
    color: #ee3831;
    border-radius: 5px;
}

.new-contacts .city-change:hover {
    color: #fff;
    background: #ee3831;
    border-color: #ee3831;
}

.new-contacts .city-change.active {
    color: #fff;
    background: #ee3831;
    border-color: #ee3831;
}
@media (max-width: 768px) {
    .new-contacts .city-change {
        margin: 5px 0;
    }
}

/* Стили для блока с праздничным режимом работы */
.holiday-schedule {
    margin: 30px 0;
    transition: all 0.3s ease;
    position: relative;
}

.holiday-schedule-inner {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(238, 56, 49, 0.15);
    border: 2px solid #ee3831;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjUsMzAgTDc1LDMwIE01MCw1IEw1MCw1NSBNNSw1MCBMNTUsNTAiIHN0cm9rZT0iI2ZkZWFlYSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIiBvcGFjaXR5PSIwLjMiLz48L3N2Zz4=');
    background-position: center;
    background-repeat: repeat;
}

.holiday-schedule-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: #ee3831;
    border-radius: 3px 0 0 3px;
}

.holiday-schedule-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px dashed #fdeaea;
}

.holiday-schedule-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #ee3831;
    border-radius: 3px;
}

.holiday-schedule-title i {
    margin-right: 12px;
    color: #ee3831;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.holiday-schedule-title i.rotate-icon {
    transform: rotate(180deg);
}

.holiday-schedule:hover .holiday-schedule-title i {
    transform: rotate(15deg);
}

.holiday-badge {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ee3831;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 0 0 0 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holiday-schedule-content {
    color: #555;
    line-height: 1.6;
    position: relative;
}

.holiday-schedule-text h2 {
    font-size: 20px;
    margin: 20px 0 15px;
    color: #333;
    font-weight: 700;
}

.holiday-schedule-text h3 {
    font-size: 18px;
    margin: 16px 0 12px;
    color: #ee3831;
    font-weight: 600;
}

.holiday-schedule-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.holiday-schedule-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
    list-style-type: none;
}

.holiday-schedule-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.holiday-schedule-text li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #ee3831;
    border-radius: 50%;
}

/* Стили для блоков с режимом работы */
.holiday-block {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.holiday-block.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Стили для содержимого по умолчанию */
.holiday-default-content {
    text-align: center;
    padding: 20px 15px;
    background-color: #fdeaea;
    border-radius: 8px;
    margin-top: 15px;
}

.holiday-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(238, 56, 49, 0.2);
    border: 2px solid #ee3831;
}

.holiday-icon-wrapper i {
    font-size: 40px;
    color: #ee3831;
}

.holiday-default-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.holiday-default-content p {
    color: #555;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.holiday-contact-info {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #ee3831;
}

.holiday-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday-contact-info i {
    color: #ee3831;
    margin-right: 10px;
    font-size: 18px;
}

.holiday-contact-info a {
    color: #ee3831;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.holiday-contact-info a:hover {
    color: #c52c26;
    text-decoration: underline;
}

.schedule-detail-content {
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #fdeaea;
}

.schedule-note {
    border-top: 1px dashed #fdeaea;
    padding-top: 12px;
    margin-top: 20px;
    text-align: right;
}

.schedule-note i {
    color: #ee3831;
    margin-right: 8px;
    font-size: 14px;
}

.schedule-note small {
    color: #6c757d;
    font-size: 13px;
    font-style: italic;
}

/* Дополнительные стили для выделения важной информации */
.holiday-schedule-text strong {
    color: #333;
    font-weight: 700;
}

.holiday-schedule-text .text-primary {
    color: #ee3831 !important;
}

.holiday-schedule-text .text-muted {
    color: #6c757d !important;
}

.holiday-schedule-text .mr-2 {
    margin-right: 0.5rem !important;
}

.holiday-schedule-text .mt-3 {
    margin-top: 1rem !important;
}

.holiday-schedule-text .d-flex {
    display: flex !important;
}

.holiday-schedule-text .align-items-center {
    align-items: center !important;
}

/* Адаптивность */
@media (max-width: 992px) {
    .holiday-schedule-inner {
        padding: 20px;
    }

    .holiday-schedule-title {
        font-size: 20px;
    }

    .holiday-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 768px) {
    .holiday-schedule-inner {
        padding: 18px;
    }

    .holiday-schedule-title {
        font-size: 18px;
    }

    .holiday-schedule-title i {
        font-size: 24px;
    }

    .holiday-default-content {
        padding: 15px 10px;
    }

    .holiday-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .holiday-icon-wrapper i {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .holiday-schedule {
        margin: 20px 0;
    }

    .holiday-schedule-inner {
        padding: 15px;
    }

    .holiday-schedule-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .holiday-schedule-text h2 {
        font-size: 18px;
    }

    .holiday-schedule-text h3 {
        font-size: 16px;
    }

    .holiday-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .holiday-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .holiday-icon-wrapper i {
        font-size: 30px;
    }

    .holiday-default-content h3 {
        font-size: 18px;
    }

    .holiday-contact-info {
        padding: 10px;
    }
}

/* End */


/* Start:/local/templates/mk-27-new/components/bitrix/news.list/my_contacts/style.css?17494313074380*/
.contacts-item {
    padding: 15px;
    border-bottom: 1px #ccc solid;
}
.contacts-item:last-of-type {
    border-bottom: none;
}
.contacts-item .title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
}

.contacts-item .address {
    padding-bottom: 10px;
}
.contacts-item .address:before {
    content: url(/local/templates/mk-27-new/assets/images/contacts-location.svg);
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
}
.contacts-item .phone:before {
    content: url(/local/templates/mk-27-new/assets/images/contacts-phone.svg);
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
}

.contacts-item .v-line {
    border-right: 1px #ccc solid;
    margin: 0 10px 0 18px;
}
.contacts-item .v-line:last-of-type {
    display: none;
}

.contacts-item .schedule {
}
.contacts-item .schedule img {
    /*max-height: 18px;*/
    margin-right: 3px;
    padding: 1px;
}

.contacts-item .phones {
    margin-top: 5px;
}

.contacts-item .phones .phone {
    width: 160px;
    display: inline-block;
    margin-top: 5px;
}

.contacts-item .email {
    padding-top: 10px;
}

.contacts-item .email img {
    max-width: 18px;
    margin-right: 3px;
    padding: 1px;
}

.contacts-item .text {
    padding: 10px 0 0;
}
.scheduler-img img {
    max-height: 18px;
}
.scheduler-img {
    float: left;
    margin-right: 3px;
}

@media (max-width: 576px) {
    .contacts-item .v-line {
        display: none;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-inner {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    cursor: pointer;
    margin-bottom: 15px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    flex: 1;
}

.address-block,
.schedule-block,
.phones-block,
.email-block {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.phones-block {
    flex-direction: column;
}

.address-block i,
.schedule-block i,
.phone-item i,
.email-block i {
    color: #ee3831;
    font-size: 18px;
    flex-shrink: 0;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

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

.phone-item.hidden-phone {
    opacity: 0;
    height: 0;
    margin: 0;
}

.show-more-phones {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ee3831;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.show-more-phones:hover {
    opacity: 0.8;
}

.show-more-phones i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.phones-block.show-all .show-more-phones i {
    transform: rotate(45deg);
}

.show-more-phones .hide-text {
    display: none;
}

.phones-block.show-all .show-more-phones .show-text {
    display: none;
}

.phones-block.show-all .show-more-phones .hide-text {
    display: inline;
}

.phones-block.show-all .hidden-phone {
    opacity: 1;
    height: auto;
    margin-bottom: 5px;
}

.phone-item a,
.email-block a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-item a:hover,
.email-block a:hover {
    color: #ee3831;
}

.card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.detail-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .contacts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .card-inner {
        padding: 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .show-more-phones {
        font-size: 13px;
    }
}

/* End */


/* Start:/local/templates/mk-27-new/components/bitrix/news.list/my_team/style.css?17494313073341*/
.team-section {
    padding: 40px 0;
}

.team-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Akrobat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.card-inner {
    padding: 20px;
    text-align: center;
}

.image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #ee3831;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.no-photo i {
    font-size: 80px;
    color: #ddd;
}

.member-name {
    font-family: 'Akrobat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 15px;
    color: #333;
}

.member-name span {
    display: block;
}

.position {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    margin-bottom: 20px;
    font-size: 18px;
}

.position i {
    color: #ee3831;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.phone-button {
    background: #ee3831;
    color: #fff;
}

.phone-button:hover {
    background: #d62f29;
    color: #fff;
}

.email-button {
    background: #f5f5f5;
    color: #333;
}

.email-button:hover {
    background: #ee3831;
    color: #fff;
}

.contact-button i {
    font-size: 18px;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .image-wrapper {
        width: 160px;
        height: 160px;
    }

    .member-name {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 30px 0;
    }

    .team-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .image-wrapper {
        width: 140px;
        height: 140px;
    }

    .member-name {
        font-size: 24px;
    }

    .position {
        font-size: 16px;
    }

    .contact-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .team-title {
        font-size: 32px;
    }

    .contact-button span {
        font-size: 14px;
    }
}

/* End */
/* /contacts/contacts.css?17494311437910 */
/* /local/templates/mk-27-new/components/bitrix/news.list/my_contacts/style.css?17494313074380 */
/* /local/templates/mk-27-new/components/bitrix/news.list/my_team/style.css?17494313073341 */
