/* *** MASONRY GAL *** */

.product-m-gallery {
    max-width: 1920px;
    width: 100%;
    height: auto;
    margin: 100px auto;
    position: relative;
}

.product-m-gallery__container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.product-m-gallery__title {
    width: 50%;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 144%;
    color: #000;
    margin: 0 0;
    text-align: center;

}

.product-m-gallery__sort-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
}

.product-m-gallery__sort-button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 144%;
    color: #acaaaa;
    width: -webkit-fill-available;
    display: block;
    background-color: #fff;
    border-width: 0;
    border-bottom: 3px solid #e6e6e6;
    padding-bottom: 10px;
}

.m-gallery-sort-button__active {
    color: #000;
    border-bottom: 3px solid #e63c32;
}

.product-m-gallery__photos {
    width: 100%;
}

.scroll-gallery{
    width: 100%;
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 2%;
}

.m-gallery__photo {
    width: 22%;
    height: 300px;
    overflow: hidden;
    box-shadow: 5px 5px 20px #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
}

.m-gallery__photo img {
    max-width: 100%;
    max-height: 100%; 
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.m-gallery__photo video {
    max-width: 100%;
    max-height: 100%; 
    object-fit: none;
    width: 100%;
    height: 100%;
}

div.m-gallery__photo>a {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
}

div.m-gallery__photo>a::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url('/wp-content/uploads/zoom.svg') center no-repeat rgba(255,255,255,0.75);
	background-size: 25% 25%;
/* 	transform: translatey(-100%); */
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 750ms;
}

div.m-gallery__photo:hover a:before {
	opacity: 1;
	transition: 750ms;
}

.single-product .main__second {
	height: auto !important;
}

.single-product .main__second>div.main__wraper._opacity {
	margin: 75px 0;
	height: auto !important;
}

.circle__img--wrap img {
	transform: scale(1.1);
}

@media (max-width:600px) {
	.circle__img--wrap img {
		transform: scale(1);
	}
}

.notvisible {
    display: none;
}

.m-gallery__photo:nth-child(1),
.m-gallery__photo:nth-child(6),
.m-gallery__photo:nth-child(7),
.m-gallery__photo:nth-child(12),
.m-gallery__photo:nth-child(13),
.m-gallery__photo:nth-child(18),
.m-gallery__photo:nth-child(19),
.m-gallery__photo:nth-child(24),
.m-gallery__photo:nth-child(25),
.m-gallery__photo:nth-child(30){
    width: 48%;
}

@media screen and (max-width: 989px) {
    .m-gallery__photo {
        width: 31% !important;
    }
}

@media screen and (max-width: 767px) {
    .m-gallery__photo {
        width: 48% !important;
    }
    .product-m-gallery__container {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
    .product-m-gallery__sort-buttons {
        width: 100%;
    }
}

@media screen and (max-width: 489px) {
    .product-m-gallery__container {
        gap: 0;
    }

    .product-m-gallery__sort-buttons {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
		padding: 0 16px;
    }

    .product-m-gallery__sort-button {
        border-radius: 20px;
        width: 160px;
        height: auto;
        line-height: 40px;
        padding:  0 0; 
        width: 48%;
        border-bottom: 1px solid #fff;
        box-sizing: border-box;
        margin-bottom: 30px;
        box-shadow: 5px 5px 20px #bbb;
    }

    .m-gallery-sort-button__active {
        color: #fff;
        border-bottom: 1px solid #e63c32;
        background-color:  #e63c32;
    }

    .product-m-gallery__photos {
        margin-top: 25px;
        display: block;
        overflow-x: scroll;
        position: relative;
    }

    .product-m-gallery__photos::-webkit-scrollbar {
        display: none;
    }

    .scroll-gallery{
        width: max-content;
        margin-top: 0;
        flex-wrap: nowrap;
		padding-bottom: 20px;
    }

    

    .m-gallery__photo {
        width: 260px !important;
    }

    
}

/*ЛАЙТБОКС В МАСОНРИ ГАЛЕРИ*/

.lightbox {

    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	display: none; /* Скрыто по умолчанию */
}

.lightbox__content {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 600px;
}

.lightbox__slides img,
.lightbox__slides video {
    width: 100%;
    height: auto;
}

.lb-details {
    display: none;
}
div.lightbox {
	top: 0 !important;
    display: flex;
    flex-direction: column-reverse;
}

.lb-closeContainer {
	position: relative;
}

.lightbox__close,
a.lb-close {
    position: absolute;
    top: -25px;
    right: -50px;
	width: 40px !important;
	height: 40px !important;
    font-size: 30px;
    color: white;
    cursor: pointer;
	z-index: 10000;
	background: url('/wp-content/uploads/close_white.svg') center no-repeat !important;
	background-size: cover !important;
}

.lightbox__prev, .lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(131, 131, 131, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px;
}

.lightbox__next {
    right: 10px;
}

.lightbox__prev {
    left: 10px;
}

.lb-prev {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	opacity: 1 !important;
}

.lb-next {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	opacity: 1 !important;
}

.lb-prev:before {
    display: block;
	content:'\1F814';
	font-size: 50px;
	color: #bebebe;
	opacity: 1 !important;
	line-height: 50px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
	padding: 5px;
	position: absolute;
	left: -75px;
}


.lb-next:before {
    display: block;
	content:'\1F816';
	font-size: 50px;
	line-height: 50px;
	color: #bebebe;
	opacity: 1 !important;
	background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
	padding: 5px;
	height: auto;
	position: absolute;
	right: -75px;
}

div.uk-position-center-left {left: 5% !important;}
div.uk-position-center-right {right: 5% !important;}

div.uk-position-center-left svg {width: 60px !important; height: 60px !important; }
div.uk-position-center-right svg {width: 60px !important; height: 60px !important; }

div.uk-lightbox-items>div>img {
	max-width: 90% !important;
	max-height: 90% !important;
	border-radius: 16px !important;
}
/* *** END MASONRY GAL *** */