/* @group Colors & fonts */

:root {
	--color-accent: #1bb5c2;
	--color-accent-hover: #179da9;
    --bs-primary: var(--color-accent);
    --bs-primary-rgb: 27,181,194;
    --bs-gray-light: #edeeef;
    --bs-gray-light-2: #d5d6d7;
    --bs-gray-light-3: #b0b1b2;
    --vs-light-azure: #dfeaf1;
    --vs-light-beige: #f1f2ed;
    --primary: var(--color-accent);
    --vs-main-background: var(--vs-light-azure);
    --vs-alt-background: var(--vs-light-beige);
}

html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

body {
	background-color: #fff;
	color: #000;
}

a {
	color: var(--color-accent);
}

a:hover {
	color: var(--color-accent-hover);
}

.btn-primary {
	color: #fff;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.btn-primary:hover {
	color: #fff;
	background-color: var(--color-accent-hover);
	border-color: #148e98;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
	color: #fff;
	background-color: var(--color-accent-hover);
	border-color: #148e98;
	box-shadow:0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--color-accent-hover);
	border-color:#148e98;
}

.btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
	box-shadow:0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-primary.disabled, .btn-primary:disabled {
	color: #bde;
	background-color: #3ab7c2;
	border-color:#3ab7c2;
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
	background:  var(--bs-primary) !important;
	color:#fff
}

.border-primary {
	border-color: var(--bs-primary) !important;
}

.text-gray-light {
	color: var(--bs-gray-light-2);
}

.text-gray-light2 {
	color: var(--bs-gray-light-3);
}

.form-check-input:checked {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
}

/* @end */

/* @group Common */

.text-right {
	text-align: right;
}

.horizontal-centered {
	display: flex;
	justify-content: center;
	align-items: center;
}

.vertical-centered {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.vertical-centered-stretched {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.truncate {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.truncate-2line {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media (min-width:992px) {
	.horizontal-centered-lg {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.vertical-centered-lg {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	
	.vertical-centered-stretched-lg {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.img-shadow-lg {
	box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.15);
}
.img-shadow-sm,
.img-shadow-onhover-sm:hover {
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
}

.background-img-cover {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--bs-gray-light-2);
}

i.bi .badge {
	font-style: normal;
}

.shiftup-onhover {
	transform: translateY(0);
	transition: transform 0.4s ease-in-out;
}

.shiftup-onhover:hover {
	transform: translateY(-0.75rem);
}

.scaleup-onhover {
	transform: scale(1);
	transition: transform 0.4s ease-in-out;
}

.scaleup-onhover:hover {
	transform: scale(1.05);
}

.light-box-shadow {
	box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}

.mix-blend-diff {
	mix-blend-mode: difference!important;
}

.mix-blend-excl {
	mix-blend-mode: exclusion!important;
}

.btn.mix-blend-diff:hover,
.btn.mix-blend-excl:hover {
	mix-blend-mode: normal!important;
}

.main-background {
	background: var(--vs-main-background);
}
.alt-background {
	background: var(--vs-alt-background);
}

/* @end */

/* @group Auth */

.page-signin .auth-wrapper,
.page-auth .auth-wrapper,
.page-resetpass .auth-wrapper {
	max-width: 500px;
}

div.bx-auth,
div.bx-auth-serv-icons,
div.bx-authform 
{
	max-width: 600px;
	margin: 2rem auto;
	padding: 1rem;
	background-color: #f3f5f7;
}

.bx-auth-table .authorize-submit-cell {
	text-align: right;
}

/* @end */

/* @group Layout */

body {
	padding-top: 152px; /* fixed top navbar height */
}

main {
	position: relative;
	top: -1px;
	border-top: 1px solid rgba(0, 0, 0, 0);
	border-bottom: 1px solid rgba(0, 0, 0, 0);
}

main .container {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

@media (max-width: 991.98px) {
	body {
		padding-top: 106px; /* fixed top navbar height */
	}
}


/* @end */

/* @group Top Navbar */

#site-header {
	box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.25);
}

.navbar-brand img {
	width: 14rem;
	height: auto;
}

.navbar-brand {
	padding-top: 0;
	padding-bottom: 0;
}

@media (max-width: 991.98px) {
	
	.navbar-brand img {
		width: 12rem;
	}
	.offcanvas-collapse {
	    position: fixed;
	    z-index: 10;
	    top: 62px; /* Height of navbar at mobile size */
	    bottom: 0;
	    left: 100%;
	    width: 100%;
	    padding-right: 1rem;
	    padding-left: 1rem;
	    overflow-y: auto;
	    visibility: hidden;
	    background-color: var(--color-accent); /* #343a40; */
	    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	}
	.offcanvas-collapse.open {
		visibility: visible;
		transform: translateX(-100%);
	}
}

.nav-scroller {
	position: relative;
	/*z-index: 2;*/
	height: 2.75rem;
	/*overflow-y: hidden;*/
}

.nav-topmenu {
	position: relative;
	/*z-index: 2;*/
	/*overflow-y: hidden;*/
}

.nav-topmenu .nav-underline .nav-link {
	font-size: .75rem;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	color: rgba(255, 255, 255, .75);
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.header-nav .nav-link {
	padding-top: .75rem;
	padding-bottom: .75rem;
	font-size: .925rem;
}

.nav-topmenu .header-nav .nav-link {
	padding-top: .6rem;
	padding-bottom: .6rem;
}

.nav-topmenu .header-nav .nav-link,
.nav-topmenu .header-nav .dropdown-item {
	font-size: .75rem;
}

.top-menu-mobile .nav-item .nav-link {
	text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link {
	color: #000;
}

.navbar-light .offcanvas-collapse.open .nav-link {
	color: rgba(255, 255, 255, 0.8);
}

.navbar-light .offcanvas-collapse.open .nav-link:hover {
	color: rgba(255, 255, 255, 1.0);
}

.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover {
	color: var(--bs-primary);
}

.header-nav .nav-link {
	color: #505559;
}

.header-nav .nav-link:hover {
	color: var(--color-accent);
}

.header-nav .active {
	color: #343a40;
}

.navbar-dark .header-nav .nav-link {
	color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .header-nav .nav-link:hover {
	color: rgba(255, 255, 255, 1.0);
}

.navbar-dark .header-nav .active {
	color: #fff;
}

#navbar-phone a {
	text-decoration: none;
	color: inherit;
}

.navbar-collapse.open #navbar-phone {
	color: #fff;
}

#navbar-phone a:hover {
	text-decoration: underline;
}

#navbar-phone .small.text-muted {
	font-size: 0.75em;
	padding-left: 2rem;
}

.navbar .nav-item .badge {
	padding: 0.25em .55em;
	font-size: 0.6em;
	top: 20%!important;
}

#smart-title-search-input {
	min-width: 15rem;
	transition: all 0.25s ease-in-out 0s;
}

.header-nav .active {
	--bs-dropdown-link-active-bg: var(--color-accent);
}

.header-nav .dropdown-item.active, .header-nav .dropdown-item:active {
	color: #ffffff;
}

@media (min-width: 991.98px) {
	#smart-title-search-input:focus {
		min-width: 21rem;
	}
}

@media (min-width: 1199.98px) {
	#smart-title-search-input:focus {
		min-width: 25rem;
	}
}

/* @end */

/* @group Footer */

footer,
footer a,
footer .nav-link {
	color: #b0b1b2;
}

footer a:hover,
footer .nav-link:hover {
	color: #ffffff;
}

footer .title,
footer .nav-title {
	color: #fff;
}

footer .nav-link {
	padding: 0;
	padding-right: 1rem;
}


footer .row {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.socialnet:hover {
	color: #ffffff;
}

.socialnet a {
	font-size: 2rem;
	text-decoration: none;
}
.socialnet:hover {
	color: #ffffff;
}

/* @end */

/* @group Home Page */

.mp-section { padding: 8.25rem 0; }
.mp-section-mediumgap { padding: 5rem 0; }
.mp-section-smallgap { padding: 3rem 0; }

.homepage-block-container,
.baner-carousel-container {
	width: 100%;
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}

.homepage-section-title {
	font-family: Yeseva One;
	font-size: 34px;
	letter-spacing: 3.5px;
	text-transform: uppercase;
}

.mounth {
	position: relative;
	background: #dfeaf1 url(/local/img/month-dots.png);
	padding-top: 100px;
	padding-bottom: 218px;
}
.mounth__bg-img {
	position: absolute;
	left: 50%;
	top: 16px;
	transform: translateX(-97px);
}

.homepage-family-section {
	background: rgb(241,242,237); /* #F1F2ED; */
	background: linear-gradient(180deg, rgba(241,242,237,1) 5%, rgba(255,255,255,1) 91%, rgba(241,242,237,1) 98%);
}

.homepage .authors {
	background-color: #f1f2ed;
}

.authors .card {
	height: 375px;
	max-width: 306px;
	margin: 0 auto;
}

.authors .card img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.authors .card .card-img-overlay div {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1rem;
}
.authors .card .card-img-overlay p,
.authors .card .card-img-overlay h5 {
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.authors .card .card-img-overlay a {
	font-size: 1.5rem;
}
.authors .card .card-img-overlay a:hover {
	text-decoration: underline;
}

.who-is-main {
	background: url(/local/img/dotted-pattern.png) repeat;
}


@media (max-width:1199.98px) {
	.mp-section { padding: 7rem 0; }
	.authors .card {
		height: 310px;
	}
}
@media (max-width:991.98px) {
	.mp-section { padding: 5rem 0; }
	.mp-section-mediumgap { padding: 3.5rem 0; }
	.mp-section-smallgap { padding: 2rem 0; }
	.mounth {
	    padding: 55px 0!important;
		background: #dfeaf1;
	}
	.mounth__bg-img {
		right: 0;
		left: auto;
		top: 114px;
		transform: none;
	}
	.homepage-section-title {
		font-size: 20px;
		letter-spacing: 2px;
	}
	.authors .card {
		height: 340px;
	}
}
@media (max-width:767.98px) {
	.mp-section { padding: 3.75rem 0; }
	.mp-section-mediumgap { padding: 3.0rem 0; }
	.authors .card {
		height: 290px;
	}
	.who-is-main {
		background-image: none;
	}
}
@media (max-width:575px) {
	.authors .card {
		height: 255px;
	}
	.authors .card .card-img-overlay div {
		bottom: 1rem;
		left: 1rem;
		right: 0.5rem;
	}
}
@media (max-width:390px) {
	.authors .card {
		height: 220px;
	}
	.authors .card .card-img-overlay div {
		bottom: 0.7rem;
		left: 0.7rem;
		right: 0.5rem;
	}
}

.mp-section h1,
.mp-section h2,
.mp-section .homepage-section-title {
	text-align: center;
}

/* @end */

/* @group Buttons */

.btn-outline-primary {
	color: var(--bs-gray);
	background-color: transparent;
	border: 1px solid var(--bs-gray);
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: var(--color-accent);
	border-color: var(--color-accent);
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
	color: #fff;
	background-color: var(--color-accent);
	border-color: var(--color-accent);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
	color: var(--color-accent);
	opacity: 0.5;
	background-color: transparent;
}

.btn.round-button {
	width: 45px;
	height: 45px;
}

/* @end */

/* @group B24 form */

.b24-form .b24-form-sign {
	display: none;
	opacity: 0;
}
.b24-form .b24-form-btn-block {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.b24-form .b24-form-btn {
	padding: 0 4rem;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}

/* @end */

/* @group SlickSlider */


.slick-slide {
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	will-change: opacity;
}

.slick-slide.slick-active {
	opacity: 1;
}

.carousel-wraper .slick-slider {
	margin-left: 4rem;
	margin-right: 4rem;
	min-height: 550px;
}

.slick-slider .slick-slide,
.slick-slider .slick-slide * {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
	-webkit-tap-highlight-color:transparent;
	outline-style:none;
}

.carousel-wraper .carousel-controls {
	position: absolute;
	top: calc(35%);
	left: 1rem;
	right: 1rem;
}

.carousel-wraper .product-item-container {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.carousel-wraper .slick-list {
	padding-top: 2.6rem;
	/*
	overflow-x: hidden;
	overflow-y: visible;
	*/
}

.slick-dots li button:before {
	font-size: 12px;
}

@media (max-width:767.98px) {
	.carousel-wraper .slick-slider {
		min-height: 450px;
	}
	.carousel-wraper .slides-list {
		display: flex;
		overflow-x: scroll;
		overflow-y: hidden;
	}
	.carousel-wraper .product-item-small-card {
		display: block;
		width: 8rem;
	}
	.carousel-wraper .carousel-controls {
		display: none!important;
	}
}



/* @end */

/* @group Product Items (list, carosel) */


.items-carousel,
.catalog-section {
	--element-card-width: 12.5rem;
	--element-card-height: 20.0rem;
}

.items-carousel.lg-carousel {
	--element-card-width: 16rem;
	--element-card-height: 22.0rem;
}

.items-carousel.lg-carousel.wide-carousel {
	--element-card-width: 17rem;
	--element-card-height: 16.0rem;
}

.items-carousel.sm-carousel {
	--element-card-width: 8rem;
	--element-card-height: 12.0rem;
}

.items-carousel.sm-carousel .btn {
	--bs-btn-font-size: 0.875rem;
}

.items-carousel .product-item-block,
.catalog-section .product-item-block {
	position: relative;
	width: var(--element-card-width); 
	margin: 0 auto;
}
.catalog-section .product-item-block {
	margin-bottom: 3rem;
}
.items-carousel .product-image-wrapper,
.catalog-section .product-image-wrapper {
	display: block; 
	position: relative;
	width: var(--element-card-width); 
	transition: .3s ease;
	will-change: transform;
}

.items-carousel .product-image-link,
.catalog-section .product-image-link {
	display: block; 
	width: var(--element-card-width); 
	height: var(--element-card-height); 
}

.product-item-block:hover .product-image-wrapper {
	transform: scale(1.15) translateY(-0.8rem);
}

.items-carousel .product-image-link img,
.catalog-section .product-image-link img 
{
	display: inline-block;
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	border-radius: 0.4rem;
	box-shadow: 0 1.25rem 1.25rem rgba(0, 0, 0, .25);
}


.catalog-section .vsbook-product .product-item-params {
	padding-top: 0.5rem;
	padding-bottom: 0.8rem;
}

.catalog-section .vsbook-product .product-buttons-block {
	top: 0;
	left: 0;
	right: 0;
	height: auto;
	opacity: 0;
	transition: .3s ease;
}

.catalog-section .vsbook-product:hover .product-buttons-block {
	top: -4rem;
	opacity: 1;
}

.catalog-section .product-buttons-block button {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-shadow: 0 0 0.5rem 0.2rem rgba(255, 255, 255, 0.8);
}

.catalog-section.sm-carousel .product-buttons-block button {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.catalog-section .product-buttons-block button i {
	padding-left: 0.4rem;
}


@media (max-width:991.98px) {
	.catalog-section .vsbook-product .product-item-params {
		padding-top: 0.5rem;
		padding-bottom: 3.0rem;
	}
	.catalog-section .product-buttons-block button {
		padding: 0.3rem 0.7rem;
		box-shadow: none;
		font-size: 0.85rem;
	}
	.catalog-section .product-buttons-block button i {
		padding-left: 0.1rem;
	}
	.catalog-section .vsbook-product .product-buttons-block {
		top: auto;
		left: 0;
		right: 0;
		bottom: 0.25rem;
		height: auto;
		opacity: 1;
	}
	
	.catalog-section .vsbook-product:hover .product-buttons-block {
		top: auto;
		opacity: 1;
	}
}

@media (max-width:991.98px) {
	.items-carousel {
		--element-card-width: 7rem;
		--element-card-height: 12rem;
	}
	
	.items-carousel.lg-carousel {
		--element-card-width: 7rem;
		--element-card-height: 12rem;
	}
	
	.items-carousel.lg-carousel.wide-carousel {
		--element-card-width: 7rem;
		--element-card-height: 7rem;
	}
	
	.items-carousel.sm-carousel {
		--element-card-width: 7rem;
		--element-card-height: 12.0rem;
	}
}

@media (max-width:767.98px) {
	.items-carousel {
		--element-card-width: 7rem;
		--element-card-height: 12rem;
	}
	
	.items-carousel.lg-carousel {
		--element-card-width: 7rem;
		--element-card-height: 12rem;
	}
	
	.items-carousel.lg-carousel.wide-carousel {
		--element-card-width: 7rem;
		--element-card-height: 7rem;
	}
	
	.items-carousel.sm-carousel {
		--element-card-width: 7rem;
		--element-card-height: 12.0rem;
	}
}


.product-item-block .product-item-price-container {
	margin-top: 0.8rem;
}

.product-item-block .product-item-price-container.not-available  {
	margin-bottom: 0.8rem;
}

.product-item-block .product-item-price-current {
	font-size: 1.625rem;
}

.sm-carousel .product-item-block .product-item-price-current {
	font-size: 1.4rem;
}

.product-item-block .not-available .product-item-price-current{
	font-size: 1.4rem;
}

.product-item-block .product-price-old-wrapper {
	display: inline;
	text-align: center;
}

.product-item-block .product-item-price-old {
	position: relative;
	display: inline-block;
	font-size: 1.125rem;
	color: #999;
}

.product-item-block .product-item-price-old:before {
	display: block;
	content: '';
	position: absolute;
	left: -5%;
	right: 5%;
	top: 50%;
	transform: translateY(-50%) rotate(-25deg);
	height: 2px;
	width: 110%;
	background: rgba(255, 0, 0, 0.75);
}

.product-item-block .product-title {
	display: block;
	position: relative;
	line-height: 1.4;
	height: 4.5rem;
	max-height: 4.5rem;
	padding-bottom: 0.5rem;
	overflow: hidden;
}

.product-item-block .product-title::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1.0rem;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.product-item-block .product-title a {
	text-decoration: none;
	color: var(--bs-secondary);
}

.product-item-block:hover .product-title a {
	color: var(--bs-dark);
}

.product-item-scu-item-text-block:hover, 
.product-item-scu-item-color-block:hover, 
.product-item-scu-item-text-container.selected .product-item-scu-item-text-block, 
.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
	outline-color: var(--bs-primary);
	background-color: rgba(var(--bs-primary-rgb), 0.3);
}
.product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
	outline-width: 3px;
}

.catalog-block-header {
	font-size: 1.5rem;
	font-weight: normal;
}


@media (max-width:991.98px) {
	.items-carousel .product-item-block,
	.catalog-section .product-item-block {
		width: 7.0rem; 
	}
	.catalog-section .product-item-block {
		margin-bottom: 3rem;
	}
	.items-carousel .product-image-wrapper,
	.catalog-section .product-image-wrapper {
		width: 7.0rem; 
	}
	
	.items-carousel .product-image-link,
	.catalog-section .product-image-link {
		/* -- defined vie var (see above)
		width: 7.0rem; 
		height: 11.25rem;
		*/
		transition: none;
		will-change: auto;
	}
	.product-item-block:hover .product-image-link {
		transform: none;
	}
	.product-item-block .product-item-price-current {
		font-size: 1.35rem;
	}
	.product-item-block .not-available .product-item-price-current{
		font-size: 1.125rem;
	}
	.product-item-block .product-price-old-wrapper {
		display: block;
		text-align: center;
	}
	.product-item-block .product-item-price-old {
		font-size: 1.0rem;
	}
	.product-item-block .product-item-price-old:before {
		display: block;
		content: '';
		position: absolute;
		left: -5%;
		right: 5%;
		top: 50%;
		transform: translateY(-50%) rotate(-25deg);
		height: 2px;
		width: 110%;
		background: rgba(255, 0, 0, 0.75);
	}
	.product-item-block .product-title {
		font-size: 0.85rem;
		line-height: 1.25;
	}

}


/* @end */

/* @group Product Item's label */

/*Label*/
.product-item-label-text,
.product-item-label-ring {
	position: absolute;
	z-index: 15;
}

.product-item-label-text div span,
.product-item-label-ring {
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}

.product-item-label-text span,
.product-item-label-ring {
	display: inline-block;
	clear: both;
	margin-bottom: 2px;
	background: #f42c2c;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	transition: all 250ms ease;
}

.product-item-label-text .lab-POPULAR span {
	background: #ffd44b;
	color: #111;
}

.product-item-label-text .lab-READERS_CHOICE span {
	background: #6fee93;
	color: #111;
}

.product-item-label-text .lab-NOVELTY span {
	background: #abe7ff;
	color: #111;
}


.bx-red .product-item-label-text span,
.bx-red .product-item-label-ring { background-color: #fba90c; }

.product-item-label-text > div,
.product-item-label-ring > div { line-height: 0; }

/* TEXT */
.product-item-label-text span {
	padding: 2px 5px;
	vertical-align: middle;
	font-weight: bold;
}

/*SMALL*/
.product-item-label-text.product-item-label-small span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
	margin-bottom: 1px;
	padding: 5px 10px;
	font-weight: normal;
	font-size: 13px;
	line-height: 14px;
}

.product-item-big-card .product-item-label-text.product-item-label-small span {
	padding: 7px 15px;
	font-size: 16px;
	line-height: 21px;
}

/* BIG */
.product-item-label-text.product-item-label-big span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
	padding: 5px 12px;
	font-size: 13px;
	line-height: 17px;
}

.product-item-big-card .product-item-label-text.product-item-label-big span {
	padding: 5px 17px;
	font-size: 22px;
	line-height: 33px;
}

@media (max-width: 767px) {
	.product-item-label-text > div { line-height: 0; }

	.product-item-label-text.product-item-label-small span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
		margin-bottom: 1px;
		padding: 2px 7px;
		font-size: 10px;
		line-height: 14px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-small span,
	.product-item-label-text.product-item-label-big span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
		margin-bottom: 1px;
		padding: 3px 12px;
		font-size: 14px;
		line-height: 16px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-big span {
		padding: 3px 12px;
		font-size: 20px;
		line-height: 25px;
	}
}

/*RING*/
.product-item-label-ring {
	box-sizing: border-box;
	border-radius: 50%;
	font-weight: bold;
}

.product-item-label-ring.product-item-label-small,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
	width: 44px;
	height: 44px;
	font-size: 14px;
	line-height: 44px;
}

.product-item-big-card .product-item-label-ring.product-item-label-small {
	width: 100px;
	height: 100px;
	font-size: 30px;
	line-height: 100px;
}

.product-item-label-ring.product-item-label-big,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
	width: 50px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
}

.product-item-big-card .product-item-label-ring.product-item-label-big {
	width: 120px;
	height: 120px;
	font-size: 42px;
	line-height: 120px;
}

@media (max-width: 767px) {
	.product-item-label-ring.product-item-label-small,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
		width: 35px;
		height: 35px;
		font-size: 12px;
		line-height: 35px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-small,
	.product-item-label-ring.product-item-label-big,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
		width: 35px;
		height: 35px;
		font-size: 12px;
		line-height: 35px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-big {
		width: 70px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
	}
}

.product-item-label-top { top: 10px; }

.product-item-label-center {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.product-item-label-center > div { text-align: center; }

.product-item-label-left { left: -7px; }

.product-item-label-left > div { text-align: left; }

.product-item-label-bottom { bottom: 15px; }

.product-item-label-middle {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.product-item-label-right { right: -7px; }

.product-item-label-right > div { text-align: right; }

.product-item-label-center.product-item-label-middle {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/* @end */

/* @group Product Item List (default) */

.vsbook21 .default-catalog .product-item-price-current {
	font-weight: normal;
	font-size: 1.25rem;
	font-style: normal;
}

.vsbook21 .default-catalog .product-item-price-old {
	color: var(--bs-red);
	font-size: 0.85rem;
}

.vsbook21 .default-catalog .product-item-title {
	margin-bottom: 0.5rem;
	font-weight: normal;
	font-size: 0.9375rem;
}

.vsbook21 .default-catalog .product-item-title a {
	color: var(--bs-secondary);
}

.vsbook21 .default-catalog .product-item-container {
	margin-bottom: 1.5rem;
}

.vsbook21 .default-catalog .product-item-container .product-item {
	background: none;
}

.vsbook21 .default-catalog .product-item-container.hover .product-item {
	background: #fff;
}

.vsbook21 .default-catalog .product-item-image-slide {
	background-color: transparent;
}

.vsbook21 .default-catalog .catalog-list .product-item-title {
	font-family: var(--bs-body-font-family);
}

.vsbook21 .popup-window .popup-window-buttons {
	padding: 0 1rem;
}


/* @end */

/* @group Product Item Detail */

.product-item-detail-tab-content .product-item-detail-properties {
	column-count: 2;
	column-gap: 3rem;
}

@media (max-width:991.98px) {
	.product-item-detail-tab-content .product-item-detail-properties {
		column-count: 1;
		column-gap: default;
	}
}

/* @end */

/* @group Title Line */

.title-line {
	position: relative;
	text-align: center;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-size: 2.125rem;
	font-family: "Yeseva One", sans-serif;
	font-weight: 400;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.title-line:after, .title-line:before {
	content: '';
	border-top: 1px solid rgba(0, 0, 0, .15);
	flex: 1 0 20px;
}

.title-line:before {
	margin-left: 0;
	margin-right: 20px;
}
.title-line:after {
	margin-left: 20px;
	margin-right: 0;
}

.title-line span {
	position: relative;
}

.title-line .title-line-img {
	position: absolute;
	width: 200px;
	height: 200px;
	right: 0;
	left: 0;
	top: -75px;
	margin: 0 auto;
	z-index: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title-line .title-line-img img {
	width: 100%;
	height: 125px;
	object-fit: contain;
}

@media (max-width:991.98px) {
	.title-line {
		font-size: 20px;
		letter-spacing: 2.5px;
	}
}

@media (max-width:575px) {
	.title-line {
		font-size: 18px;
	}
}





/* @end */

/* @group Utilities (bs+) */

.mt-6 {
	margin-top: 5rem !important;
}
.mt-7 {
	margin-top: 7rem !important;
}
.mt-8 {
	margin-top: 10rem !important;
}
.mb-6 {
	margin-bottom: 5rem !important;
}
.mb-7 {
	margin-bottom: 7rem !important;
}
.mb-8 {
	margin-bottom: 10rem !important;
}
.pt-6 {
	padding-top: 5rem !important;
}
.pt-7 {
	padding-top: 7rem !important;
}
.pt-8 {
	padding-top: 10rem !important;
}
.pb-6 {
	padding-bottom: 5rem !important;
}
.pb-7 {
	padding-bottom: 7rem !important;
}
.pb-8 {
	padding-bottom: 10rem !important;
}

@media (min-width: 576px) {
	.mt-sm-6 {
		margin-top: 5rem !important;
	}
	.mt-sm-7 {
		margin-top: 7rem !important;
	}
	.mt-sm-8 {
		margin-top: 10rem !important;
	}
	.mb-sm-6 {
		margin-bottom: 5rem !important;
	}
	.mb-sm-7 {
		margin-bottom: 7rem !important;
	}
	.mb-sm-8 {
		margin-bottom: 10rem !important;
	}
	.pt-sm-6 {
		padding-top: 5rem !important;
	}
	.pt-sm-7 {
		padding-top: 7rem !important;
	}
	.pt-sm-8 {
		padding-top: 10rem !important;
	}
	.pb-sm-6 {
		padding-bottom: 5rem !important;
	}
	.pb-sm-7 {
		padding-bottom: 7rem !important;
	}
	.pb-sm-8 {
		padding-bottom: 10rem !important;
	}
}
@media (min-width: 768px) {
	.mt-md-6 {
		margin-top: 5rem !important;
	}
	.mt-md-7 {
		margin-top: 7rem !important;
	}
	.mt-md-8 {
		margin-top: 10rem !important;
	}
	.mb-md-6 {
		margin-bottom: 5rem !important;
	}
	.mb-md-7 {
		margin-bottom: 7rem !important;
	}
	.mb-md-8 {
		margin-bottom: 10rem !important;
	}
	.pt-md-6 {
		padding-top: 5rem !important;
	}
	.pt-md-7 {
		padding-top: 7rem !important;
	}
	.pt-md-8 {
		padding-top: 10rem !important;
	}
	.pb-md-6 {
		padding-bottom: 5rem !important;
	}
	.pb-md-7 {
		padding-bottom: 7rem !important;
	}
	.pb-md-8 {
		padding-bottom: 10rem !important;
	}
}
@media (min-width: 992px) {
	.mt-lg-6 {
		margin-top: 5rem !important;
	}
	.mt-lg-7 {
		margin-top: 7rem !important;
	}
	.mt-lg-8 {
		margin-top: 10rem !important;
	}
	.mb-lg-6 {
		margin-bottom: 5rem !important;
	}
	.mb-lg-7 {
		margin-bottom: 7rem !important;
	}
	.mb-lg-8 {
		margin-bottom: 10rem !important;
	}
	.pt-lg-6 {
		padding-top: 5rem !important;
	}
	.pt-lg-7 {
		padding-top: 7rem !important;
	}
	.pt-lg-8 {
		padding-top: 10rem !important;
	}
	.pb-lg-6 {
		padding-bottom: 5rem !important;
	}
	.pb-lg-7 {
		padding-bottom: 7rem !important;
	}
	.pb-lg-8 {
		padding-bottom: 10rem !important;
	}
}

/* @end */

/* @group BX Added to basket */

body > div.popup-window.popup-window-with-titlebar[id^="CatalogSectionBasket_bx"] { 
	padding: 0 0 10px;
}

body > div.popup-window.popup-window-with-titlebar[id^="CatalogSectionBasket_bx"] .popup-window-titlebar { 
	padding: 0 0.75rem;
	background-color: var(--bs-gray-light);
}
body > div.popup-window.popup-window-with-titlebar[id^="CatalogSectionBasket_bx"] .popup-window-titlebar-text {
	color: var(--bs-dark);
}
body > div.popup-window.popup-window-with-titlebar[id^="CatalogSectionBasket_bx"] .popup-window-content img {
	margin-bottom: 1rem;
}

/* @end */

/* @group UNISENDER by DK */

/* Popup subscription form */
#popmechanic-snippet div[id^=popmechanic-container-] div[id^=popmechanic-form-] .popmechanic-thankyou {
	height: 70%!important;
}

/* @end */

/* @group Cart */

#soa-property-7[readonly="true"],
#soa-property-7[readonly="readonly"] {
	background-color: #f2f5f7!important;
	color: #999!important;
}

.bx-soa-cart-total.bx-soa-cart-total-fixed {
	position: fixed;
	top: 10.7rem;
}
.bx-soa-section.bx-step-completed {
	border-color: var(--color-accent);
}
.bx-soa-more-btn .pull-right {
	float: right;
}

.sale-paysystem-yandex-button-item {
	height: auto;
}
.sale-paysystem-wrapper {
	margin: 0;
}

.basket-coupon-alert-section .basket-coupon-text {
	padding-left: 1rem;
}

.basket-items-list-table .basket-items-list-item-descriptions-inner {
	text-align: initial;
}

@media (max-width:991.98px) {
	.basket-items-list-table .basket-items-list-item-descriptions-inner {
		text-align: center;
	}
}



/* @end */


