.modal, .modal_volume {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal.modal_active, .modal_volume.modal_active {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

.modal__content {
    position: relative;
    margin: 36px;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

.modal_volume__content{
    background-color: #fff;
    padding: 48px;
    border-radius: 10px;
}

.modal__slide img {
    border-radius: 32px;
}

.modal__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -40px;
}


.modal__dots button {
    font-size: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eee;

}

.modal__dots li.slick-active button {
    background: #9867FF;
}

.volume__button {
    width: 50px;
	height: 50px;
	position: fixed;
	background: #9867FF;
	padding: 16px;
	justify-content: center;
	left: 0;
	bottom: 50px;
	z-index: 10000;
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;
	cursor: pointer;
}
.volume__button img {
    width: 18px;
    height: 18px;
}