#b-full-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0; top: 0;
    z-index: 177;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: #00000080;
}
#b-full-screen__border {
    position: relative;
    width: min-content;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    padding: 0 65px 34px;
}
.b-full-screen__wrapper {
    max-height: 100%;
    overflow: auto;
}
.b-full-screen__button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: center no-repeat;
    cursor: pointer;
}
#b-full-screen__close {
    right: 0;
    top: 0;
    background-image: url("../img/close.svg");
}
#b-full-screen__prev {
    top: calc( 50% - 25px);
    left: 0;
    background-image: url("../img/left.svg");
}
#b-full-screen__next {
    top: calc( 50% - 25px);
    right: 0;
    background-image: url("../img/right.svg");
}
#b-full-screen__panel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.b-full-screen__btn {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    cursor: pointer;
}
.b-full-screen__btn:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #D8DADC;
    position: absolute;
    left: 6px;
    top: 6px;
}
.b-full-screen__btn.active:after {
    background-color: #00B164;
}

@media (max-width: 1136px) {

    #b-full-screen__img {
        width: 888px;
    }
}

@media (max-width: 1000px) {
    #b-full-screen {
        justify-content: start;
        overflow: auto;
    }
}
