@charset "utf-8";

:root {
	--main-red: #C00D0D;
	--main-yellow: #ebc002;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f9f9f9;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ebc002;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #C00D0D;
}

@font-face {
    font-family: 'BadaBoom BB';
    src: url('BadaBoomBB.woff2') format('woff2'),
        url('BadaBoomBB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,*:before,*:after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	outline:none;
}
html {overflow-y: scroll; overflow-x: hidden; min-height:100%;margin: 0;}

body{
	min-height:100%;
	font-family:"Poppins", Calibri, Arial, Helvetica, sans-serif;
	font-size:14px;
	background-color: #f9f9f9;
	margin:0px;
	padding:0px;
	color:#2F1A1A;
	overflow-x: hidden;
}

select, input, textarea, button{
	font-family:"Poppins", Calibri, Arial, Helvetica, sans-serif;
}
a{
	text-decoration:none;
	color:#000;
}
.container{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	position:relative;
}
.wow{
	visibility:hidden;
}
.hello,.forbidden{
    max-width: 40%;
    height: auto;
    line-height: 26px;
    position: fixed;
    z-index: 9999999999;
    bottom: 8px;
    right: 8px;
    padding: 30px 150px 30px 30px;
    margin: auto;
    text-align: left;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    border: 4px solid #fff;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
}
.forbidden::after,.hello::after{
    content: "";
    display: block;
    width: 120px;
    height: 200px;
    background-image: url(../../Images/superf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: absolute;
    bottom: 8px;
    right: -15px;
}
.hello{
	color: #000;
	background-color: #ebc002;
	background-image: linear-gradient(0deg, #ebc002 0%, #fee240 100%);
}
.forbidden{
	color: #fff;
	background-color: #C00D0D;
	background-image: linear-gradient(90deg, #C00D0D 0%, #900 100%);
}



.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
	font-size: 18px;
	width: 800px;
}
.popup em{
	font-size: 14px;
	color: #999;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
	font-size: 26px;
}

.close-button:hover {
    color: red;
}


/* --------------------------------------------------- curtains --------------------------------------------------- */
.curtain-left{
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 99999999;
	top: 0;
	left: 0;
	background-image: url(../../Images/left-curtain.png);
	background-size: cover;
	background-position: center center;
}
.curtain-right{
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 99999999;
	top: 0;
	right: 0;
	background-image: url(../../Images/right-curtain.png);
	background-size: cover;
	background-position: center center;
}
.curtain-leave-left{
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 99999999;
	top: 0;
	left: 0;
	background-image: url(../../Images/left-curtain.png);
	background-size: cover;
	background-position: center center;
	transform: translateX(-100%);
}
.curtain-leave-right{
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 99999999;
	top: 0;
	right: 0;
	background-image: url(../../Images/right-curtain.png);
	background-size: cover;
	background-position: center center;
	transform: translateX(100%);
}
.curtain-leave-left-enter{
	transform: translateX(0);
	transition: 0.6s cubic-bezier(.57,.15,.79,.57) all;
}
.curtain-leave-right-enter{
	transform: translateX(0);
	transition: 0.6s cubic-bezier(.57,.15,.79,.57) all;
}


/* --------------------------------------------------- intro --------------------------------------------------- */
.intro-holder{
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	background-color: #ebc002;
	background-image: linear-gradient(0deg, #ebc002 0%, #fee240 100%);
}
.intro-mob{
	display: none;
}
.intro-content{
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(../../Images/intro-content.png);
	position: absolute;
	top:0;
	left: 0;
	z-index: 45;
}
.intro-overlay{
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(../../Images/intro-overlay.png);
	position: absolute;
	top:0;
	left: 0;
	z-index: 50;
}

.intro-title{
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(../../Images/intro-title.png);
	position: absolute;
	top:0;
	left: 0;
	z-index: 46;
}

.intro-subtitle{
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(../../Images/intro-subtitle.png?v=2.1);
	position: absolute;
	top:0;
	left: 0;
	z-index: 46;
}

.hero-box{
    position: absolute;
    z-index: 60;
    width: 26vw;
    height: 50vh;
}
.hero-box-tl{
    top: 3vh;
    left: 0;
}
.hero-box-tr{
    top: 3vh;
    right: 0;
}
.hero-box-bl{
    bottom: 3vh;
    left: 0;
}
.hero-box-br{
    bottom: 3vh;
    right: 0;
}
.hero-box-img-holder{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.hero-box-img-left{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center left;
}

.hero-box-img-right{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center right;
}

.intro-btn-holder{
    width: 29vw;
    height: 32vh;
    position: absolute;
    top: 20vh;
    bottom: 0;
    right: -27vw;
    left: 0;
    margin: auto;
    z-index: 60;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.intro-btn-url{
	display: block;
	width: 48%;
}
.intro-btn{
	width: 100%;
}

@-webkit-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@-moz-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
 .scroll-btn {
	display: block;
	position: absolute;
    bottom: 12vh;
    right: 30vw;
    margin: auto;
	text-align: center;
	 z-index: 60;
	 width: 160px;
}
.scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 12px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite;
}










/* --------------------------------------------------- new intro --------------------------------------------------- */

.intro-box{
		width: 100%;
		max-width: 1200px;
		margin: 120px auto 75px auto;
		height: 400px;
		border-radius: 30px;
		background-color: #ffe35a;
		background-image: linear-gradient(-135deg, #ffe35a 0%, #eabf01 100%);
		position: relative;
	}
	.intro-box-image{
		position: absolute;
		height: 110%;
		left: -2%;
		bottom: 0;
	}
	.intro-box-content{
		width: 58%;
		margin-left: 40%;
		height: 100%;
		padding: 25px 0;
	}
	.intro-box-title{
		width: 80%;
		margin: 15px auto;
		display: block;
	}
	.intro-box-desc{
		width: 90%;
		text-align: center;
		margin: 15px auto 25px auto;
		font-weight: 700;
		font-size: 15px;
	}
	.intro-box-button{
		width: 300px;
		height: 54px;
		line-height: 50px;
		border-radius: 10px;
		text-align: center;
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		margin: auto;
		display: block;
		border: 3px solid #fff;
		background-color: #c00d0d;
		background-image: linear-gradient(-135deg, #c00d0d 0%, #ef0000 100%);
	}
	
	.intro-box-small{
		width: 48%;
		height: auto;
		border-radius: 30px;
		background-color: #ffe35a;
		background-image: linear-gradient(-135deg, #ffe35a 0%, #eabf01 100%);
		position: relative;
	}
	
	.intro-box-small-image{
		position: absolute;
		width: 43%;
		left: 0%;
		bottom: 0;
		border-bottom-left-radius: 30px;
	}
	.intro-box-small-content{
		width: 52%;
		margin-left: 45%;
		padding: 10px 0;
	}
	.intro-box-small-title{
		font-size: 18px;
		line-height: 24px;
		margin: 10px 0;
	}
	.intro-box-small-desc{
		font-size: 14px;
		font-weight: 500;
		min-height: 215px;
		width: 100%;
	}
	.intro-box-small-button{
		width: 100%;
		height: 44px;
		line-height: 44px;
		border-radius: 10px;
		text-align: center;
		color: #fff;
		font-size: 15px;
		font-weight: 700;
		margin: 10px auto;
		display: block;
		background-color: #c00d0d;
	}





/* --------------------------------------------------- mesterro badge --------------------------------------------------- */
.mesterro-badge-holder{
	width: 230px;
	height: 60px;
	position: fixed;
	bottom: 35px;
	right: 65px;
	z-index: 99;
}
.mesterro-badge-btn{
	width: 60px;
	position: absolute;
	right: 32px;
	top: 0;
	transform-origin: center center;
	transition: 0.3s ease-in-out all;
}
.mesterro-badge-white{
	width: 190px;
	height: 46px;
	border-radius: 25px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 7px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	transform: scaleX(0);
	transform-origin: center right;
	transition: 0.3s ease-in-out all;
}
.mesterro-badge-text{
	color: var(--main-color);
	height: 36px;
	line-height: 18px;
	font-size: 12px;
	font-weight: 700;
	margin-left: 15px;
	margin-top: 4px;
}
.mesterro-badge-gray{
	width: 80px;
	height: 46px;
	border-radius: 25px;
	background-color: #3c3c3b;
	position: absolute;
	right: 0;
	top: 7px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	transform: scaleX(0);
	transform-origin: center left;
	transition: 0.3s ease-in-out all;
}
.mesterro-badge-arrow{
	height: 16px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 13px;
	margin: auto;
}
.mesterro-badge-holder:hover .mesterro-badge-white{
	transform: scaleX(1);
}
.mesterro-badge-holder:hover .mesterro-badge-gray{
	transform: scaleX(1);
}
.mesterro-badge-holder:hover .mesterro-badge-btn{
	transform: scale(1.1,1.1);
}

/* --------------------------------------------------- menu --------------------------------------------------- */
.menu-holder{
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.menu-container{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	height: 100%;
	position: relative;
}
.menu-holder .logo{
	height: 45px;
	position: absolute;
	top: 3px;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: 0.3s ease-in-out all;
}
.menu-button-holder{
	width: 100px;
	height: 36px;
	background-color: #c00d0d;
	border-radius: 8px;
	position: relative;
	transition: 0.3s ease-in-out all;
	color: #fff;
	line-height: 36px;
	padding-left: 40px;
	cursor: pointer;
}
.menu-button-holder-icon{
	width: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	margin: auto;
	transition: 0.3s ease-in-out all;
}


.menu-options{
	height: 36px;
	width: 140px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transition: 0.3s ease-in-out all;
}
.menu-option-holder{
	width: 36px;
	height: 36px;
	background-color: #c00d0d;
	border-radius: 8px;
	position: relative;
	transition: 0.3s ease-in-out all;
}
.menu-option-icon{
	width: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	transition: 0.3s ease-in-out all;
}
.menu-account-holder{
	height: 36px;
	width: 220px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 150px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.menu-account-icon{
	width: 36px
}
.menu-account-name{
	width: 175px;
	font-size: 14px;
	line-height: 15px;
	font-weight: 500;
	text-align: left;
	color: #000;
}



.menu-content-holder{
	width: 100%;
	height: 100vh;
	position: fixed;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 97;
	transform: translateY(-100vh);
	transition: 0.6s cubic-bezier(.84,0,.04,1) all;
	overflow: hidden;
}
.menu-content-holder-open{
	transform: translateY(0);
}

.menu-content-inner{
	height: calc(100vh - 180px);
	margin-top: 130px;
	position: relative;
}
.menu-content-box{
	height: 100%;
	width: 45%;
	padding: 35px;
}
.menu-content-box-image{
	padding: 0;
}
.menu-content-image{
	width: 100%;
	height: 100%;
	background-image: url(../../Images/backgrounds/man5.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.menu-content-item-holder{
	width: 100%;
	height: 420px;
	max-height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
}
.menu-content-item{
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 23px;
	font-weight: 600;
	padding: 0 10px;
	border-bottom: 1px solid #000;
	color: #000;
}



.newmenu-content-holder{
	width: 400px;
	height: 100vh;
	position: fixed;
	background-color: #fff;
	border-right: 1px solid #eee;
	top: 0;
	left: 0;
	z-index: 101;
	transform: translateX(-400px);
	transition: 0.6s cubic-bezier(.84,0,.04,1) all;
	overflow: hidden;
	padding-top: 50px;
}
.newmenu-content-holder-open{
	transform: translateX(0);
}

.newmenu-content-item{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	height: 42px;
	line-height: 42px;
	padding: 0 10px;
	border-bottom: 1px solid #eee;
}
.newmenu-content-icon{
	height: 26px;
	margin: 8px 12px;
}
.newmenu-content-text{
	width: calc(100% - 50px);
	font-size: 16px;
	font-weight: 600;
	color: #000;
}
.newmenu-content-item:hover{
	background-color: #c00d0d;
}
.newmenu-content-item:hover .newmenu-content-icon{
	filter: invert(100%);
}
.newmenu-content-item:hover .newmenu-content-text{
	color: #fff;
}
.newmenu-userdata{
	width: 100%;
	padding: 0 20px;
	margin-bottom: 15px;
	margin-top: -30px;
}


/* --------------------------------------------------- cart --------------------------------------------------- */
.cart-amount{
	position: absolute;
    top: -4px;
    right: -26px;
    left: 0;
    margin: auto;
    z-index: 50;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background-color: var(--main-yellow);
    border-radius: 50%;
    transition: 0.3s cubic-bezier(.33,-0.46,.48,1.43) all;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 30%);
    font-weight: 500;
}
.cart-amount-anim{
	transform: scale(0,0);
	transition: 0.3s cubic-bezier(.33,-0.46,.48,1.43) all;
}
.cart-box{
	position: fixed;
	top: 0;
	right: 0;
	width: 620px;
	height: 100%;
	background-color: #fafffa;
	z-index: 9999999;
	transform: translateX(100vw);
	transition: 0.6s cubic-bezier(.84,0,.04,1) all;
}
.cart-box-open{
	transform: translateX(0);
	transition: 0.6s cubic-bezier(.84,0,.04,1) all;
}
.cart-box-inner{
	margin-top: 100px;
	padding: 10px;
	height: calc(100% - 170px);
}
.cart-box-container{
	padding: 10px;
	height: calc(100% - 150px);
	overflow-y: auto;
	overflow-x:visible;
}
.cart-title{
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	padding: 0 10px;
}
.cart-box-row{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
	padding: 20px 8px;
	background-color: #fff;
	position: relative;
	border-top: 1px solid #000;
}
.cart-box-img{
	width: 80px;
	height: 80px;
	margin-top: 5px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 10px;
}
.cart-box-info{
	width: calc(100% - 100px);
}
.cart-box-prod{
	font-size: 16px;
	font-weight: 600;
	width: 90%;
}
.cart-box-cant-holder{
	width: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 8px 0;
}
.cart-box-value-button{
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: block;
	background-color: var(--main-red);
	border: none;
	text-transform: uppercase;
}
.cart-box-value-image{
	width: 8px;
}
.cart-box-cant{
	width: 30px;
    height: 22px;
	text-align: center;
	font-size: 16px;
	border: none;
	font-weight: bold;
	color: #999;
}
.cart-box-options{
	width: 380px;
	height: 30px;
	line-height: 30px;
}
.cart-box-option{
	font-size: 14px;
	height: 30px;
	line-height: 30px;
}
.cart-box-delete{
	border: none;
	background: transparent;
	display: inline;
	height: 30px;
	line-height: 30px;
}
.cart-total{
	margin: 20px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.cart-total strong{
	color: var(--main-red);
}

.cart-box-checkout-holder{
    position: absolute;
    width: 530px;
    height: 60px;
    bottom: 15px;
    left: 0px;
    right: 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.checkout-btn{
	width: 50%;
}

.cart-overlay{
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 40;
	position: fixed;
	transform: translateY(-100vh);
	opacity: 0;
	
	background-color: rgba(130, 157, 171, 0.6);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	
	transition: 0.3s ease-in-out opacity, 0s ease-in-out transform 0.3s;
}
.cart-overlay-open{
	opacity: 1;
	transform: translateY(0);
	
	transition: 0.3s ease-in-out opacity, 0s ease-in-out transform;
}
.empty-cart-warning{
	width: 100%;
	margin-top: 50px;
	text-align: center;
	font-size: 16px;
	color: #999;
}



/* --------------------------------------------------- pages --------------------------------------------------- */
.header{
	width: 100%;
	height: 350px;
	background-image: url(../../Images/header1.jpg);
	background-position: center top;
	background-size: cover;
}
.header-overlay{
	width: 100%;
	height: 100%;
	background-image: url(../../Images/header-overlay.png?v=2);
	background-position: center bottom;
	background-size: cover;
	padding-top: 1px;
	position: relative;
	margin-top: 20px;
}
.header-title{
	width: 100%;
	text-align: center;
	font-size: 52px;
	letter-spacing: -0.5px;
	color: #fff;
	margin-top: 100px;
	margin-bottom: 0;
	font-weight: 800;
	text-transform: uppercase;
	text-shadow: 2px 2px 0px rgba(0,0,0,1);
}
.header-subtitle{
	width: 100%;
	max-width: 600px;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	text-align: center;
	margin: auto;
}
.header-hero{
	height: 300px;
	position: absolute;
	bottom: 0px;
	left: -1000px;
	right: 0;
	margin: auto;
}
.header-hero-right{
	height: 300px;
	position: absolute;
	bottom: 0px;
	right: -1000px;
	left: 0;
	margin: auto;
}

section{
	width: 100%;
	margin: 100px 0;
}
.general-btn{
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	background-color: #ffcf37;
	background-image: linear-gradient(90deg, #ffcf37 0%, #f24220 100%);
	margin: 35px 0;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: 0.3s ease-in-out all;
}
.general-btn:hover{
	background-color: #f24220;
	background-image: none;
}
.center-btn{
	margin: 25px auto;
}

.main-split-image-holder{
	width: 50%;
}
.main-split-image-holder img{
	width: 100%;
	border-radius: 25px;
}
.main-split-image-raised{
	width: 50%;
	margin-top: -150px;
}
.main-split-image-raised img{
	width: 100%;
	border-radius: 25px;
}
.main-split-content{
	width: 50%;
	padding: 0 75px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.main-title{
	width: 100%;
	text-align: left;
	font-size: 32px;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 700;
}
.main-title-separator{
	position: relative;
    height: auto;
    width: 150px;
	display: inline-block;
    margin-bottom: 45px;
}
.main-title-separator::before{
	width: 45px;
	content: "";
    height: 6px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px;
	background-color: #ffcf37;
	background-image: linear-gradient(90deg, #ffcf37 0%, #f24220 100%);
}
.main-title-separator::after{
	width: 95px;
	content: "";
    height: 6px;
    position: absolute;
    top: 0;
    left: 55px;
    border-radius: 15px;
	background-color: #ffcf37;
	background-image: linear-gradient(90deg, #ffcf37 0%, #f24220 100%);
}
.main-desc{
	font-size: 18px;
}

.main-strip{
	width: 100%;
	height: auto;
	background-color: #eee;
	position: relative;
	padding: 100px 0;
	margin-top: 200px;
}
.main-strip-hero{
	width: 360px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -420px;
	margin: auto;
}
.main-list{
	list-style-type: none;
	padding: 0;
}
.main-list li{
	margin-bottom: 15px;
}
.main-list li:before {
	color: #f24220;
    content: "\f058";
    font-family: Line Awesome Free;
    font-size: 24px;
	margin-right: 5px;
    margin-top: 1px;
    float: left;
}

.instalatori-holder{
	width: 100%;
	margin-top: 50px;
}
.instalator-box{
	width: 31%;
	margin-bottom: 35px;
}
.instalator-img{
	width: 100%;
	border-radius: 25px;
	margin-bottom: 15px;
}
.instalator-title{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.instalator-desc{
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	color: #999;
}


.produse-holder{
	width: 100%;
	margin-top: 50px;
}
.produs-box{
	width: 23%;
	margin-bottom: 35px;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 15px;
	background-color: #fff;
}
.produs-box-3{
	width: 31.333%;
	margin-bottom: 25px;
}
.produs-box-no-border{
	border: none;
	background-color: transparent;
}
.produs-img{
	width: 80%;
	height: 240px;
	margin: 25px 10%;
	border-radius: 25px;
	margin-bottom: 15px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.produs-title{
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	padding: 10px 0;
}
.produs-title-uppercase{
	text-transform: uppercase;
}
.produs-title-small{
	font-size: 14px;
	line-height: 20px;
	height: 60px;
	margin-bottom: 10px;
	overflow: hidden;
	padding: 0;
}
.produs-desc{
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	color: #999;
	margin-bottom: 25px;
}
.produs-desc-small{
	font-weight: 500;
	color: var(--main-red);
	margin-bottom: 15px;
	margin-top: 15px;
	font-style: normal;
}


.produs-main-holder{
	margin: 50px auto;
	width: 100%;
}
.produs-main-image-holder{
	min-height: 420px;
	width: 46%;
	background-color: #fff;
	border: 1px solid #eee;
}
.produs-main-image{
	height: 80%;
	width: 80%;
	display: block;
	margin: 10% auto;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.produs-main-text{
	width: 46%;
	padding: 25px;
}
.produs-main-title{
	text-align: left;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}

.review-holder{
	width: 100%;
	border-radius: 8px;
	padding: 15px;
	background-color: #fff;
	border: 1px solid #eee;
	margin-bottom: 25px;
}
.review-info-holder{
	padding: 3px 8px;
	border-bottom: 1px solid #eee;
	margin-bottom: 8px;
	font-size: 13px;
}
.review-text{
	font-size: 15px;
	padding: 8px;
}


.listare-options-holder{
	width: 100%;
}
.listare-option{
	width: 30%;
	height: 50px;
	border: 1px solid #ccc;
	font-size: 16px;
	padding: 0 8px;
}


.regulament-link{
	background-color: #fff;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 15px;
	padding: 15px;
	color: var(--main-red);
	border: 1px solid #eee;
	font-size: 18px;
	font-weight: 700;
	display: block;
}
.regulament-link:hover{
	background-color: var(--main-red);
	color: #fff;
}


/* --------------------------------------------------- shop --------------------------------------------------- */

.shop-btn{
	width: 220px;
	height: 60px;
	border: 1px solid var(--main-red);
	position: relative;
	overflow: hidden;
	background-color: transparent;
	cursor: pointer;
}
.shop-btn-left-box{
	width: calc(100% - 59px);
	height: 60px;
	line-height: 60px;
	font-size: 14px;
	letter-spacing: 0;
	color: #000;
	border-right: 1px solid var(--main-red);
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	left: 0;
	top: 0;
	z-index: 20;
	font-weight: 600;
}
.shop-btn-right-box{
	width: 60px;
	height: 60px;
	line-height: 60px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 20;
	overflow: hidden;
}
.shop-btn-main-icon{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 9px 0;
	width: 60px;
	height: 60px;
	line-height: 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--main-red);
	transition: 0.3s ease-in-out transform 0.3s;
}

.shop-btn-main-icon font{
	color: #000;
	font-size: 12px;
}
.shop-btn-sec-icon{
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 20px;
    transform: translateX(-60px);
    transition: 0.3s ease-in-out transform 0.3s;
}
.shop-btn-underlay{   
	width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
	background-color: var(--main-red);
    z-index: 19;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out transform 0.4s, 0.3s ease-in-out width;
}
.shop-btn:hover .shop-btn-main-icon{
	transform: translateX(60px);
	transition: 0.3s ease-in-out transform;
}
.shop-btn:hover .shop-btn-sec-icon{
	transform: translateX(0);
	transition: 0.3s ease-in-out transform;
}
.shop-btn:hover .shop-btn-underlay{
	transform: translateX(0);
	width: 59px;
	transition: 0.3s ease-in-out transform, 0.3s ease-in-out width 0.4s;
}


.shop-btn-overlay{
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--main-yellow);
	z-index: 21;
	transform: translateY(60px);
	transition: 0.3s ease-in-out transform;
}
.shop-btn-overlay img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 20px;
}
.shop-btn-overlay-open{
	transform: translateY(0);
}


.pagination-box{
	width: 100%;
	max-width: 550px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination-item{
	width: 36px;
	height: 36px;
	line-height: 36px;
	background-color: var(--main-red);
	color: #fff;
	text-align: center;
	font-size: 14px;
	border-radius: 50%;
	margin: 5px;
}
.pagination-item-active,.pagination-item:hover{
	background-color: var(--main-yellow);
	color: #000;
}


/* --------------------------------------------------- checkout --------------------------------------------------- */

.checkout-holder{
	width: 100%;
	padding-top: 0px;
	margin-top: 100px;
}
.checkout-box{
	width: 50%;
	padding: 25px;
	background-color: #fff;
}
.checkout-box-left{
	border-right: 1px solid #eee;
}

.checkout-logo{
	width: 75px;
	display: block;
	margin: 15px auto 35px auto;
}
.checkout-title{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	margin: 15px auto;
}
.checkout-col-1{
	width: 100%;
	margin-bottom: 25px;
}
.checkout-col-2{
	width: 49%;
	margin-bottom: 25px;
}
.checkout-end-holder{
	width: 100%;
	height: 60px;
	line-height: 60px;
}
.checkout-back{
	height: 50px;
	line-height: 50px;
	color: #000;
}



/* --------------------------------------------------- account --------------------------------------------------- */
.account-sidebar{
	width: 320px;
	background-color: #fff;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.05);
}
.account-sidebar-box{
	width: 100%;
	height: 50px;
	display: block;
	border-bottom: 1px solid #eee;
}
.account-sidebar-icon{
	height: 24px;
	margin: 13px 10px;
}
.account-sidebar-text{
	height: 50px;
	line-height: 50px;
	width: calc(100% - 44px);
	text-align: left;
	font-size: 16px;
	color: #666;
}
.account-sidebar-box:hover, .account-sidebar-box-selected{
	background-color: var(--main-red);
}
.account-sidebar-box:hover .account-sidebar-icon, .account-sidebar-box-selected .account-sidebar-icon{
	filter: invert(100%);
}
.account-sidebar-box:hover .account-sidebar-text, .account-sidebar-box-selected .account-sidebar-text{
	color: #fff;
}

.account-content{
	width: calc(100% - 360px);
	background-color: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.05);
}
.account-title{
	font-size: 24px;
	color: #000;
	margin: 0;
	margin-bottom: 10px;
}
.account-title-separator{
	margin-bottom: 25px;
}
.account-desc{
	margin-bottom: 45px;
}
.account-form{
	width: 100%;
	max-width: 400px;
}

.adresa-box{
	width: 100%;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.adresa-box-text{
	width: calc(100% - 40px);
}

.puncte-box-holder{
	width: 100%;
	max-width: 560px;
	margin: 25px auto;
}
.puncte-box{
	width: 130px;
	height: 130px;
	border-radius: 25px;
	color: #fff;
	background-color: #C00D0D;
	background-image: linear-gradient(90deg, #C00D0D 0%, #900 100%);
}
.puncte-box-number{
	width: 80px;
	height: 40px;
	line-height: 40px;
	margin: 35px auto 10px auto;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
}
.puncte-box-text{
	font-size: 12px;
	text-align: center;
}


/* --------------------------------------------------- list elements --------------------------------------------------- */
.general-list{
	width: 100%;
	list-style-type: none;
	padding: 0;
	display: table;
	color: #000;
	font-size: 14px;
}
.general-list-row{
	width: 100%;
	min-height: 75px;
	display: table-row;
	background-color: #fff;
}
.general-list-row:hover{
	background-color: #f8feff;
}
.general-list-cell{
	display: table-cell;
	vertical-align: middle;
	border-bottom: 5px solid #eee;
	padding: 10px 8px;
	text-align: center;
}

.general-list-cell-image{
	width: 90px;
}
.general-list-image{
	width: 70px;
	height: 70px;
	margin: 0 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.general-list-cell-title{
	text-align: left;
}
.general-list-cell-options{
	width: 160px;
	padding-right: 10px;
}

.option-btn{
	width: 32px;
	height: 32px;
	position: relative;
	border-radius: 3px;
	text-align: center;
	border: none;
}
.option-btn img{
	width: 18px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
/* --------------------------------------------------- forms --------------------------------------------------- */
.general-label{
	font-size: 12px;
	color: #888;
	font-weight: 700;
	margin-top: 25px;
	padding-left: 5px;
}
.general-input{
	width: 100%;
	height: 44px;
	padding: 0 8px;
	border: none;
	background-color: #eee;
	color: #333;
}
.general-textarea{
	width: 100%;
	height: 94px;
	padding: 8px;
	border-radius: 4px;
	border: none;
	background-color: #eee;
	color: #333;
	resize: none;
}

.input-holder-1{
	width: 100%;
	position: relative;
}
.input-holder-2{
	width: 49%;
	position: relative;
}
.input-holder-23{
	width: 65.666%;
	position: relative;
}
.input-holder-13{
	width: 32.333%; 
	position: relative;
}
.input-holder-4{
	width: 24%;
	position: relative;
}
.view-password{
	position: absolute;
	height: 16px;
	right: 10px;
	bottom: 14px;
	z-index: 50;
	opacity: 0.5;
	transition: 0.3s ease-in-out all;
	cursor: pointer;
}
.view-password:hover{
	opacity: 1;
}
.cautare-form{
	width: 100%;
	max-width: 500px;
	margin: 25px auto;
}



/* --------------------------------------------------- login --------------------------------------------------- */
.login-box-holder{
	width: 70vw;
	height: 80vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.login-box-holder-large{
	width: 70vw;
	height: auto;
	position: relative;
	margin: 120px auto;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.login-page-box-holder{
	position: relative;
	margin: 35px auto;
}
.login-bg{
	width: 35%;
	height: 100%;
	background-image: url(../../Images/backgrounds/man4.jpg?v=2);
	background-position: center center;
	background-size: cover;
}
.login-profile-bg{
	background-image: url(../../Images/backgrounds/profil.jpg);
}
.login-info{
	width: 65%;
	height: 100%;
	padding: 25px;
	position: relative;
}
.login-info-large{
	width: 100%;
	height: 100%;
	padding: 25px;
	position: relative;
}

.login-form{
	width: 100%;
	height: calc(100% - 35px);
	margin: auto;
	overflow: auto;
	padding: 15px;
}
.login-title{
	font-size: 24px;
	color: #666;
	margin-bottom: 8px;
	margin-top: 0;
}
.login-title-link{
    font-size: 18px;
    color: var(--main-red);
    margin-bottom: 15px;
    font-weight: 700;
}
.login-title-link:hover{
	color: #D00;
	text-decoration: underline;

}

.login-page-btn{
	background-color:#C00D0D;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: none;
	width: 170px;
	height: 52px;
	line-height: 52px;
	padding: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	display: block;
}
.login-page-btn:hover{
	background-color: #F00;
	color: #fff;
}/*
.login-switch{
	color: #aaa;
	width: 100%;
	height: 26px;
	line-height: 26px;
	text-align: right;
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 12px;
}
.login-switch-btn{
	padding: 0 10px;
	text-align: center;
	height: 26px;
	line-height: 24px;
	border: 1px solid #aaa;
	color: #aaa;
	display: inline-block;
	text-decoration: none;
	margin-left: 5px;
}
.login-switch-btn:hover{
	background-color: #C00D0D;
	border: 1px solid #C00D0D;
	color: #fff;
}*/


.login-switch{
	color: #C00D0D;
	width: 100%;
	height: 34px;
	line-height: 34px;
	text-align: right;
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 14px;
	font-weight: 700;
}
.login-switch-btn{
	padding: 0 10px;
	text-align: center;
	height: 34px;
	line-height: 32px;
	background-color: #C00D0D;
	border: 1px solid #C00D0D;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	margin-left: 5px;
}
.login-switch-btn-gray{
	background-color: #999;
	border: 1px solid #999;
}
.login-switch-btn:hover{
	background-color: #F00;
	border: 1px solid #F00;
	color: #fff;
}


.login-forgot{
	float: right;
	text-align: right;
	font-size: 12px;
	color: #aaa;
	display: block;
	margin-top: 5px;
	padding-right: 5px;
}
.form-error{
	display: block;
	width: 100%;
	color: #f00;
	font-size: 12px;
}
.account-blocked-warning{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 50px auto;
	color: var(--main-red);
}



/* --------------------------------------------------- inscriere --------------------------------------------------- */
.inscriere-dropzones-holder{
	padding-top: 42px;
}





/* --------------------------------------------------- footer --------------------------------------------------- */
.footer{
	width: 100%;
	padding: 75px 0;
	background-color: #c00d0d;
	color: #fff;
	margin-top: 100px;
}
.footer-logo-col{
	width: 30%;
}
.footer-logo{
	width: 100%;
	max-width: 250px;
}
.footer-social-holder{
	width: 100px;
	margin-top: 25px;
}
.footer-social-img{
	width: 26px;
}
.footer-info-col-holder{
	width: 50%;
}
.footer-info-col{
	width: 45%;
}
.footer-info-col a{
	color: #fff;
	display: block;
}

.footer-title{
	width: 100%;
	float: right;
	text-align: right;
	font-size: 24px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-weight: 700;
}
.footer-title-separator{
	position: relative;
    height: auto;
    width: 150px;
	display: inline-block;
	float: right;
    margin-bottom: 45px;
}
.footer-title-separator::before{
	width: 45px;
	content: "";
    height: 6px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px;
	background-color: #fff;
}
.footer-title-separator::after{
	width: 95px;
	content: "";
    height: 6px;
    position: absolute;
    top: 0;
    left: 55px;
    border-radius: 15px;
	background-color: #fff;
}
.footer-info-line{
	text-align: right;
	width: 100%;
	font-size: 15px;
	line-height: 26px;
	height: 26px;
}
.footer-band{
	width: 100%;
	padding: 15px;
	background-color: #960808;
	color: #fff;
	text-align: center;
}

/* --------------------------------------------------- general styles --------------------------------------------------- */
.float-left{float: left;}
.float-right{float: right;}
.clear{clear: both;}
.center-text{text-align: center;}
.left-text{text-align: left;}
.right-text{text-align: right;}
.gray-text{color: #aaa;}
.no-border{border:none;}
.no-border-bottom{border-bottom:none;}
.no-padd{padding: 0;}
.no-background{background-color: transparent;}
.full-width{width: 100%;}
.half-width{width: 50%;}
.no-margin{margin: 0;}
.marg-top-25{margin-top: 25px;}
.opac-0{opacity:0;}
.inverted{filter: invert(100%);}
.highlighted-text{font-size: 22px; font-weight: 700; margin: 35px auto 75px auto; max-width: 700px; color: #C00D0D;}

.hr-divider{
    border: none;
    border-bottom: 1px solid #eee;
	margin: 25px 0;
}

.flex-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
}
.flex-container-around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}
.clear{
	clear: both;
}
.center-element{
	margin: 0 auto;
}

.blue-bg{background-color: #4fa8e7; transition: 0.3s ease-in-out background;}
.purple-bg{background-color: #ac58e6; transition: 0.3s ease-in-out background;}
.orange-bg{background-color: #e6a258; transition: 0.3s ease-in-out background;}
.red-bg{background-color: #dc4242; transition: 0.3s ease-in-out background;}
.green-bg{background-color: #8bcc7a; transition: 0.3s ease-in-out background;}

.blue-bg:hover{background-color: #008ae1;}
.purple-bg:hover{background-color: #8434bc;}
.orange-bg:hover{background-color: #d37c1e;}
.red-bg:hover{background-color: #ad0c0c;}
.green-bg:hover{background-color: #58bb3d;}

.red-hover{color: inherit;}

.orange-text{color: #e6a258;}
.green-text{color: #8bcc7a;}
.red-text,.red-hover:hover{color: #dc4242;}
.blue-text{color: #008ae1;}
.purple-text{color: #ac58e6;}

.border-bottom-3{border-bottom: 3px solid;}
.orange-border{border-color: #e6a258;}
.green-border{border-color: #8bcc7a;}
.red-border{border-color: #dc4242;}
.blue-border{border-color: #008ae1;}
.purple-border{border-color: #ac58e6;}


.cat-menu-container{
	position: -webkit-sticky;
	position: sticky;
	top: 70px;
	z-index: 11;
	padding: 0 15px;
	border-bottom: 1px solid #f9f9f9;
}


.cky-revisit-bottom-left {
    bottom: 5px !important;
    left: 5px !important;
}
.cky-btn-revisit-wrapper {
    width: 50px !important;
    height: 50px !important;
    z-index: 9999 !important;
}
.rsc-float-button {
    bottom: 10px !important;
    box-shadow: none !important;
    height: 50px !important;
    right: 10px !important;
    width: 50px !important;
    z-index: 999 !important;
}



.intro-btn-holder-mob{
	display: none;
}
.disp-mob{display: none;}
.disp-desk{display: block;}



@media screen and (max-width: 1030px){

.disp-mob{display: block;}
.disp-desk{display: none;}

a{cursor: default;}
	
	
.hello,.forbidden{
    max-width: calc(100% - 16px);
}
	
	
.popup {
    padding: 12px;
    border-radius: 10px;
	font-size: 14px;
	width: 90%;
}
.popup em{
	font-size: 12px;
	color: #999;
}

.close-button {
    top: 2px;
    right: 5px;
}
	
	
	
/* --------------------------------------------------- curtains --------------------------------------------------- */
.curtain-left{
	display: none;
}
.curtain-right{
	display: none;
}
.curtain-leave-left{
	display: none;
}
.curtain-leave-right{
	display: none;
}


/* --------------------------------------------------- intro --------------------------------------------------- */
.intro-holder{
	display: none;
}
.intro-mob{
	display: block;
	width: 100%;
	margin-top: 46px;
}
.intro-btn-holder-mob{
	width: 96%;
	margin: 25px auto;
}
/* --------------------------------------------------- menu --------------------------------------------------- */
.menu-holder{
	width: 100%;
	height: 46px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	transition: 0.3s ease-in-out all;
}
.menu-holder .logo{
	height: 26px;
}
.menu-holder-scrolled{
	height: 46px;
}
.menu-holder-scrolled .logo,.menu-holder-home .logo{
	height: 26px;
	left: 0;
}

.menu-options{
	height: 26px;
	width: 125px;
	right: 10px;
	z-index: 999;
}
.menu-option-holder{
	width: 26px;
	height: 26px;
}
.menu-option-icon{
	width: 16px;
}
.menu-account-holder{
	display: none;
	}

.menu-content-inner{
	height: calc(100vh - 100px);
	margin-top: 50px;
}
.menu-content-box{
	width: 100%;
	padding: 25px;
}
.menu-content-image{
	display: none;
}
.menu-content-item-holder{
	height: 300px;
}
.menu-content-item{
	height: 50px;
	line-height: 50px;
	font-size: 21px;
}

	
.menu-button-holder{
	width: 90px;
	height: 25px;
	border-radius: 3px;
	line-height: 25px;
	padding-left: 30px;
	font-size: 13px;
}
.menu-button-holder-icon{
	width: 16px;
}


/* --------------------------------------------------- cart --------------------------------------------------- */
.cart-amount{
	position: absolute;
    top: -4px;
    right: -26px;
    left: 0;
    margin: auto;
    z-index: 50;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background-color: var(--main-yellow);
    border-radius: 50%;
    transition: 0.3s cubic-bezier(.33,-0.46,.48,1.43) all;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 30%);
    font-weight: 500;
}
.cart-amount-anim{
	transform: scale(0,0);
	transition: 0.3s cubic-bezier(.33,-0.46,.48,1.43) all;
}
.cart-box{
	width: 100vw;
	transform: translateX(100vw);
}
.cart-box-open{
	transform: translateX(0);
}
.cart-box-inner{    
	margin-top: 0px;
    height: calc(100% - 60px);
}
.cart-box-container{
	padding: 10px;
	height: calc(100% - 150px);
	overflow-y: auto;
	overflow-x:hidden;
}
.cart-title{
	font-size: 18px;
}
.cart-box-row{
    height: auto;
}
.cart-box-info{
	width: calc(100% - 100px);
}
.cart-box-prod{
    font-size: 10px;
}
.cart-box-options{
    width: 100%;
    height: auto;
    line-height: normal;
}
.cart-box-option{
	width: 100%;
	display: block;
	font-size: 10px;
	height: 20px;
	line-height: 20px;
}

.cart-box-checkout-holder{
    width: 100%;
}
.checkout-btn{
	width: 48%;
}



/* --------------------------------------------------- new intro --------------------------------------------------- */

.intro-box{
	margin: 65px auto 25px auto;
	height: auto;
	padding-bottom: 250px;
	width: 94%;
	border-radius: 15px;
}
.intro-box-image{
	position: absolute;
	height: 220px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.intro-box-content{
	width: 100%;
	margin-left: 0%;
	height: auto;
	padding: 25px 0;
}
.intro-box-title{
	width: 90%;
}
.intro-box-desc{
	font-size: 14px;
}
.intro-box-button{
	width: 260px;
	max-width: 100%;
	font-size: 15px;
}

.intro-box-small{
	width: 94%;
	height: auto;
	margin: 25px auto;
	border-radius: 15px;
	padding-bottom: 250px;
}

.intro-box-small-image{
	position: absolute;
	width: auto;
	height: 220px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-bottom-left-radius: 0;
}
.intro-box-small-content{
	width: 100%;
	margin-left: 0;
	padding: 15px 25px;
	text-align: center;
}
.intro-box-small-desc{
	min-height: 100px;
}



/* --------------------------------------------------- pages --------------------------------------------------- */
.header{
	height: auto;
	background-position: center center;
}
.header-overlay{
	background-image: none;
	padding: 25px;
	margin: 0;
}
.header-title{
	font-size: 32px;
	letter-spacing: 0;
	margin-top: 30px;
	font-weight: 700;
}
.header-subtitle{
	font-size: 16px;
}
.header-hero{
	display: none;
}
.header-hero-right{
	display: none;
}

section{
	width: 100%;
	margin: 0 0 50px 0;
}
.general-btn{
	width: 210px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	font-size: 15px;
	margin: 25px auto;
}
.general-btn:hover{
	background-color: #f24220;
	background-image: none;
}
	
.main-split-image-holder{
	width: calc(100% - 30px);
	margin: 15px auto;
}
.main-split-image-holder img{
	border-radius: 15px;
}
.main-split-image-raised{
	width: calc(100% - 30px);
	margin: 15px auto;
}
.main-split-image-raised img{
	border-radius: 15px;
}
.main-split-content{
	width: 100%;
	padding: 15px;
}
.main-title{
	font-size: 26px;
}
.main-title-separator{
    margin-bottom: 35px;
}
.main-desc{
	font-size: 16px;
}

.main-strip{
	padding: 0;
	margin-top: 0;
	background-color: transparent;
}
.main-strip-hero{
	display: none;
}
.main-list{
	list-style-type: none;
	padding: 0;
}
.main-list li{
	margin-bottom: 15px;
}
.main-list li:before {
	color: #f24220;
    content: "\f058";
    font-family: Line Awesome Free;
    font-size: 24px;
	margin-right: 5px;
    margin-top: 1px;
    float: left;
}

.instalatori-holder{
	width: 100%;
	margin-top: 50px;
}
.instalator-box{
	width: 31%;
	margin-bottom: 35px;
}
.instalator-img{
	width: 100%;
	border-radius: 25px;
	margin-bottom: 15px;
}
.instalator-title{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.instalator-desc{
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	color: #999;
}


.produs-box{
	width: 49%;
	margin-bottom: 25px;
	padding: 10px;
	background-color: #fff;
}
.produs-box-3{
	width: 49%;
	margin-bottom: 25px;
}
.produs-img{
	width: 90%;
	margin: 15px 5%;
	border-radius: 15px;
	margin-bottom: 15px;
	height: 200px;
}
.produs-title{
	font-size: 14px;
	font-weight: 500;
}
.produs-title-small{
	font-size: 13px;
}
.produs-desc{
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	color: #999;
	margin-bottom: 25px;
}
.produs-desc-small{
	font-weight: 500;
	color: var(--main-red);
	margin-bottom: 15px;
	margin-top: 15px;
	font-style: normal;
}


.listare-options-holder{
	width: 100%;
}
.listare-option{
	width: 30%;
	height: 50px;
	border: 1px solid #ccc;
	font-size: 16px;
	padding: 0 8px;
}




/* --------------------------------------------------- shop --------------------------------------------------- */

.shop-btn{
	width: 100%;
	height: 50px;
	border: 1px solid var(--main-red);
	position: relative;
	overflow: hidden;
	background-color: transparent;
	cursor: pointer;
}
.shop-btn-left-box{
	width: calc(100% - 49px);
	height: 50px;
	line-height: 50px;
	font-size: 10px;
}
.shop-btn-right-box{
	width: 50px;
	height: 50px;
	line-height: 50px;
}
.shop-btn-main-icon{
	padding: 9px 0;
	width: 50px;
	height: 50px;
    line-height: 15px;
    font-size: 16px;
}
.shop-btn-main-icon font {
    font-size: 10px;
}
.shop-btn-sec-icon{
    transform: translateX(-50px);
}
.shop-btn-underlay{ 
    height: 50px;
}
.shop-btn:hover .shop-btn-main-icon{
	transform: translateX(50px);
}
.shop-btn:hover .shop-btn-underlay{
	width: 59px;
}


.shop-btn:hover .shop-btn-underlay{
	width: 49px;
}

.shop-btn-overlay{
	width: 50px;
	height: 50px;
	transform: translateY(50px);
}


/* --------------------------------------------------- checkout --------------------------------------------------- */

.checkout-holder{
	margin-top: 50px;
}
.checkout-box{
	width: 100%;
	padding: 15px;
}
.checkout-box-left{
	border-right: none;
}

.checkout-col-1{
	margin-bottom: 15px;
}
.checkout-col-2{
	width: 100%;
	margin-bottom: 15px;
}



/* --------------------------------------------------- account --------------------------------------------------- */
.account-sidebar{
	width: 100%;
	padding: 0;
	border-radius: 0;
}
.account-sidebar-text{
	font-size: 14px;
}
	
.account-content{
	width: 100%;
	padding: 15px;
	border-radius: 0;
	margin-top: 25px; 
}
.account-title{
	font-size: 18px;
}




/* --------------------------------------------------- list elements --------------------------------------------------- */
.general-list{
	width: 100%;
	list-style-type: none;
	padding: 0;
	display: table;
	color: #000;
	font-size: 14px;
}
.general-list-row{
	width: 100%;
	min-height: 75px;
	display: table-row;
	background-color: #fff;
}
.general-list-row:hover{
	background-color: #f8feff;
}
.general-list-cell{
	display: table-cell;
	vertical-align: middle;
	border-bottom: 5px solid #eee;
	padding: 10px 8px;
	text-align: center;
}

.general-list-cell-image{
	width: 90px;
}
.general-list-image{
	width: 70px;
	height: 70px;
	margin: 0 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.general-list-cell-title{
	text-align: left;
}
.general-list-cell-options{
	width: 160px;
	padding-right: 10px;
}

.option-btn{
	width: 32px;
	height: 32px;
	position: relative;
	border-radius: 3px;
	text-align: center;
	border: none;
}
.option-btn img{
	width: 18px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
/* --------------------------------------------------- forms --------------------------------------------------- */
.general-label{
	margin-top: 5px;
}
.general-form{
	padding: 0 15px;
}
.input-holder-23{
	width: 100%;
}
.input-holder-13{
	width: 100%;
}
.input-holder-4{
	width: 100%;
}


/* --------------------------------------------------- login --------------------------------------------------- */
.login-box-holder{
	width: 100%;
	height: auto;
	position: relative;
	box-shadow: 0;
}
.login-bg{
	width: 100%;
	height: 250px;
	background-position: center top;
}
.login-info{
	width: 100%;
	height: auto;
	padding: 15px;
    min-height: calc(100vh - 250px);
}
	

.login-form{
	width: 90%;
	max-width: 440px;
	height: auto;
	position: relative;
}
.signup-form{
	width: 90%;
	max-width: 440px;
	height: auto;
	position: relative;
}
.login-title{
	font-size: 20px;
	margin-bottom: 25px;
}

.login-page-btn{
	font-size: 14px;
	border: none;
	width: 48%;
	height: 40px;
	line-height: 40px;
	position: relative;
	overflow: hidden;
	text-align: center;
	margin: auto;
}
.login-page-btn:hover{
	background-color: #333;
	color: #fff;
}
.login-switch{
	height: auto;
	line-height: normal;
	text-align: left;
	position: relative;
	margin-left: 20px;
	margin-top: 20px;
	bottom: 0;
	right: 0;
}
.login-switch-btn{
	padding: 0 10px;
	border: none;
	text-decoration: underline;
}
.login-switch-btn:hover{
	background-color: transparent;
	border: none;
	color: #aaa;
}
	.mob-switch-big{
	color: #C00D0D;
	font-size: 14px;
	font-weight: 700;
		text-align: center;
		margin-top: 15px;
	}

	
.login-box-holder-large{
	width: 100vw;
}
.login-info-large{
	padding: 5px;
}
/* --------------------------------------------------- inscriere --------------------------------------------------- */
.inscriere-dropzones-holder{
	padding-top: 42px;
}





/* --------------------------------------------------- footer --------------------------------------------------- */
.footer{
	padding: 35px 15px;
	margin-top: 70px;
}
.footer-logo-col{
	width: 100%;
}
.footer-logo{
	max-width: 180px;
	display: block;
	margin: 0 auto 20px auto;
}
.footer-logo-info{
	text-align: center;
	font-size: 14px;
}
.footer-social-holder{
	width: 140px;
    margin: 25px auto 10px auto;
}
.footer-info-col-holder{
	width: 100%;
}
.footer-info-col{
	width: 100%;
}

.footer-title{
	float: none;
	text-align: center;
    font-size: 18px;
    margin-bottom: -15px;
    margin-top: 25px;

}
.footer-title-separator{
	display: none;
}
.footer-info-line{
	text-align: center;
}
.footer-band{
	padding: 13px;
}
	
	
	/* --------------------------------------------------- general styles --------------------------------------------------- */


.flex-reversed-mobile{
	flex-direction: column-reverse;
}
	
	
	

/* --------------------------------------------------- general styles --------------------------------------------------- */
.float-left{float: left;}
.float-right{float: right;}
.clear{clear: both;}
.center-text{text-align: center;}
.left-text{text-align: left;}
.right-text{text-align: right;}
.gray-text{color: #aaa;}
.no-border{border:none;}
.no-border-bottom{border-bottom:none;}
.no-padd{padding: 0;}
.no-background{background-color: transparent;}
.full-width{width: 100%;}
.half-width{width: 50%;}
.no-margin{margin: 0;}
.marg-top-25{margin-top: 25px;}
.opac-0{opacity:0;}
.inverted{filter: invert(100%);}

.hr-divider{
    border: none;
    border-bottom: 1px solid #eee;
	margin: 25px 0;
}

.flex-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
}
.flex-container-around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}
.clear{
	clear: both;
}
.center-element{
	margin: 0 auto;
}

.blue-bg{background-color: #4fa8e7; transition: 0.3s ease-in-out background;}
.purple-bg{background-color: #ac58e6; transition: 0.3s ease-in-out background;}
.orange-bg{background-color: #e6a258; transition: 0.3s ease-in-out background;}
.red-bg{background-color: #dc4242; transition: 0.3s ease-in-out background;}
.green-bg{background-color: #8bcc7a; transition: 0.3s ease-in-out background;}

.blue-bg:hover{background-color: #008ae1;}
.purple-bg:hover{background-color: #8434bc;}
.orange-bg:hover{background-color: #d37c1e;}
.red-bg:hover{background-color: #ad0c0c;}
.green-bg:hover{background-color: #58bb3d;}

.red-hover{color: inherit;}

.orange-text{color: #e6a258;}
.green-text{color: #8bcc7a;}
.red-text,.red-hover:hover{color: #dc4242;}
.blue-text{color: #008ae1;}
.purple-text{color: #ac58e6;}

.border-bottom-3{border-bottom: 3px solid;}
.orange-border{border-color: #e6a258;}
.green-border{border-color: #8bcc7a;}
.red-border{border-color: #dc4242;}
.blue-border{border-color: #008ae1;}
.purple-border{border-color: #ac58e6;}


.cat-menu-container{
	position: -webkit-sticky;
	position: sticky;
	top: 70px;
	z-index: 11;
	padding: 0 15px;
	border-bottom: 1px solid #f9f9f9;
}

	
	
	
	
}
