.details-modal {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 14px 28px, rgba(0, 0, 0, 0.22) 0 10px 10px;
    background: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 100vh;
}
.details-modal__top {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 50px;
}
.details-modal__button {
    border-radius: 5px 0 0 0;
    outline: none;
    border: 0;
    background: none;
    cursor: pointer;
}
.details-modal__button_blue {
    border-radius: 0 5px 0 0;
    background: var(--light-blue);
    padding-left: 25px;
    color: white;
    text-align: left;
}
.details-modal__close-button {
    padding-bottom: 0;
}
.details-modal__content {
    padding: 0 50px 50px 50px;
}
.details-modal__checkbox {
    width: 100%;
    align-items: center;
}
.details-modal__checkbox.checkbox__label::after{
    margin-top: 0;
    margin-left: auto;
}
.details-modal__quality {

}
.details-modal__quality-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.details-modal__quality-item {

}

.details-modal__picture-container {
    width: 100%;
    min-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.details-modal__picture-container img {
    height: 700px;
    width: 1100px;
    object-fit: contain;
}
.details-modal__picture {

}