.details-control {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
}
.details-control__sorting {
    margin: 0px 55px;
    margin-top: 60px;
    position: relative;
}
.details-control__filter{
    position: absolute;
    top: 120px;
    width: 100%;
}

.details-control__content {
}

.details-control__checkbox {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}
.details-control__checkbox.checkbox__label::after{
    margin-left: auto;
}
.details-control__bar {
    background: var(--black-blue);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.details-control__bar-control {
    font-size: 14px;
    font-family: AvenirRoman, sans-serif;
    /* line-height: 28px; */
    color: var(--gray);
    outline: none;
    cursor: pointer;
    background: transparent;
    border: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;

}
.details-control__bar-control svg path {
    fill: #959599;
}
.details-control__bar-control_active {
    color: var(--white);
}
.details-control__bar-control_active svg path {
    fill: #fff;
}
.details-control__icon-button {
    border: 0;
    outline: none;
    cursor: pointer;
    transition: .3s;
    background: transparent;
    display: none;
    z-index: 1;
}

.details-control__buttons_zoom {
    padding: 15px;
    align-self: flex-end;
    justify-self: flex-start;
    position: absolute;
    top: 0;
}
.details-control__inner {
    min-height: 700px;
    margin-bottom: 100px;
}
.details-control__item-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.details-control__item {
    overflow: hidden;
    position: relative;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.details-control__item_h320 {
    height: 320px;
}
.details-control__item_h220 {
    height: 220px;
}
.details-control__item::before {
    transition: .3s;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(44.58deg,
    var(--gradient-dark-blue) 0%,
    var(--gradient-blue) 45.1%,
    var(--gradient-light-blue)) 100%;
    opacity: 0;
}

.details-control__item:hover:before {
    opacity: 0.65;
}

.details-control__item:hover .details-control-button {
    display: inline-block;
}
.details-control__item:hover .details-control__icon-button {
    display: inline-block;
}

.details-control-background {
    transition: .3s;
    position: relative;
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.details-control-background-container {
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -1;
    background: var(--light-gray);
}
.details-control__item:hover .details-control-button-play {
    display: none;
}
.details-control__item:hover .details-control-button-play-background {
    display: none;
}
.details-control-button-play-background {
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 25px;
    border-radius: 50%;
    padding: 20px 20px 25px 25px;
    background: rgba(255, 255, 255, 0.409);
}
.details-control-button-play {
    width: 40px;
    height: 40px;
}

.details-control-button {
    transition: .3s;
    z-index: 2;
    padding: 8px 13px;
    margin: 15px auto 30px auto;
    display: none;
}

@media screen and (max-width: 1480px) {
    .details-control {
        grid-template-columns: 1fr 2.5fr;
    }
    .details-control__bar {
        gap: 25px;
    }
    .details-control__bar-control {
        font-size: 13px;
    }

    .details-control__sorting_title {
        font-size: 15px;
    }

    .details-control__sorting {
        margin-right: 20px;
    }
}
.displayNone {
    display: none !important;
}
