

/* Start:/smi/photo-and-video/style.css?17774569805462*/

.photo-and-video-title {
    padding-bottom: 90px;
}

.photo-and-video-decor {
    min-height: 95px;
    bottom: 8px;
}

#photo-and-video {

}

.photo-and-video {
    padding: 0px 0 100px;
}
.photo-and-video__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

#photoVideoExhibition {
    width: 220px;
}

#photoVideoCenter {
    width: 220px;
}
.photo-and-video__select {
    min-width: 72px;
    height: 32px;
    padding: 0 26px 0 12px;
    border: 1px solid #ef4f4f;
    border-radius: 8px;
    background: transparent;
    color: #16171d;
    line-height: 1;
    cursor: pointer;
    font-family: "Montserrat";
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 90%;
    letter-spacing: 0%;

}
.photo-and-video__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.photo-and-video__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
    transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.photo-and-video__item:hover {
    border-color: #ef4f4f;
    background: #fff8f6;
    box-shadow: 0 10px 24px rgba(239, 79, 79, 0.08);
}
.photo-and-video__item.is-open {
    border-color: #ef4f4f;
    background: #fff8f6;
}
.photo-and-video__item-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    gap: 16px;
    padding: 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}
.photo-and-video__item-toggle:focus-visible {
    outline: 2px solid #ef4f4f;
    outline-offset: -2px;
}
.photo-and-video__item-content {
    width: 100%;
    max-height: 0;
    padding: 0 24px;
    opacity: 0;
    overflow: hidden;
    transition: max-height .24s ease, opacity .18s ease, padding-bottom .24s ease;
}
.photo-and-video__item.is-open .photo-and-video__item-content {
    padding-bottom: 20px;
    opacity: 1;
}
.photo-and-video__item-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}
.photo-and-video__item-title {
    color: #16171d;
    font-family: "Druk Wide Cyr";
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}
.photo-and-video__item-arrow {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid #ef4f4f;
    border-radius: 8px;
    transition: transform .24s ease, background-color .24s ease;
}
.photo-and-video__item-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 32%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ef4f4f;
    border-right: 1px solid #ef4f4f;
    transform: translate(-50%, -50%) rotate(45deg);
}
.photo-and-video__item.is-open .photo-and-video__item-arrow {
    background: #ef4f4f;
    transform: rotate(90deg);
}
.photo-and-video__item.is-open .photo-and-video__item-arrow::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
}
.photo-and-video__item-content .photo-and-video__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid #ef4f4f;
    border-radius: 10px;
    background: #ffffff;
    color: #ef4f4f;
    text-decoration: none;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.photo-and-video__item-content .photo-and-video__action:hover,
.photo-and-video__item-content .photo-and-video__action:focus-visible {
    background: #ef4f4f;
    color: #ffffff;
    transform: translateY(-1px);
}
.photo-and-video__item-content .photo-and-video__action--video {
    border-color: #16171d;
    color: #16171d;
}
.photo-and-video__item-content .photo-and-video__action--video:hover,
.photo-and-video__item-content .photo-and-video__action--video:focus-visible {
    background: #16171d;
    border-color: #16171d;
    color: #ffffff;
}
.photo-and-video__empty {
    display: none;
    margin: 18px 0 0;
    color: #6a6a6a;
    font-size: 14px;
}
.photo-and-video__more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
        font-family: "Montserrat";
    margin-top: 24px;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    background: transparent;
    color: #1f1f1f;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}
.photo-and-video__more:hover {
    background: #ececec;
}
@media (max-width: 700px) {
    .afisha__title-decor {
        font-size: 8px;
    }
    .photo-and-video {
        padding: 0px 20px 80px;
    }
    .photo-and-video__item-toggle {
        padding: 18px;
    }
    .photo-and-video__item-content {
        padding: 0 18px;
    }
    .photo-and-video__item.is-open .photo-and-video__item-content {
        padding-bottom: 18px;
    }
    .photo-and-video__item-title {
        font-size: 12px;
    }

    .photo-and-video-decor {
        min-height: 62px;
        padding: 5px;
        bottom: 28px;
    }
}

/* End */
/* /smi/photo-and-video/style.css?17774569805462 */
