/* Всплывающая карточка для колонки custom-hover */
.ba-grid-column.custom-hover:hover {
    box-shadow: 0px 15px 20px 15px var(--shadow) !important;
    z-index: 100;
}

.ba-grid-column.custom-hover {
	transition: .3s;
}

.ba-grid-column.custom-hover:hover {
    transform: scale(1.1);
}


/* Плавающая кнопка Whatsapp */
.custom-whatsapp .ba-btn-transition {
	position: fixed;
    bottom: 21px;
    left: 20px;
		z-index: 100; 
}



/* Изменение цвета колонки как кнопка custom-button */
.ba-grid-column.custom-hover:hover .custom-button .ba-btn-transition {
    background: #333 !important;
}

.ba-grid-column.custom-hover:hover .custom-button .ba-btn-transition:hover {
    background: #c32020 !important;
}

/* Изменение цвета колонки как кнопка custom-button */
.custom-button:before {
    background: #fff;
    bottom: 0;
    content: "";
    display: block !important;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: .3s;
}

.custom-button:hover:before {
	opacity: 1;
}


/* Плавающее меню в LightBox */
.ba-lightbox.ba-container {
    top: 0;
    right: 0;
    left: 0;
}

.ba-lightbox.ba-container > .ba-section {
	width: 100%;
}

