:root {
	--color-primary: #000;
    --color-primary-hover: #444;
    
	--color-secondary: #c8001d;
    --color-secondary-hover: #940016;
    
    --color-secondary2: #C7BF14;
    --color-secondary2-hover: #D0CA53;
    
    --color-a: #c8001d;
    --color-a-hover: #940016;
    
    --color-body: #363636;
    --color-h: #363636;
    
	--color-accent: #000;
	--color-accent-grey: #ababab; 
	--color-light-grey: #dddddd;

    /*https://www.awwwards.com/20-best-web-fonts-from-google-web-fonts-and-font-face.html*/
	--font-heading: 'Roboto Condensed', sans-serif; /*'Unna', serif;*/
    --font-content: 'Roboto Condensed', sans-serif;
}

::-moz-selection {
	background: var(--color-primary);
	color: var(--color-light-grey);
}
::selection {
	background: var(--color-primary);
	color: var(--color-light-grey);
}
body {
	margin: 0;
	font-family: var(--font-content);
    font-size: 0.9em;
    color: var(--color-body);
    overflow-x: hidden;
    line-height: 24px;
	position: relative;
	background: #fff;
    letter-spacing: 0px;
}
@media (max-width: 768px) {
    body {
        font-size: 0.90em;
    }
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: var(--font-heading);
    font-weight: 300;
    color: var(--color-h);
    margin-bottom: 1rem;
}

h1 > a, .h1 > a, h2 > a, .h2 > a, h3 > a, .h3 > a, h4 > a, .h4 > a, h5 > a, .h5 > a, h6 > a, .h6 > a {
	color: inherit;
}

h1, .h1 { font-size: 2.6em; }
h2, .h2 { font-size: 2.2em; }
h3, .h3 { font-size: 2em; }
h4, .h4 { font-size: 1.8em; }
h5, .h5 { font-size: 1.6em; }
h6, .h6 { font-size: 1.4em; }

a {
	text-decoration: none;
	color: var(--color-a);
	transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
a:hover {
	text-decoration: none;
	color: var(--color-a-hover);
}

img {
	max-width: 100%;
	height: auto;
}


blockquote {
  border-left: 10px solid #ccc;
  padding-left: 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}


.font-content { font-family: var(--font-content); }
.font-heading { font-family: var(--font-heading); }


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .3rem;
        padding-left: .3rem;
    }
}

.badge {padding: 0.35em 0.65em 0.14em 0.65em !important;}


.btn {
	outline: none!important;
	box-shadow: none!important;
}
.btn-primary {
	background-color: var(--color-primary)!important;
	border-color: var(--color-primary)!important;
}
.btn-primary:hover {
	background-color: var(--color-primary-hover)!important;
	border-color: var(--color-primary-hover)!important;
}
.btn-outline-primary {
	border-color: var(--color-primary)!important;
	color: var(--color-primary)!important;
    background-color: transparent!important;
}
.btn-outline-primary:hover {
	background-color: var(--color-primary)!important;
	color: #fff!important;
}
.btn-secondary {
	background-color: var(--color-secondary)!important;
	border-color: var(--color-secondary)!important;
	color: #ffffff!important;
}
.btn-secondary:hover {
	background-color: var(--color-secondary-hover)!important;
	border-color: var(--color-secondary-hover)!important;
	color: #ffffff!important;
}
.btn-outline-secondary {
	border-color: var(--color-secondary)!important;
	color: var(--color-secondary)!important;
    background-color: transparent!important;
}
.btn-outline-secondary:hover {
	border-color: var(--color-secondary)!important;
	background-color: var(--color-secondary)!important;
	color: var(--color-primary)!important;
}

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

.btn-transparent {
	background-color: transparent!important;
	border-color: transparent!important;
    color: var(--color-primary)!important;
}
.btn-transparent:hover {
    background-color: transparent!important;
	border-color: transparent!important;
    color: var(--color-secondary)!important;
} 

.btn-grey {
	background-color: var(--color-light-grey)!important;
	border-color: var(--color-light-grey)!important;
    color: var(--color-primary)!important;
}
.btn-grey:hover {
    background-color: var(--color-light-grey)!important;
	border-color: var(--color-light-grey)!important;
    color: var(--color-secondary)!important;
}

.breadcrumb li > a {
    color: var(--bs-gray-600)!important;
}
.breadcrumb li > a:hover {
    color: var(--color-primary)!important;
}


.text-primary {
	color: var(--color-primary)!important;
}
.text-secondary {
	color: var(--color-secondary)!important;
}
.text-grey {
	color: var(--color-accent-grey)!important;
}
.text-b2b {
	color: #7460ee!important;
}


.text-a {
	color: var(--color-a)!important;
    transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.text-a:hover {
	color: var(--color-a-hover)!important;
}
.border-a {
	border-color: var(--color-a)!important;
    transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.border-a:hover {
	border-color: var(--color-a-hover)!important;
}
.bg-a {
	background-color: var(--color-a)!important;
    transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.bg-a:hover {
	background-color: var(--color-a-hover)!important;
}


.linkMuted {
    color: #6c757d!important;
    text-decoration: underline;
}
.linkMuted:hover {
    color: #000!important;
    text-decoration: none;
}
.linkMuted2 {
    color: #6c757d!important;
    text-decoration: none;
}
.linkMuted2:hover {
    color: #000!important;
    text-decoration: underline;
}
.linkBodyColor {
    color: var(--color-body)!important;
}
.linkBodyColor:hover {
    color: var(--color-a)!important;
}
.linkWhiteColor {
    color: #ffffff!important;
    text-decoration: underline;
}
.linkWhiteColor:hover {
    text-decoration: none;
}
.linkLightGreyColor {
    color: var(--color-light-grey)!important;
    text-decoration: underline;
}
.linkLightGreyColor:hover {
    text-decoration: none;
}


.back-white {
	background-color: #fff;
}
.bg-primary {
	background-color: var(--color-primary)!important;
}
.bg-secondary {
	background-color: var(--color-secondary)!important;
}
.bg-grey {
	background: var(--color-light-grey)!important;
}
.bg-black {
	background: #000!important;
}
.bg-light-grey {
    background: var(--bs-gray-100)!important;
}


.container-custom {
	max-width: 1500px;
}

.container-custom-video {
	max-width: 1750px;
}

.sticky {
    position: sticky;
    top:50px;
}

.highlineMarkPrimary {
    background: var(--color-primary);
    padding: 3px 10px;
    color: var(--color-secondary);
    line-height: 1.8;
    display: inline;
    background: var(--color-primary);
    padding-left: 0;
    padding-right: 0;
    box-shadow: 10px 0 0 var(--color-primary), -10px 0 0 var(--color-primary);
}

.highlineMarkSecondary {
    background: var(--color-secondary);
    padding: 2px 10px;
    color: #fff;
    line-height: 1.8;
    display: inline;
    background: var(--color-secondary);
    padding-left: 0;
    padding-right: 0;
    box-shadow: 10px 0 0 var(--color-secondary), -10px 0 0 var(--color-secondary);
}


.parallax-dinamic {
    position: relative;
    content: '';
    z-index: 1;
    right: 0;
    width: 100%;
    /*height: 500px;
    background-image: url(../img/general/big2.jpg);*/
    background-attachment: fixed;
    background-size: cover;
}
@media (max-width: 992px) {
    .parallax-dinamic {
        /*height: 300px;*/
        width: 100%;
        background-attachment: initial;
    }
}



.parallax {
    position: relative;
    content: '';
    z-index: 1;
    right: 0;
    width: 100%;
    height: 500px;
    /*background-image: url(../img/general/big2.jpg);*/
    background-attachment: fixed;
    background-size: cover;
}


.cursor-pointer {cursor: pointer;}



@media (max-width: 992px) {
    .tooltip {
        display: none !important;
    }
 }


.square {
    line-height: 0;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
}

.square-50 { width: 50px; height: 50px; }
.square-36 { width: 36px; height: 36px; }
.square-15 { width: 15px; height: 15px;}

.font-size-10 {font-size: 10px;}
.font-arial {font-family: Arial, Helvetica, sans-serif;}


.text-responsive {
  font-size: calc(35% + 1vw + 1vh);
}

.text-responsive-small-mobile {
    font-size: inherit;
}
@media (max-width: 375px) {
    .text-responsive-small-mobile {
        font-size: calc(35% + 1vw + 1vh);
    }
}

.text-shadow-white {
    text-shadow: 1px 1px #fff;
}
.text-shadow-black {
    text-shadow: 1px 1px #000;
}
.text-shadow-dark {
    text-shadow: 1px 1px #999;
}


.insidescroll {
    /* https://stackoverflow.com/questions/46663467/css-for-scrolling-breadcrumb */
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}



.heart-pulse { -webkit-animation: pulse 1.5s infinite; }
.flashX { -webkit-animation: flash 4s infinite; }
.headShakeX { -webkit-animation: headShake 2s infinite; }

.pswp__bg { background: #000000d1;}

.height100 {height: 100%!important;}

.smallXS {font-size: 10px;}


/* mai mult bun pt h1 si h2 */
.small-m { }
@media (max-width: 768px) { 
    .small-m { font-size: calc(100% + 0vw + 1vh)!important; }
}

@media (max-width: 768px) {
    .border-none-mobile { border: none!important; }
}


.page-link {
    color: var(--color-primary);
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-item.active .page-link {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


.vh-100 {
    min-height: 100vh!important;
}

.vh100-min {
    min-height: calc(100vh - 80px)!important;
}
@media (max-width: 992px) {
    .vh100-min {  min-height: calc(100vh - 180px)!important; }
}


.w75d-100m {
    width: 75%!important;
}
@media (max-width: 992px) {
    .w75d-100m { width: 100%!important; }
}


.w-90 {
    width: 90%!important;
}

.w90d-100m {
    width: 90%!important;
}
@media (max-width: 992px) {
    .w90d-100m {
        width: 100%!important;
    }
}

.w50d-100m {
    width: 50%!important;
}
@media (max-width: 992px) {
    .w50d-100m {
        width: 100%!important;
    }
}


.language img {
	height: 16px;
    margin-right: 5px;
}
.language a {
	color: var(--color-body);
}
.language a:hover {
	cursor: pointer;
}
.language .dropdown-item.active, .dropdown-item:active {
    background-color: var(--color-body)!important;
}


.bigger {
	font-size: 200%;
}



iframe.gmaps {
	width: 100%;
	height: 300px;
	margin-bottom: 20px;
}



.form-alert {
	display: none;
	position: fixed;
	right: 20px;
	top: 20px;
	max-width: 400px;
	z-index: 999;
}
.form-alert .alert {
	border: none;
	border-radius: 0;
	margin-bottom: 0;
}
.form-alert .alert-warning {
	background: #f4a421;
	color: #fff;
}
.form-alert .alert-success {
	background: #33a212;
	color: #fff;
}
.form-alert .alert .close {
	padding: .65rem 1.25rem;
	color: #fff;
	transition: all .4s;
}
.form-alert .alert .close:hover {
	color: #000;
}
.valid {
	border-color: green!important;
}
.invalid {
	border-color: red!important;
}




/* S: Cookie Dialog */
.gdprcookie {
	position: fixed;
	color: #000;
	font-size: 12px;
	line-height: 16px;
	left: 20px;
	bottom: 20px;
	max-width: 300px;
	padding: 10px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .7);
	z-index: 99999999;
}
.gdprcookie h1,
.gdprcookie h2 {
	font-size: 20px;
	margin-bottom: 5px;
}
.gdprcookie h2 {
	font-size: 16px;
	color: #000;
}
.gdprcookie p {
	font-size: 12px;
}
.gdprcookie a {
	color: currentColor;
	text-decoration: underline;
}
.gdprcookie-buttons {
	text-align: center;
}
.gdprcookie-buttons button {
	color: #000;
	font-family: inherit;
	font-size: 14px;
	line-height: 14px;
	padding: 10px;
	border-radius: 5px;
	margin: 0 3px;
	background: #000;
	cursor: pointer;
	border: none;
	transition: .4s;
	box-shadow: none;
	outline: none;
}
.gdprcookie-buttons button:first-child {
	background: rgba(0, 128, 0, 0.7);
    color: #fff;
}
.gdprcookie-buttons button:first-child:hover {
	background: rgba(0, 128, 0, 1);
    color: #fff;
}
.gdprcookie-buttons button:last-child {
	background: none;
	font-size: 12px;
}
.gdprcookie-buttons button:disabled {
	color: rgba(255, 255, 255, .5);
}
.gdprcookie-types ul {
	overflow: hidden;
	padding: 0;
	margin: 0 0 10px;
}
.gdprcookie-types li {
	display: block;
	list-style: none;
	float: left;
	width: 50%;
	padding: 0;
	margin: 0;
}
.gdprcookie-types input[type=checkbox] {
	margin-right: 10px;
}
/* E: Cookie Dialog */



.loading {
    overflow: hidden;
}
#loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .7);
    z-index: 999999;
    display: none;
}
.loading #loader {
    display: block;
}
.custom-loader-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, .7);
}
.custom-loader {
    border: 5px solid transparent;
    border-radius: 50%;
    border-top-color: var(--main-color);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}



/******* THEME Standard *******/





/******* S: keyframes *******/
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/******* e: keyframes *******/






/* S: Header */
header {
	position: sticky;
	position:-webkit-sticky;
	top: 0;
	z-index: 98;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0, .5);
	padding: 5px 0;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
    /* background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
header .logo img {
	max-width: 75px!important;
	transition: .4s;
}
header.fixed .logo img {
	max-width: 50%; 
}
header.hide {
	transition: transform .42s ease-out 19.2ms;
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
	transform: translateY(-200px);
}
.logo .no-img {
	text-transform: uppercase;
	font-size: 40px;
}



/* S: Navbar */
.navbar-nav li {
}
.navbar-nav li a{
}
.navbar-nav li a:hover {
}
.navbar-nav > li.active > a {
    color: var(--color-secondary);
}
/* E: Navbar */






/******* CUSTOM *******/





/*S: scrool stanga-dreapta la Blog/Vlog*/
/*scroller*/
.btn-header-links {
    padding-top: 0px;
    padding-bottom: 30px;
    overflow-x: scroll;
    display: inline-block;
    white-space: nowrap;
    transition: 1s ease;
}
.padding-align{
    padding-left: 4em !important;
    padding-right: 4em !important;
}
/*scroller parent style*/
.scroller {
    position: relative;
    overflow: hidden;
    height: 31px;
}

/*left arrow styles*/
.left-btn-scroller {
    position: absolute;
    left: 0%;
    top: 0;
    font-size: 18px;
    color: #3f3f3f;
    bottom: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(242, 242, 242, 0.94);
    z-index: 1002;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

/*right arrow styles*/
.right-btn-scroller {
    position: absolute;
    right: 0%;
    top: 0;
    font-size: 18px;
    color: #3f3f3f;
    bottom: 0;
    width: 30px;
    cursor: pointer;
    height: 30px;
    background-color: rgba(242, 242, 242, 0.94);
    border-radius: 50%;
    z-index: 1002;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.opacity-0 {
    opacity: 0;
}
@media (max-width: 996px) {
    .padding-align{
        padding-left: 3em !important;
        padding-right: 3em !important;
    }
    /*.left-btn-scroller {
        display: none;
    }
    .right-btn-scroller {
        display: none;
    }*/
}
/*E: scrool stanga-dreapta la Blog/Vlog*/







.animateToRight-10px {
    transition: .2s;
}
.animateToRight-10px:hover {
    padding-left: 10px;
}





/* S: Big Banner */
.banner {
	z-index: 1;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	/*background-attachment: fixed;*/
	background-repeat: no-repeat;
	background-color: #eee;
}
.banner.no-banner {
	min-height: 150px;
}
.banner:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: var(--color-primary);
	opacity: 0.3;
	z-index: 1;
	width: 100%;
	content: '';
}
/* S: Banner CMS */
.banner.banner-cms {
	display: block;
	min-height: 375px;
	height: auto;
}
.banner-cms .cuprins-banner {
	z-index: 2;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50vh;

	position: absolute;
	bottom: 200px;
	width: 100%;
}
/* E: Banner CMS */
/* E: Big Banner */




/* S: Review comment/dinamic */
.comment-form-principal {
	display: none;
}
.review-box {}
.review-box+.review-box {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}
.review-box:after {
	clear: both;
	display: table;
	content: ' ';
}
.user-info {
	width: 125px;
	float: left;
	padding-right: 5px;
	border-right: 1px solid #ddd;
}
.user-info .user-image {
	margin-bottom: 10px;
}
.user-info .image-inner {
	display: inline-block;
	background: #eee!important;
	padding: 5px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	text-align: center;
	font-size: 28px;
	line-height: 70px;
	color: #333;
	position: relative;
}
.user-info .image-inner span {}
.user-info .user-name {
	font-size: 12px;
	font-weight: 700;
	;
}
.user-info .user-name span {
	font-size: 12px;
	font-weight: 400;
	color: #a2a2a2;
}
.user-info .review-date {
	margin-bottom: 10px;
}
.user-info .review-verified {
	color: #1a9352;
	font-size: 14px;
}
.user-info .review-verified i {
	margin-right: 5px;
}
.review-content {
	width: calc(100% - 125px);
	float: left;
	padding-left: 10px;
}
.review-content .review-title {
	margin-bottom: 15px;
	font-weight: 700;
}
.review-content .show-comments-info {
	margin-top: 10px;
	font-weight: 700;
}
.review-content .show-comments-info a {
	line-height: 12px;
	font-size: 12px;
	cursor: pointer;
	transition: color .5s;
	text-decoration: none;
	font-weight: 700;
}
.review-content .show-comments-info a.comment-delete {
	font-size: 20px;
	color: red;
	text-transform: uppercase;
}
.review-content .show-comments-info a.comment-approve {
	font-size: 20px;
	color: green;
	text-transform: uppercase;
}
.review-content .show-comments-info a i {}
.review-content .show-comments-info a:hover {
	color: #000;
}
.comment {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}
.comment:after {
	clear: both;
	display: table;
	content: ' ';
}
.comment-user-info {
	float: left;
}
.comment-user-info .comment-user-image {
	margin-bottom: 10px;
}
.comment-user-info .comment-image-inner {
	display: inline-block;
	background: #ec1e8c;
	padding: 5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	text-shadow: 0 0 1px #000;
}
.comment-content-wrapper .add-comment {
	display: none;
}
.comment-content .show-comments-info {
	line-height: 12px;
	font-size: 12px;
}
.comment-content {
	padding-left: 50px;
}
.comment-content .added-by {
	font-size: 12px;
	color: #9e9e9e;
	margin-top: 5px;
}
.comment-content .added-by span {
	color: #000;
	font-weight: 700;
}
.comment-content .show-comments-info a.comment-delete {
	font-size: 14px;
	color: red;
	text-transform: uppercase;
}
.comment-content .show-comments-info a.comment-approve {
	font-size: 14px;
	color: green;
	text-transform: uppercase;
}
form.comment-form {
	font-size: smaller;
}
@media (max-width: 567px) {
	.user-info {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.user-info .user-image {
		float: left;
		margin-right: 40px;
	}
	.review-content {
		width: 100%;
		float: none;
		padding-left: 0;
		margin-top: 40px;
	}
}
/* E: Review comment/dinamic */




.modal .close {
    float: right;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.modal button.close {
    padding: 0;
    background-color: var(--color-light-grey);
    border: 0;
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.modal button.close:hover {
    background-color: var(--color-accent-grey);
}
.modal-open-custom {
    overflow: hidden;
}
.modal-open-custom .modal {
    overflow-x: hidden;
    overflow-y: auto;
}



.logo-custom .swiper-slide img  {
	max-height: 120px!important;
}




.slick-next:before, .slick-prev:before {
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
	line-height: 50px;
	font-size: 15px!important;
	background-color: white;
	content: "\f054";
	width: 50px;
	height:  50px;
}
.slick-prev:before {
	content: "\f053";
}





.blog-sidebar a:not(.badge) {
	color: var(--color-primary);
}
.blog-sidebar a:not(.badge):hover {
	color: var(--color-secondary);
}
.blog-bg:nth-child(even) {
	background-color: #f3f5f9;
}


.vlog-sidebar a:not(.badge) {
	color: var(--color-primary);
}
.vlog-sidebar a:not(.badge):hover {
	color: var(--color-secondary);
}
.vlog-bg:nth-child(even) {
	background-color: #f3f5f9;
}



.blogNav {}
.blogNav.relative {position: relative;}
.blogNav.fixed {position: fixed; z-index: 999; width: 100%; top: 58px;}

/* S: Floating blogNav */
#floating-blogNav {
	position: absolute;
    width: 100%;
    z-index: 2;
}
#floating-blogNav.show {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
	z-index: 95;
	transition: .3s;
}
@media (max-width: 992px) {
    #floating-blogNav.show {
    }
}
/* E: Floating blogNav */



.vlogNav {}
.vlogNav.relative {position: relative;}
.vlogNav.fixed {position: fixed; z-index: 999; width: 100%; top: 58px;}

/* S: Floating vlogNav */
#floating-vlogNav {
	position: absolute;
    width: 100%;
    z-index: 2;
}
#floating-vlogNav.show {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
	z-index: 95;
	transition: .3s;
}
@media (max-width: 992px) {
    #floating-vlogNav.show {
    }
}
/* E: Floating vlogNav */


.forumNav {}
.forumNav.relative {position: relative;}
.forumNav.fixed {position: fixed; z-index: 999; width: 100%; top: 58px;}

/* S: Floating forumNav */
#floating-forumNav {
	position: absolute;
    width: 100%;
    z-index: 2;
}
#floating-forumNav.show {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
	z-index: 95;
	transition: .3s;
}
@media (max-width: 992px) {
    #floating-forumNav.show {
    }
}
/* E: Floating forumNav */






/* S: Gallery */
.justified-gallery .gallery-item {
	transition: .4s;
}
.justified-gallery > a .caption {
	display: block;
	position: absolute;
	bottom: -50px;
	opacity: 0;
	left: 0;
	right: 0;
	text-align: center;
	background-color: var(--color-primary);
	transition: .4s;
}
.justified-gallery > a:hover .caption {
	bottom: 0;
	opacity: 1;
}
.gallery .gallery-item-wrapper,
.gallery .gallery-item {
	position: relative;
}
.gallery .gallery-item-wrapper .title {
	position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
	visibility: hidden;
	
	background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    line-height: 24px;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 1px;
}
.gallery .gallery-item-wrapper:hover .title {
	opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.gallery .gallery-item-wrapper .share {
	position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
	visibility: hidden;
}
.gallery .gallery-item-wrapper:hover .share {
	opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
/* E: Gallery */








/* S: Slick Slide with video */

.main-slider {
	position: relative;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 1.2s ease;
}
.main-slider.slick-initialized {
	opacity: 1;
	visibility: visible;
}
.main-slider .slick-slide,
.main-slider .slick-slide::before,
.main-slider .slick-slide .caption {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.main-slider .slick-slide::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
	/*background: #fff;
    opacity: .1;*/
}
.main-slider .slick-slide {
	height: 85vh;
	height: calc(100vh - 40px - 28px);

	position: relative;
	background-size: cover;
	background-position: center;
	transition: all 0.8s ease;
	background-repeat: no-repeat;
}
.main-slider .slick-slide video {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
}
.main-slider .slick-slide iframe {
	position: relative;
	pointer-events: none;
}

/*
.main-slider .slick-slide.slick-active .caption {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
*/
.main-slider .slick-slide .caption {
	color: #fff;
	width: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	z-index: 2;
	height: 100%;
}



.main-slider .slick-slide .caption:after {
    /*background: rgba(100, 161, 67, 0.74);*/
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
}
.main-slider .slick-slide .caption .inner {
	width: 100%;
	z-index: 3;
}
.slide-descriere p:last-child {
	margin-bottom: 0;
}
.main-slider .slick-slide h1,
.main-slider .slick-slide .h1 {
	margin: 0;
}
@media (max-width: 992px) {
    .main-slider .slick-slide h1,
    .main-slider .slick-slide .h1 {
        font-size: 2rem;
        margin: 0;
    }
    
    .main-slider .slick-slide h4,
    .main-slider .slick-slide .h4 {
        font-size: 1.3rem;
        margin: 0;
    }
}

.main-slider .slick-next, .main-slider .slick-prev {
	z-index: 4;
	width: auto;
	height: auto;
}
.main-slider .slick-next:before, .main-slider .slick-prev:before {
	font-size: 2rem;
	color: #000;
}
.main-slider .slick-prev {
	left: 10px;
}
.main-slider .slick-next {
	right: 10px;
}




.flip-clock-wrapper {
    margin: 0;
    margin-left: -2px;
    display: inline-block;
    width: auto;
}
.flip-clock-wrapper:after {
    clear: both;
}
.flip-clock-wrapper ul {
	margin: 0 2px;
	width: 24px;
	height: 40px;
	padding: 0;
}
.flip-clock-wrapper ul li a div div.inn {
	line-height: 40px;
}
.flip-clock-wrapper ul,
.flip-clock-wrapper ul li {
	line-height: 24px;
}
.flip-clock-wrapper ul,
.flip-clock-wrapper ul li a div,
.flip-clock-wrapper ul li a div div.inn {
	font-size: 24px;
}
.flip-clock-divider {
	height: 40px;
	width: 10px;
}
.flip-clock-divider .flip-clock-label {
	display: none;
}
.flip-clock-dot {
	height: 5px;
	width: 5px;
	left: 3px;
}
.flip-clock-dot.top {
    top: 10px;
}
.flip-clock-dot.bottom {
    bottom: 10px;
}

/* E: Slick Slide with video */




/* S: Swiper */
.swiper-pagination-bullet-active {
    background: var(--color-primary);
    color: var(--color-primary);
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {transform: translateX(0%);}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--color-primary-hover);
}


/*.logo-carousel .swiper-slide {
	width: auto;
	margin-right: 5px!important;
}*/
.logo-carousel .swiper-slide img {
	max-height: 75px;
	padding: 20px;/**/
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: .3s;
}
.logo-carousel .swiper-slide img:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.proiecte-carousel .swiper-button-prev,
.proiecte-carousel .swiper-button-next {
	/*right: 15px;*/
    top: -55px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0;
    font-size: 18px;
    color: #000;
    text-shadow: none;
}
.proiecte-carousel .swiper-button-prev:hover,
.proiecte-carousel .swiper-button-next:hover {
	color: var(--color-primary);
}
.proiecte-carousel .inner {
	padding: 15px;
}

.image-carousel .swiper-button-next,
.image-carousel .swiper-button-prev {
	background: none;
	font-size: 36px;
	width: 36px;
    height: 36px;
    line-height: 36px;
	margin-top: -18px;
	transition: .4s;
	outline: none;
	color: #fff;
	text-shadow: 0 0 5px var(--color-primary);
}
.image-carousel .swiper-button-next {
	right: 10px;
	text-align: right;
}
.image-carousel .swiper-button-prev {
	left: 10px;
	text-align: left;
}

.logo-carousel {
	padding: 0 30px;
}
.logo-carousel .swiper-button-next, .logo-carousel .swiper-button-prev {
	color: #000;
	margin-top: -20px;
}
.logo-carousel .swiper-button-prev {
	left: 0;
}
.logo-carousel .swiper-button-next {
	right: 0;
}

/* E: Swiper */








/* S: Responsive iframe video */
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	margin-bottom: 20px;
}
.video-wrapper>iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}
/* E: Responsive iframe video */

/* S: Animations */
*[animated] {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 0;
}
*[animation-visible="true"],
*[animated="false"],
*[animated="0"] {
	opacity: 1!important;
}
@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}
@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
/* E: Animations */






/* S: Share */
.share > span,
.share > a {
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	text-align: center;
	padding: 0px 20px;
    padding-top: 5px;
    padding-bottom: 3px;
	color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	/*border-radius: 50%;*/
	text-align: center;
	transition: .4s;
	margin-right: 5px;
}
.share.share-dark > span,
.share.share-dark > a {
	background: #000;
	border: 1px solid #000;
}
.share > span i,
.share > a i {
	font-size: 22px;
	line-height: 22px;
	width: 22px;
}
.share > span:last-child,
.share > a:last-child {
	margin-right: 0;
}
.share.share-sm > span,
.share.share-sm > a {
	font-size: 12px;
	padding: 0px 10px;
    padding-top: 5px;
    padding-bottom: 3px;
	margin-right: 5px;
}
.share.share-sm > span:last-child,
.share.share-sm > a:last-child {
	margin-right: 0;
}
.share.share-sm > span i,
.share.share-sm > a i {
	font-size: 14px;
	line-height: 14px;
	width: 14px;
}
.share > span:hover,
.share > a:hover {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
    color: #fff;
}
/*.share .s_facebook {
	background: #3b5998;
	border-color: #324c81;
}
.share .s_pinterest {
	background: #cb2027;
	border-color: #ad1b21;
}
.share .s_whatsapp {
	background: #29a71a;
	border-color: #238e16;
}
.share .s_twitter {
	background: #1da1f2;
	border-color: #1da1f2;
}*/
/* E: Share */




/* S: Blog+Vlog */
.description-wrapper strong {
	font-weight: 700;
}
.article-image a {
	display: block;
	overflow: hidden;
}
.article-image img {
    transition: all .7s;
}
.article:hover .article-image img {
    transform: scale(1.1);
}
.article-wrapper .article {
	transition: .4s;
}
.aligncenter {
	display: block;
    margin: 10px auto 10px auto;
}
.progress-bar {
	height: 5px;
	background: transparent;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 99;
}
.progress-bar div {
	background: var(--color-primary);;
	position: absolute;
	width: 0%;
	height: 100%;
	box-shadow: 0 0 5px #333;
	transition: .2s;
}
.home-categories > div > h3 {
	border-bottom: 2px solid #000;
}
.video-thumb {
	position: relative;
	height: 100%;
	min-height: 140px;
	cursor: pointer;
}
.video-thumb .play-icon {
    background: rgba(0,0,0, .2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 40px;
    color: var(--color-primary);
	transition: .4s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-thumb:hover .play-icon {
    background: rgba(0,0,0, .5);

}

.video-thumb-view-details {
	position: relative;
	height: 100%;
	/*min-height: 140px;*/
	cursor: pointer;
}
.video-thumb-view-details .play-icon {
    background: rgba(0,0,0, .2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 40px;
    color: var(--color-primary);
	transition: .4s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-thumb-view-details:hover .play-icon {
    background: rgba(0,0,0, .5);

}
/* E: Blog+Vlog */ 


/* S: Clienti Grid */ 
.clients-grid {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.clients-grid li {
	flex: 0 0 25%;
	max-width: 25%;
	text-align: center;
}
.clients-grid li + li + li + li + li{
	border-top: 1px solid #e3ebee;
}
.clients-grid li:nth-child(4n+2) {
	border-left: 1px solid #e3ebee;
	border-right: 1px solid #e3ebee;
}
.clients-grid li:nth-child(4n+3) {
	border-right: 1px solid #e3ebee;
}

.clients-grid li img {
	padding: 30px;
	filter: grayscale(100%);
	transition: .4s;
}

.clients-grid li:hover img {
	filter: grayscale(0);
}
/* E: Clienti Grid */ 

.g-recaptcha {
	transform-origin: 0 0;
}
.pswp__button--share {
	display: none;
}
/* S: Responsive */
/*@media (max-height: 850px) {
	header > div {
		height: auto;
	}
}*/

@media (max-width: 992px) {
    .parallax {
        height: 100%;
        width: 100%;
        padding: 30px 0;
        background-attachment: initial;
    }
    
    .banner.banner-cms {
        min-height: 200px;
    }
    .banner {
		background-attachment: inherit;
		background-size: cover;
	}
    
	.main-slider .slick-slide {
		height: calc(100vh - 80px - 58px);
	}
	.swiper-button-next,
	.swiper-button-prev {
		/*display: none;*/
	}
	.mobile {
		display: block;
	}
	.page-wrapper {
		margin-left: 0;
		background: var(--color-primary);
	}
    
	/*.main-menu .sub-menu,
	.menu-left .main-menu .sub-menu {
		display: none;
		position: relative;
		width: 100%;
		left: 0;
		visibility: visible;
		opacity: 1;
		text-align: center;
	}
	.header-mobile .socials a {
		margin-left: 5px;
		margin-right: 0;
	}*/
	.blog-sidebar {
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
		overflow: auto;
		background: #fff;
		width: 300px;
		max-width: calc(100% - 50px);
		z-index: 99;
		padding: 40px 10px;
		-webkit-overflow-scrolling: touch;
		margin-right: -300px;
	}
    .vlog-sidebar {
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
		overflow: auto;
		background: #fff;
		width: 300px;
		max-width: calc(100% - 50px);
		z-index: 99;
		padding: 40px 10px;
		-webkit-overflow-scrolling: touch;
		margin-right: -300px;
	}
	*[animated] {
		opacity: 1!important;
	}
	.main-slider .caption h1{
		font-size: 30px;
	}
	.main-slider .slick-slide .caption{
		padding: 10px;
	}
	.main-slider .slick-slide .caption:after {
		width: 100%;
	}
}

/* E: Responsive */


/* S: t2-header */
body.t2-header header {
	position: sticky;
	position:-webkit-sticky;
	top: 0;
	z-index: 98;
	padding: 5px 0;
	transition: .4s;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0, .5);
}
.acasa.t2-header header {
	position: fixed;
	width: 100%;
	background: none;
	box-shadow: none;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
    /* background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
.acasa.t2-header header.fixed {
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0, .5);
}
body.t2-header header .logo img {
	width: 125px;
	transition: .4s;
}
body.t2-header header.fixed .logo img {
	width: 100px;
}

body.t2-header .main-slider .slick-slide {
	height: 100vh!important;
}
body.t2-header .main-slider .slick-slide::before {
	background: ##ffffff21;/**/
}
@media (max-width: 992px) {
	body.t2-header .main-slider .slick-slide {
		height: calc(100vh - 58px)!important;
	}
}
/* E: t2-header */



/* S: t3-header */
body.t3-header header {
	position: sticky;
	position:-webkit-sticky;
	top: 0;
	z-index: 98;
	/*margin-bottom: -30px;*/
	transition: .15s;
	padding: 0;
	background: none;
	box-shadow: none;
}
.acasa.t3-header header {
	/*position: fixed;
	margin-bottom: 0;*/
}
body.t3-header header .logo img {
	/*width: auto;
	height: 64px;*/
	transition: .4s;
    max-width: 230px!important;
}

@media (max-width: 992px) {
    body.t3-header header .logo img {
        max-height: 36px!important;
    }
}



.color-menu {
    /*background: var(--color-primary)!important;*/
}
body.t3-header header.color-menu {
    top: -101px;
}
body.t3-header .navbar .navbar-nav .nav-link {
    color: var(--color-body)!important;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all .4s;
	padding: 20px 15px;
}
body.t3-header .navbar .navbar-nav .nav-link:hover{
    color: var(--color-secondary)!important;
}
body.t3-header .navbar .navbar-nav .active .nav-link {
    color: var(--color-secondary)!important;
}
body.t3-header .main-slider .slick-slide {
	height: 81vh!important;
}
body.t3-header .main-slider .slick-slide::before {
	/*background: #fff;*/
}
@media (max-width: 992px) {
	body.t3-header .main-slider .slick-slide {
		height: calc(100vh - 58px)!important;
	}
}
/* E: t3-header */





/* S: eSHOP Navbar */
.menu-wrapper {
    position: initial;
}
.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    font-size: 1rem;
}
.menu > li > a {
    padding: 20px 8px 18px 8px;
    display: block;
    border-bottom: 2px solid transparent;
    transition: .3s;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
}
.menu > li:hover > a,
.menu > li.active > a {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}
.menu > li:not(.megamenu) {
    position: relative
}
.menu > li > div {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--medium-grey-color);
    border-bottom: 1px solid var(--medium-grey-color);
    z-index: 9;
    min-width: 300px;
}
.menu > li:hover > div {
    display: block;
}

.producatori-to-search > li {
    flex: 0 0 16.66%;
}
.producatori-to-search > li a {
    display: block;
}
.search-box input::placeholder {
    font-size: 1rem;
    font-weight: 700;
}
.nav-submenu a {
    color: var(--color-primary);
    line-height: 32px;
}
.nav-submenu a:hover {
    color: var(--color-secondary);
}

.nav-submenu h6 a{
    font-size: 0.9rem!important;
}
/* E: eSHOP Navbar */




.eShopSearchPanel {
    height: calc(100% - 86px)!important;
}
@media (max-width: 992px) {
	.eShopSearchPanel {
		height: calc(100% - 56px)!important;
	}
}

#searchBoxInput-new input:focus{
    outline: none;
    box-shadow: none;
}



/* S: eShop mobile */
    /* S: Mobile menu */
    .js-topPushNav {
        position: relative;
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .pushNav {
        width: 100%;
        height: 100vh;
        padding: 0;
        margin: 0;
        list-style-type: none;
        position: absolute;
        top: 0;
        z-index: 100;
        background: #fff;
        
        transition: ease-in-out 0.5s;
        overflow: hidden;
        left: -1000px;
    }
    .pushNav_level.isOpen {
        left: 0;
        overflow: initial;
    }
    .closeLevel,
    .openLevel {
        cursor: pointer;
    }
    /* E: Mobile menu */
/* E: eShop mobile */



#sideBarForm .collapse > div {
    overflow-y: auto;
}

#sideBarForm [data-bs-toggle="collapse"]:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    content: "\f078";
    float: right;
    margin-left: 10px;
}
#sideBarForm [data-bs-toggle="collapse"][aria-expanded="true"]:after {
    content: "\f077";
}




/* S: Product box */
.product-image-wrapper {
    position: relative;
}

.label-wrapper {
    position: absolute;
    top: 10px;
    left: 5px;
}
.label-wrapper .badge {
    display: block;
    padding: 5px;
    border-radius: 50px;
}
@media (max-width: 992px) {
    .label-wrapper .badge {
        font-size: 70%;
        padding: 3px;
        border-radius: 25px;
        margin: 2px!important
    }
}


.label-wrapper .badge-default {
    background-color: var(--medium-grey-color);
}

.badge-standard {
    color: #fff;
    background-color: #9c9c9c;
}
.badge-cadou {
    color: #fff;
    background-color: #000;
    position: absolute;
    bottom: 0!important;
}


.product-box .video-thumb {
    font-size: 24px;
}


.product-box {

}
.product-box .product-price {
    /*margin: 5px 0;
    font-weight: 700;
    font-size: 0.85rem;*/
}
.product-box .product-price .old-price {
    text-decoration: line-through;
    /*font-weight: 400;*/
}
.product-name a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 64px;
    white-space: initial;
    color: #000;
}
.product-name a:hover {
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .product-name a {
        height: 56px;
        font-size: 0.8rem;
        -webkit-line-clamp: 5;
    }
}

.produse_cadou_lista {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
/* E: Product box */






/* S: Review */
.review-stars {
    color: var(--primary-color);
    font-size: 12px;
}
.review-stars.big {
    font-size: 14px;
}
.review-stars.bigger {
    font-size: 18px;
}

.review-stars .sad {
    color: var(--muted-color);
}

div.stars {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
}
input.star {
    display: none;
}
label.star {
    float: right;
    font-size: 28px;
    color: var(--dark-grey-color);
    transition: all .2s;
    cursor: pointer;
    margin-right: 5px;
}
label.star:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    content: "\f005";
}
label.star:hover,
label.star:hover ~ label.star:before,
input.star:checked ~ label.star:before {
    content: '\f005';
    font-weight: 700;
    color: var(--main-color);
    transition: all .25s;
}
label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}
/* E: Review */



/* S: Product page */
.product-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 75px;
}

.image-wrapper {
    display: flex;
}
.image-wrapper .product-image {
    width: 100%;
    order: 2;
}
.image-wrapper .product-image.with-thumbs {
    width: calc(100% - 50px);
}

@media (max-width: 576px) {
    #productDetailSlider.product-image.with-thumbs {
        width: 100%;
    }
}

.thumbs {
    order: 1;
    width: 50px;
    padding-right: 10px;
}
.thumbs a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: .2s;
}
.thumbs a:hover,
.thumbs a.active {
    border-color: var(--main-color)!important;
}

.thumbs a + a {
    margin-top: 5px;
}

.video-thumb {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 48px;
    cursor: pointer;
    z-index: 3;
    color: var(--primary-color)!important;
}

.addToBagWrapper > div {
    height: 50px;
}
.addToBagWrapper > div input,
.addToBagWrapper > div > div {
    /*width: 100%;*/
    border: none;
    background: #fff;
    max-width: 40px;
    color: var(--secondary-color);
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
}
.addToBagWrapper button {
    height: 50px;
    /*flex: 0 0 calc(100% - 70px - 70px - 20px);*/
    flex:100%;
    max-width: 300px;
    margin-left: 5px;
    margin-right: 5px;
}


.wishlist-icon {
    z-index: 3;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}
.wishlist-button:hover,
.wishlist-button.added,
.wishlist-icon:hover,
.wishlist-icon.added {
    color: #000;
}
.wishlist-button:not(.added) .scoate,
.wishlist-icon:not(.added) .scoate {
    display: none;
}
.wishlist-button.added .adauga,
.wishlist-icon.added .adauga {
    display: none;
}
a.wishlist-icon {
    height: 50px;
}
a.wishlist-icon.resetToDefault {
    top: inherit; 
    right: inherit; 
    position: relative;
    font-size: inherit; 
    height: inherit;
}



/* S: Urgency */
.urgency {
	position: fixed;
	left: 30px;
	bottom: 30px;
	width: auto;
	max-width: 100%;
    background: var(--light-grey-color);
    border: 1px solid var(--medium-grey-color);
	color: var(--content-color);
	padding: 10px;
	box-sizing: border-box;
	line-height: 14px;
	text-align: left;
    z-index: 12;
	display: none;
}

.urgency.urgency-quickview {
	position: absolute;
	z-index: 99;
}

.urgency-close {
	font-size: 12px;
	line-height: 12px;
	color: var(--content-color);
	position: absolute;
	right: -10px;
	top: -10px;
	width: 20px;
	height: 20px;
	text-align: center;
	background: var(--light-grey-color);
	padding: 3px;
	cursor: pointer;
}

.urgency .urgency-content > div + div {
	margin-top: 5px;
	padding-top: 5px;
	border-top: 1px dashed var(--medium-grey-color);
}
/* E: Urgency */

/* S: Floating product bar */
#floating-product {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
	z-index: 11;
	background: #000;
    color: #fff;
	transition: .3s;
    visibility: hidden;
    opacity: 0;
}
#floating-product.show {
    top: 94px;
    visibility: visible;
    opacity: 1;
}
#floating-product .wishlist-icon i {
    font-size: 1rem;
}
/* E: Floating product bar */

/* S: Variants */
.customVatiante,
#sizeSelector {
}

.customVatiante .table-element,
#sizeSelector .table-element {
	width: 47px;
	height: 50px;
	display: inline-block;
}

.customVatiante .switch input[type=radio] {
	display: none;
}

.customVatiante .switch {
    cursor: pointer;
}

.customVatiante .switch.selected, 
.customVatiante .switch.selected:hover {
	border: solid 1px var(--color-secondary)!important;
	font-weight: 700;
	background: var(--color-secondary);
	color: #fff;
}

.customVatiante .switch.inactive {
	color: var(--bs-gray-700)!important;
	text-decoration: line-through;
    background: var(--bs-gray-200)!important;
    opacity: 0.4;
}

.customVatiante .switch.inactive.selected {
	color: #ddd;
	border: solid 2px #dddddd;
	font-weight: 400;
}
.customVatiante .switch:hover {
	background: var(--bs-gray-200);
}




.customVatiante .dropdownSelector {
	position: relative;
}
.customVatiante .dropdownSelector .dropdown-selected {
	cursor: pointer;
}
.customVatiante .dropdownSelector .dropdown-selected.selected-option {
	font-weight: bold;
}

.customVatiante .dropdownSelector .dropdown-selected:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f0dd";
    position: absolute;
    right: 15px;
    top: 15px;
}
.customVatiante .dropdownSelector.open .dropdown-selected:after {
	font-family: "Font Awesome 5 Pro";
    content: "\f0de";
    position: absolute;
    right: 15px;
    top: 23px;
}

.customVatiante .dropdownSelector .dropdown-selector-droplist-wrapper {
	max-height: 250px;
	z-index: 99;
	overflow-y: auto;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	display: none;
}
.customVatiante .dropdownSelector.open .dropdown-selector-droplist-wrapper {
	display: block;
}
.customVatiante .dropdownSelector .dropdown-selector-droplist {
	margin: 0;
	padding: 0;
}


.customVatiante .dropdownSelector .dropdown-selector-droplist .dropdown-selector-droplist-option {
	cursor: pointer;
}
.customVatiante .dropdownSelector .dropdown-selector-droplist .dropdown-selector-droplist-option.selected {
	background: var(--bs-gray-500)!important;
	font-weight: bold;
}
.customVatiante .dropdownSelector .dropdown-selector-droplist .dropdown-selector-droplist-option.inactive {
	/*color: var(--bs-gray-700)!important;
	text-decoration: line-through;*/
}
.customVatiante .dropdownSelector .dropdown-selector-droplist .dropdown-selector-droplist-option:hover {
	background: var(--bs-gray-200)!important;
}

.customVatiante .dropdownSelector .dropdown-selector-droplist .dropdown-selector-droplist-option:first-child {
	border-top: 0;
}

.variantSelectorTitle {
	margin: 0;
	display: block;
}
/* E: Variants */
/* E: Product page */



/* S: AJAX Load Products */
.ajax-product-slider-wrapper {
    position: relative;
}
.ajax-product-slider-wrapper.loading {
    min-height: 150px;
    opacity: .8;
}
.ajax-product-slider-wrapper.no-products {
    opacity: .7;
}
.ajax-product-slider-wrapper .no-ajax-products {
    
}
/* E: AJAX Load Products */



header.onlyLogo {position: inherit!important;}



/* Styles for signature plugin v1.2.0. */
.kbw-signature {
	display: inline-block;
	border: 1px solid #a0a0a0;
	-ms-touch-action: none;
    width: 300px; height: 150px;
}
.kbw-signature-disabled {
	opacity: 0.35;
}

