@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@font-face {
    font-family: 'holidayfreeregular';
    src: url('fonts/holidayfree-webfont.woff2') format('woff2'),
         url('fonts/holidayfree-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Donatello W01 AlternatesLP";
    src: url("fonts/donatello.eot");
    src: url("fonts/donatello.eot?#iefix")format("embedded-opentype"),
    url("fonts/donatello.woff2")format("woff2"),
    url("fonts/donatello.woff")format("woff"),
    url("fonts/donatello.ttf")format("truetype"),
    url("fonts/donatello.svg#Donatello W01 AlternatesLP")format("svg");
}
@font-face {
    font-family: 'gofarscript';
    src: url('fonts/gofar_script-webfont.woff2') format('woff2'),
         url('fonts/gofar_script-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", serif;
	font-weight: 400;
	background-color: #000;
	line-height: normal;
	font-size: 1em;
	color: #fff;
	scrollbar-color: #000;
    scrollbar-width: thin; 
}
*,
:after,
:before,
div {
	box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 8px;
	height: 8px;/* Lățimea scrollbarului */
}

::-webkit-scrollbar-track {
    background-color: #000; /* Fundalul scrollbarului */
}

::-webkit-scrollbar-thumb {
    background-color: #616161; /* Bara de derulare */
    border-radius: 5px; /* Colțuri rotunjite pentru un aspect mai estetic */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #222222; /* Culoarea barei la hover */
}
/*******************
AJAX OVERLAY
********************/
#ajax_overlay {
	display: none;
	width: 100%;
	height: 100%;
	top: 0px;
	position: fixed;
	z-index: 99999;
	background-color: rgba(255, 255, 255, 0.6);
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
	position: absolute;
	top: calc(50% - 3.5px);
	left: calc(50% - 3.5px);
}

	.lds-ripple .lds-pos {
		position: absolute;
		border: 2px solid #2962FF;
		opacity: 1;
		border-radius: 50%;
		animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
	}

		.lds-ripple .lds-pos:nth-child(2) {
			animation-delay: -0.5s;
		}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 0;
	}

	5% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}
/*******************
END - AJAX OVERLAY
********************/
.bg_burgundy
{
	background-color: #3d001c;
	padding: 20px;
}
.bg_burg{
	    background-color: #5a0b2f;
}
.bg_bunny {
    position: relative;
    overflow: hidden;
}

.bg_bunny::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/logo.svg) no-repeat center center;
    opacity: 0.15;
    z-index: 0; /* Make sure it's behind the content */
}
.bg_rules
{
	background: url("images/rules.png") no-repeat top center;
	background-size: contain;
	position: relative;
	padding-top: 30.57%;
	width: 100%;
}
.bg_shop
{
	background: url("images/shop.jpg") no-repeat top center #000;
	background-size: contain;
	position: relative;
	padding-top: 30.57%;
	width: 100%;
}
.ears{
    width: 540px;
    position: absolute;
    top: -10%;
    opacity: 0.2;
    left: 50%;
    transform: translate(-50%, -10%) rotate(7deg);
	animation: moveBanner 1.5s 0s forwards;
}
@keyframes moveBanner {
  0% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  100% {
    transform: translate(-50%, -10%) rotate(7deg);
  }
}
.content
{
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
}
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.container_shop
{
	max-width: 95%;
    width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
	
}
.header
{
	max-width: 100%;
	width: 100%;
	padding:0 20px;

}
/* spinner*/
.spinner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color:#000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
    z-index: 300;
}

.display .spinner-container {
  opacity: 0;
  visibility: hidden;
}
.circles {
  width: 8rem;
  height: 8rem;
  position: relative;
  opacity: 0;
  visibility: hidden;
  animation: displayCircles 4s;
}

@keyframes displayCircles {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  25% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.circles div {
  animation: circles 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 4rem 4rem;
}

.circles div::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: #eb2985;
  margin: -0.4rem 0 0 -0.4rem;
}

.circles div:nth-child(1) {
  animation-delay: -0.036s;
}

.circles div:nth-child(1)::after {
  top: 6.3rem;
  left: 6.3rem;
}

.circles div:nth-child(2) {
  animation-delay: -0.072s;
}

.circles div:nth-child(2)::after {
  top: 6.8rem;
  left: 5.6rem;
}

.circles div:nth-child(3) {
  animation-delay: -0.108s;
}

.circles div:nth-child(3)::after {
  top: 7.1rem;
  left: 4.8rem;
}

.circles div:nth-child(4) {
  animation-delay: -0.144s;
}

.circles div:nth-child(4)::after {
  top: 7.2rem;
  left: 4rem;
}

.circles div:nth-child(5) {
  animation-delay: -0.18s;
}

.circles div:nth-child(5)::after {
  top: 7.1rem;
  left: 3.2rem;
}

.circles div:nth-child(6) {
  animation-delay: -0.216s;
}

.circles div:nth-child(6)::after {
  top: 6.8rem;
  left: 2.4rem;
}

.circles div:nth-child(7) {
  animation-delay: -0.252s;
}

.circles div:nth-child(7)::after {
  top: 6.3rem;
  left: 1.7rem;
}

.circles div:nth-child(8) {
  animation-delay: -0.288s;
}

.circles div:nth-child(8)::after {
  top: 5.6rem;
  left: 1.2rem;
}

@keyframes circles {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.d-flex
{
	display: flex;
}
.d-flex-center
{
	display: flex;
	align-items: center;
}
.d-flex-justcent, .d-flex-heading
{
	display: flex;
	align-items: center;
	justify-content: center;
}
.d-flex-end
{
	display: flex;
	align-items: flex-end;
}
.d-flex-space
{
	display: flex;
    justify-content: space-between;
}
.d_abs_center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.mla
{
	margin-left: auto;
}
.mra
{
	margin-right: auto;
}
.txt-sm
{
	font-size: 0.65em;
}
.txt_hol
{
	font-family: "holidayfreeregular";
}
.txt_hol18
{
	font-size: 1.125em;
	font-family: "holidayfreeregular";
}
.txt_hol20
{
	font-size: 1.25em;
	font-family: "holidayfreeregular";
}
.txt_hol24
{
	font-size: 1.5em;
	font-family: "holidayfreeregular";
}
.txt_hol32
{
	font-size: 2em;
	font-family: "holidayfreeregular";
}
.txt_hol48Peep {
	font-size: 3em;
	font-family: "holidayfreeregular";
	color: white;
	z-index: 1;
	line-height: 1.5em;
}
.mobfl
{
	display: flex!important;
}
.txt_hol48
{
	font-size: 3em;
	font-family: "holidayfreeregular";
}
.txt_48
{
	font-size: 3em;
}
.txt_osw
{
	font-family: "Oswald", serif;
}
.txt_osw15
{
	font-family: "Oswald", serif;
    font-weight: 200;
    font-size:  0.875em;
    line-height: 0.875em;
	margin-bottom: 12px;
	margin-top: -5px;
}
.txt_osw18
{
	font-family: "Oswald", serif;
    font-weight: 200;
    font-size:  1.125em;
    line-height: 1.125em;
}
.txt_osw20
{
	font-family: "Oswald", serif;
    font-weight: 200;
    font-size: 1.25em;
    line-height:1.25em;
}
.txt_osw52
{
	font-family: "Oswald", serif;
    font-weight: 200;
    font-size: 3.25em;
}
.txt_mon18
{	
	font-size: 1.125em;
	
}
.txt_mon
{	
	font-family: "Montserrat", serif;
	
}
.txt_center {
    text-align: center;
}
.txt_right
{
	text-align: right;
}
.txt_xxl
{
	font-size: 2.1875em;

}
.txt_xl
{
	font-size: 2em;

}
.txt_ml
{
	font-size: 1.75em;

}
.txt_l
{
	font-size: 1.5em;
	line-height: 1.375em;
}

.txt_m
{
	font-size: 1.25em;
	line-height: 1.75em;
}
.txt_sm
{
	font-size: 0.875em
}
.txt_55
{
	font-size: 55px;
	font-family: "Donatello W01 AlternatesLP";
	color: #eb3185;
	margin-right: 30px;
}
.txt18
{
	font-size: 1.125em;
	line-height: 1.125em;
}
.txt22
{
	font-size: 22px;
}
.txt_gof
{
	 font-family: 'gofarscript';
	font-size: 2.25em!important;
	font-weight: 700;
}
strong
{
	font-weight: 900;
	
}
h1
{
	font-weight: 900;
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 2em;
}
h2 {
    font-size: 1.625em;
    margin: 0 0 20px 0;
    font-weight: 900;
    padding: 0;
}
h3
{
	 font-family: 'holidayfreeregular';
	font-size: 1.5625em;
	margin:0;
	color: #eb2985;
	font-weight: 400;
	padding: 0;
}
h4
{
	font-size:1.5em;
	margin:0 0 20px 0;
	font-weight: normal;
	padding: 0;
}
h5
{
	font-size:1.5em;
	margin:0;
	font-weight: normal;
	flex-grow: 0;
    padding: 0 20px;
    order: 2;
}

.main-banner
{
	margin: 85px 0 20px 0;
	position: relative;
}
.main-banner img
{
	width: 100%;
}
.logo {
    width: 46px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.logo_round
{
	width: 90px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
	 position: fixed;
    margin: 10px 10px 10px 30px;
	top: 0;
	left: 0;
	 z-index: 1;
}

.p20
{
	padding: 20px;
}
.p50
{
	padding: 0 50px;
}

a.pink_btn:link, a.pink_btn:visited, a.pink_btn:active
{
    background: url("images/pink_btn.png") no-repeat center center;
    background-size: contain;
    font-size: 1em;
    font-weight: 900;
    height: 100px;
    display: block;
    text-decoration: none;
    color: #fff;
	border: 0;
	font-family: "Montserrat", serif;
    text-align: center;
    padding-top: 37px;
    text-transform: uppercase;
}
a.pink_btn2:link, a.pink_btn2:visited, a.pink_btn2:active, input[type=button].pink_btn2, input[type=submit].pink_btn2, button.pink_btn2 
{
	background: url("images/btn_pink2.png") no-repeat center center;
	background-size: 100% 100%;
	font-size: 1em;
	font-weight: 900;
	font-family: "Montserrat", serif;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 0;
	text-align: center;
	padding: 15px 30px;
	    min-width: 140px;
	cursor: pointer; 
}
a.whitebord_btnPeep:link,
a.whitebord_btnPeep:visited,
a.whitebord_btnPeep:active {
	background: url("images/white_board_btn_2lines.png") no-repeat center center;
	background-size: contain;
	font-weight: 700;
	width: 150px;
	display: block;
	text-transform:uppercase;
	text-decoration: none;
	color: #fff;
	border: 0;
	text-align: center;
	padding-top: 8px; /* reduced top padding */
	padding-bottom: 8px; /* reduced bottom padding */
}

a.whitebord_btnPeep.txt_mPeep:link,
a.whitebord_btnPeep.txt_mPeep:visited,
a.whitebord_btnPeep.txt_mPeep:active {
	width: 200px;
}

a.whitebord_btn:link, a.whitebord_btn:visited, a.whitebord_btn:active
{
    background: url("images/white_bord_btn.png") no-repeat center center;
    background-size: contain;
	font-weight: 700;
    width: 150px;
    display: block;
    text-decoration: none;
    color: #fff;
	border: 0;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
a.whitebord_btn.txt_m:link, a.whitebord_btn.txt_m:visited, a.whitebord_btn.txt_m:active
{
	width: 200px;
}
.event-overlay-content a.whitebord_btn:link, .event-overlay-content a.whitebord_btn:visited, .event-overlay-content a.whitebord_btn:active
{
	width: 120px;
	font-weight: 400;
}
.posver_center video
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lips
{
	max-width: 400px;
	position: relative;
	width: 44%;
    float: right;
	margin-top: -25%;
	margin-right: -4%;
}
.lips img
{
	position: absolute;
	width: 100%;
	top: 0;
}
.lips video
{
    width: 90%;
    transform: rotate(-15deg);
    transform-origin: center;
}
.video
	{
	position: absolute;
	margin-left: 11.5%;
    margin-top: 19.5%;
	}
.promo_txt
{
	position: absolute;
    left: 105px;
    top: 140px;
    transform: rotate(-15deg);
    font-size: 1.75em;
    text-align: center;
    font-weight: 700;
	z-index: 3;
	cursor: pointer;
}
.promo_img
{
    position: absolute;
    margin-left: 0.7%;
    margin-top: 12.3%;
    cursor: pointer;
    width: 100%;
    padding-top:59%;
    background: url(images/lips_start.png) no-repeat top;
    background-size: contain;
    transition: opacity 0.3s ease;
    z-index: 3;
}	
.logo_lips
{
    position: absolute;
    right: 44%;
    margin-top: 39%;
    cursor: pointer;
	width: 40px;
	height: 37px;
    background: url(images/logo_lips.png) no-repeat top;
    background-size: contain;
    z-index: 4;

}
@keyframes moveRight {
            0% {
                right: 44%;
                transform: rotate(0deg);
            }
            50% {
                right: 42%;
                transform: rotate(10deg);
            }
	        75% {
                right: 44%;
                transform: rotate(0deg);
            }
		    100% {
                right: 42%;
                transform: rotate(15deg);
            }
}
.star
{
	position: absolute;
	top:63%;
	right:35%;
	width: 8%;
	z-index: 3;
	animation: pulse 1s infinite;
	cursor: pointer;
	
}

.star img {
  width: 100%;
	transition: transform 0.3s ease-in-out;
}

.evs{
	position: relative;
	width: 100%;
	padding-top: 20px;
}
.ev_frame
{
    border: 20px solid transparent;
    border-image: url(images/event_frame.png) 20 round;
    width: 100%;
    position: absolute;
	height: 100%;
    z-index: 2;
}
.evsimg
{
	width: 40%;
	padding-top: 40%;
	position: relative;
	left: 10px;
}
.evs > div:last-of-type
{
	width: 60%;
	text-align: center;
	z-index: 3;
}
 .evsimg img
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	z-index: 0;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.mr20
{
	margin-right: 20px;
}
.mr30
{
	margin-right:30px;
}
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.col-1 {
    -ms-flex: 0 0 75%;
    flex:0 0 75%;
    max-width: 75%;
}

.col-2 {
    -ms-flex: 0 0 50%;
    flex:0 0 50%;
    max-width: 50%;
}
.col-3 {
    -ms-flex: 0 0 33.33333333%;
	flex:0 0 33.33333333%;
    max-width:33.33333333%
}

.col-4 {
    -ms-flex:0 0 25%;
    flex:0 0 25%;
    max-width: 25%;
}
.col-5 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
.col-6 {
    -ms-flex: 0 0 66.66666666%;
    flex: 0 0 66.66666666%;
    max-width: 66.66666666%;
}
.col-shop {
    -ms-flex: 0 0 33.3333333%;
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
}

.col{
	   -ms-flex: 0 0 100%;
	flex:0 0 100%;
    max-width:100%
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col
{
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}
.col-shop, .col-frame
{
    position: relative;
    width: 100%;
	margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}
.pos_rel
{
	position: relative;
	 width: 100%;
    height: 100%;
}
.pos_rel.peepvideo
{
	margin-bottom: 6px;
}
.ev_banner
{
	position: absolute;
	font-weight: 900;
	text-align: center;
	font-size: 1.275em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.mb0
{
	margin-bottom: 0px;
}
.mb10
{
	margin-bottom: 10px;
}
.mb16
{
	margin-bottom: 16px;
}
.mb20
{
	margin-bottom: 20px;
}
.mb30
{
	margin-bottom: 30px;
}
.mb40
{
	margin-bottom: 40px;
}
.mb50
{
	margin-bottom: 50px;
}
.mb52
{
	margin-bottom: 52px;
}
.mb100
{
	margin-bottom: 100px;
}
.mt_15 {
    margin-top: -15px;
}
.mt5 {
    margin-top: 5px;
}
.ml30 {
    margin-left: 30px;
}
.mt0
{
	margin-top:0!important;
}
.mt5
{
	margin-top: 5px;
}
.mt10
{
	margin-top: 10px;
}
.mt15
{
	margin-top: 15px;
}
.mt20
{
	margin-top: 20px;
}
.mt30
{
	margin-top: 30px;
}
.mt40
{
	margin-top: 40px;
}
.mt80
{
	margin-top:80px;
}
.mt100
{
	margin-top:100px;
}
.exit18
{
	margin-top: 40px;
	margin-left: -10px;
}
.exit18 a.pink_btn2:link, .exit18 a.pink_btn2:visited, .exit18 a.pink_btn2:active
{
    min-width: 80px;
    padding: 5px;
    font-size: 0.75em;
}
.pink_bord
{
	border: 1px solid #eb2985;
	padding: 30px;
	width: 100%;
}
/* Menu hamb */
.menu
{
    background-color:#1c000d;
	opacity:0.88;
	-webkit-box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.3);
box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.3);
    height: 100%;
    bottom: 0;
	overflow: auto;
	top:0;
    padding:0 70px;
    z-index:6;
	padding-top: 80px;
    position: fixed;
	right:-500px;
}
.menu ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menu ul {
    flex-direction: column;
}
.menu li
{
	padding-bottom:20px;
	border-bottom: 1px solid #6a0d3a;
	padding-left:0;
	padding-right:0;
	padding-top: 20px;
	}
.menu a:link, .menu a:visited, .menu a:active
{
  color: #fff;
  font-size: 1.5em;
	text-decoration: none;
  line-height: 32px;
}

.menu a:hover
{
	color: #eb2985;
}
#navMenu{	transform:none;
	 transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0)}
	 
#hamburger span {
    display: flex;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #eb2985;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}

 #hamburger
{
    position: fixed;
    z-index: 6;
    top:25px;
    right: 50px;
	 display: block;
}


.dropdown-toggle {
  cursor: pointer; 
}

.dropdown-menu {
  display: none; 
  position: absolute; 
  background-color: #3d001c;
  min-width: 150px; 
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); 
}

.dropdown-menu a {
  color: #fff;
 font-size: 0.9375em;
  text-decoration: none;
  display: block; 
  padding: 10px;
  border-bottom: 1px solid #6a0d3a;
}

.dropdown-menu a:hover{
	background-color: #6a0d3a;	
}  

.img100 img{
    width: 100%;
}
.img75 img{
    width: 75%;
}
.txt_gof2
{
	 font-family: 'gofarscript';
	font-size: 2.25em!important;
	font-weight: 700;
	    line-height: 2.25em;
}
.txt_gof3
{
	 font-family: 'gofarscript';
	font-size: 3em!important;
	font-weight: 700;
	    line-height: 1.5em;
}

.txt_pink {
    color: #eb2985;
}
.txt_cream {
    color: #9a7551;
}
.txt_125 {
    font-size: 1.25em;
    line-height: 1.25em;
    font-family: "Donatello W01 AlternatesLP";
}
.comimg {
    max-width: 550px;
    width: 100%;
}
.shop a:link, .shop a:visited, .shop a:active {
    color: #fff !important;
	text-decoration: none;
}
.shop .col-shop div {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.gray_bord {
    border: 1px solid #424242;
}
.shop .gray_bord {
    margin-bottom: 10px;
    text-align: center;
}
.product-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}
.border-left
{
	background: url("images/border_left.jpg") repeat-y left top;
	width: 8px;
	left: 0;
	position: absolute;
	z-index: 3;
	height: 100%;
}
.border-right
{
	background: url("images/border_right.jpg") repeat-y right top;
	width: 8px;
	right: 0;
	position: absolute;
	height: 100%;
	z-index: 3;
}
.product-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
}
.fw400
{
	font-weight: 400;
}
.fw600
{
	font-weight: 600;
}
.fw700
{
	font-weight: 700;
}
.fw900
{
	font-weight: 900!important;
}
hr {
    background-color: #424242;
    height: 0.85px;
    padding: 0;
    border: 0;
    margin: 10px 0;
}
.social{
	    background-color: transparent;
    border: 0;
}
.cart_ico {
    padding:0;
	margin-right: 20px;
    font-size: 1.375em;
	line-height: 1em;
	position: relative;
}
.cart-count {
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    top: 6px;
    left: -10px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    height: 22px;
    width: 22px;
    color: black;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 100%;
}
a:link, a:visited, a:active
{
	color: #eb2985;
	text-decoration: none;
}
a:hover
{
	color: #fff;
}
.cart_ico i {
    color: #eb2985;
}
.alignr {
    margin-left: auto;
    text-align: right;
}
.img100 img, .shop img
{
	width: 100%;
}

.banner
{
	background: url("images/bg_banner.png") no-repeat top center #2c0014;
	width: 100%;
}
.button, input[type=button], input[type=submit] {
	background-color: #262626;
	color: #fff;
	font-family: 'Futura PT Book', sans-serif;
	padding: 12px 60px 15px 60px;
	font-size: 1.25em;
	line-height: 1.25em;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.5s;
	white-space: nowrap;
	border: 0;
	
}
input[type=button]:disabled,
input[type=button][disabled]{
  background-color: #9b9b9b;
}
a.button:link,
a.button:visited,
a.button:active {
	text-decoration: none;
	letter-spacing: 0;
	color: #fff;
	display: inline-block;
	white-space: nowrap;
}

.button:hover, a.button:hover, input[type=button]:hover {
	background-color: #fff;
	color: #000;}

input[type=button].button_round {
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
	color: #fff;
	font-family: 'Futura PT Book', sans-serif;
	 padding: 10px 50px 12px 50px;
	font-size: 1.25em;
	line-height: 1.25em;
	font-weight: 400;
	border: 1px solid #eb2985;
	cursor: pointer;
	transition: all 0.5s;
	white-space: nowrap;
	
}
a.button_round:link,
a.button_round:visited,
a.button_round:active {
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
	color: #fff;
	font-family: 'Futura PT Book', sans-serif;
	    padding: 10px 50px 12px 50px;
	font-size: 1.25em;
	line-height: 1.25em;
	font-weight: 400;
	border: 1px solid #eb2985;
	cursor: pointer;
	transition: all 0.5s;
	white-space: nowrap;
	display: inline-block;
}

.button_round:hover, a.button_round:hover, .button_round input[type=button]:hover {
	background-color: #eb2985;}

a.button_pink:link,
a.button_pink:visited,
a.button_pink:active,
input[type=button].button_pink{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
	color: #fff;
	background-color: #eb2985;
	    padding: 10px 30px;
	font-size: 1em;
	line-height: 1.25em;
	text-transform: uppercase;
	border: 0;
	min-height: 38px;
	font-family: "Montserrat", serif;
	cursor: pointer;
	font-weight: 900;
	transition: all 0.5s;
	white-space: nowrap;
	display: inline-block;
}

.button_pink:hover, a.button_pink:hover, .button_pink input[type=button]:hover {
	background-color: #fff;color: #000}

a.button_pinkOsw:link,
a.button_pinkOsw:visited,
a.button_pinkOsw:active,
input[type=button].button_pinkOsw,
input[type=submit].button_pinkOsw{
	color: #fff;
	background-color: #eb2985;
	    padding: 15px;
	font-size: 1.125em;
	line-height: 1.125em;
	text-transform: uppercase;
	border: 0;
	min-height: 38px;
	font-family: "Oswald", serif;
	cursor: pointer;
	font-weight: 400;
	transition: all 0.5s;
	white-space: nowrap;
	display: block;
}

.button_pinkOsw:hover, a.button_pinkOsw:hover, .button_pinkOsw input[type=button]:hover {
	background-color: #fff;color: #000}

a.button_gray:link,
a.button_gray:visited,
a.button_gray:active,
input[type=button].button_gray{
	font-family: "Donatello W01 AlternatesLP";
	background: url("images/btn_gray.png") no-repeat center;
	color: #fff;
	padding-top: 12px;
	font-size: 1.125em;
	line-height: 1.125em;
	border: 0;
	height: 40px;
	width: 190px;
	cursor: pointer;
	transition: all 0.5s;
	white-space: nowrap;
	display: inline-block;
}
a.btn_gray:link,
a.btn_gray:visited,
a.btn_gray:active,
input[type=button].btn_gray{
	background: #333;
	color: #fff;
	padding: 10px 20px;
	font-size: 1em;
	line-height: 1em;
	border: 0;
	width: auto;
	cursor: pointer;
	transition: all 0.5s;
	white-space: nowrap;
	display: inline-block;
}
a.btn_gray:hover,
input[type=button].btn_gray:hover
{
	background: #444;
	
}
a.button_white:link,
a.button_white:visited,
a.button_white:active,
input[type=button].button_white{
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
	color: #eb2985;
	background-color: #fff;
	font-family: "Oswald", serif;
	    padding: 12px 50px 11px 50px;
	font-size: 1.125em;
	line-height: 1.125em;
	border: 0;
	min-height: 38px;
	transition: all 0.5s;
	white-space: nowrap;
	display: inline-block;
}

.button_white:hover, a.button_white:hover, .button_white input[type=button]:hover {
	background-color: #393939;}

.banner .container
{
	padding:60px 0;
	text-align: center;
}
.logos
{
	height: 100px;
	text-align: center;
	border: 1px solid #550f30;
	width: 100%;
	margin-right: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.logos:last-child
{
	margin-right: 0px;
}
a.white:link, a.white:visited, a.white:active
{
	color: #fff;
}
a.white:hover{
	color: #eb2985;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=number],
input[type=date] {
	width: 100%;
	padding:6px 15px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	border: 1px solid #abacbd;
	vertical-align: bottom;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	min-height: 48px;
    max-height: 58px;
	font-size: 1em;
	color: #cecece;
	background-color: transparent;
	font-family: 'Futura PT Book', sans-serif;
	border-radius: 0 !important;
}

select,
select:not(:checked) {
	width: 100%;
	padding:6px 20px 6px 15px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	border: 1px solid #abacbd;
	vertical-align: bottom;
	background: url("images/chevron_down_white.svg") no-repeat right center #0c0006;
	background-position: bottom 45% right 10px;
	background-size: 16px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	min-height: 48px;
    max-height: 58px;
	font-size: 1em;
	color: #cecece;
 background-color: transparent;
	font-family: 'Futura PT Book', sans-serif;
	border-radius: 0 !important;
}

textarea {
	height: 125px;
	width: 100%;
	padding: 15px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	background-color: transparent;
	border: 1px solid #abacbd;
	vertical-align: bottom;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 10px 0 0 0;
	font-size: 1em;
	color: #cecece;
	font-family: 'Futura PT Book', sans-serif;
	border-radius: 0 !important;
}
::placeholder {
  font-size: 1em;
    color: #cecece;
	font-family: 'Futura PT Book', sans-serif;
}
/* General reset for appearance across browsers */
input[type="number"] {
  -webkit-appearance: none; /* Chrome, Safari, Edge */
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Standard */
}

/* Firefox-specific style to remove spinner arrows */
@-moz-document url-prefix() {
  input[type="number"] {
    -moz-appearance: textfield;
  }
}
.custom-date-input {
	position: relative;
}

.custom-date-input::before {
	content: "\f073";
	/* Font Awesome calendar icon */
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
	/* Prevent clicking the icon from triggering the input */
}

.custom-date-input::-webkit-calendar-picker-indicator {
	opacity: 0;
	/* Hide the default calendar icon */
}
input[type=text].bord,
input[type=password].bord,
input[type=tel].bord,
input[type=email].bord,
input[type=number].bord,
input[type=date].bord
{
	width: 100%;
    padding: 12px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    border: 1px solid #abacbd;
    vertical-align: bottom;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 10px 0 0 0;
    font-size: 1em;
    color: #cecece;
    background-color: #000;
	
}
:focus-visible {
    outline: 0;
}
.head_box
{
	background: url("images/bg_topbox.svg") no-repeat top center;
	padding-top: 20px;
	background-size:cover;
	padding-bottom: 20px;
}
.head_box h3
{
	text-align: center;
}
.head_box h2
{
	text-align: center;
	margin-bottom: 0;
}
.box_bord
{
	border:1px solid #fff;
	padding:30px;
	overflow: auto;
}
.fleft
{
	float: left;
}
.fright
{
	float: right;
}

.txt_gray
{
	color: #969696;
}
.c_gray
{
	color: #abacbd!important;
}
.max180{
    max-width: 180px;
    width: 100%;
}
.max300{
    max-width: 300px;
    width: 100%;
}
.max400{
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.max720
{
	max-width: 720px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.max800
{
	max-width: 800px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.max1070
{
	max-width: 1070px;
	width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.max100
{
	max-width:100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -20px;
}
.ticket img
{
	width: 180px;
}
/* custom checkboxes */
.contcheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.contcheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.contcheck:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.contcheck input:checked ~ .checkmark {
  background-color: #a90955;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.contcheck input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.contcheck .checkmark:after {
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* custom input file */
.custom-file-input {
    position: relative;
    border: 1px solid #abacbd;
    width: 100%;
    padding:12px 15px;
    min-height: 48px;
    max-height: 58px;
}

.custom-file-input label {
    display: inline-block;
	background: url("images/plus.png") no-repeat right center;
	width: 100%;
    cursor: pointer;
	color: #cecece;
}

.custom-file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
/* The Modal  */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
	position: absolute;
	background: #090000;
	padding: 0;
	max-width: 440px;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.8);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

}

@-webkit-keyframes animatetop {
	from {
		margin-top: -300px;
		opacity: 0
	}

	to {
		top: 50%;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		margin-top: -300px;
		opacity: 0
	}

	to {
		top: 50%;
		opacity: 1
	}
}

.close {
	color: #2A2A2D;
	float: right;
	font-size: 28px;
	font-weight: 400;
	margin-right: 18px;
	cursor: pointer;
}

.edit {
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.closeabs {
	top: 20px;
	position: absolute;
	right: 20px;
	z-index: 1;
}

.modal-header {
	padding:20px 20px 0 20px;
}
.modal-footer
{
	padding:0 20px 20px 20px;
}
body.modal-open {
	overflow: hidden
}

.modal-body {
	padding: 30px;
	font-size: 14px;
}

.modal-body h1 {
	margin-top: 0;
	font-size:1.5em;
}
/* End Modal  */

/* Style the buttons inside the tab */
.tab {
  overflow: hidden;
 margin: 30px 0;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding:10px 20px;
font-family: "Donatello W01 AlternatesLP";
	text-transform: uppercase;
	font-size: 1.25em;
	color: #fff;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
   border-bottom: 1px solid #eb2985;
}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 1px solid #eb2985;
	color: #fff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}
.rules .col-2
{
	display: flex;
}
table {
    border-collapse: collapse; 
    width: 100%; 
	
}

table, th, td {
    border-bottom: 1px solid #3d3d3d;
	padding:15px 10px;
	font-family: 'Futura PT Book', sans-serif;
	font-size:1.125em;
	vertical-align: top;
}
table span
{    font-size: 0.75em;
    white-space: nowrap;
}

th, td {
    text-align: left; 
}

tbody tr:hover {
    background-color: #1e0512;
	cursor:pointer;
}
.soldout
{
    background-color: #1b1b1b;
    font-size: 0.75em;
    padding: 6px 10px;
    border: 1px solid #686868;
	white-space: nowrap;
}
.hidden {
            display: none; 
        }
.block {
            display: inline-block; 
        }
.more
{
	font-size: 0.75em;
	margin-top:5px;
}
table input[type=button], table .button
{
	font-size: 0.875em;
    padding: 10px 20px;
}
.d-flex.ev div:last-child
{
	margin-left: auto;
}
.ev
{
	font-size: 0.875em;
}
.product hr
{
	width: 20px;
    margin: 0 auto 5px auto;
    background-color: #fff;
}
.circle {
   width: 20px;
   height: 20px;
   border-radius: 50%;
   -webkit-box-shadow: 50%;
   -moz-box-shadow:50%;
	margin-right: 5px;
	border: 1px solid #777;
}
.thumbs
{
	margin: 10px 10px 10px 0;
}
.thumbs img
{
	margin-right: 10px;
	width: 50px;
	height: 50px;
}
.cart
{
	width: 300px;
	background-color: #fff;
	position: fixed;
	top: 0;
	right: -500px;
	z-index:1000;
	color: #000;
	height: 100vh;
}
.cart_cont {
    overflow: auto;
    padding: 20px;
	height: calc(100% - 200px);
}
.cart_items {
    margin-bottom: 20px;
	border-bottom: 1px solid #777;
	    padding-bottom: 10px;
}
.cart_items img
{
	width: 100%;
	max-width: 70px;
	min-width: 70px;
	
}
.cart_items .d-flex div:first-child
{
	margin-right: 10px;
	
}
.number-input {
  display: flex;
  border: 0;
  align-items: center;
  width: fit-content;
	background-color: #fff;
	color: #000;
}

.number-input button {
    padding: 5px 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: large;
	line-height: 0.875em;
	color: #000;
	 -webkit-appearance: none; 
  appearance: none;
}
button.number-input:focus,
button.number-input:active {
  color: black;
}
button.trash-icon {
  color: black;
  -webkit-appearance: none;
  appearance: none;
color: black;
}
input.quantity {
    padding: 0;
	border: 0;
    width: 30px;
    background-color: transparent;
    color: #444;
    margin: 0;
    text-align: center;
}
.cart .bg_burgundy
{
	color: #fff;
	font-size: 1.75em;
}
.cart input[type=button], .cart .button
{
	width: 100%;
	text-align: center;
	background-color: #eb2985;
}
.cart input[type=button]:hover
{
	background-color: #262626;
	color: #fff;
}
.cart_tot
{
	position: absolute;
	bottom: 0;
	padding: 20px;
	width: 100%;
}
.hidcart {

    transform: translate(0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);

}

.viscart {
    transform: translate(-500px);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.cart-count {
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    top: 5px;
    left: -12px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    height: 22px;
    width: 22px;
    color: black;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 100%;
}
.cart_ico i
{
	color: #eb2985;
}
/* gallery css */

#gallery_img{
	width:100%;
	position:relative;
}
#image {
    width: 100%; 
    position: relative; 
    overflow: hidden; 
}

#image::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.gallery_img_style {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
#lefty{
	width:40px;
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	z-index: 4;
	padding: 10px;
	cursor:pointer;
	opacity:0.5;
}

#righty{
	width:40px;
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	right:0;
	z-index: 4;
	padding: 10px;
	cursor:pointer;
	opacity:0.5;
}

#play, #pause{
	width:12px;
	position:absolute;
	top:20px;
	left:50%;
	transform: translateX(-50%);
	cursor:pointer;
	opacity:0.5;
}

#play{
	display:none;
}

#expand{
	width:100%;
	height:100%;
	position:absolute;
	bottom:0;
	z-index: 3;
	right:0;
	cursor: url("images/zoom-cursor.png"), auto;
	opacity:0.5;
}

#thumbs{
	height:50px;
	width:100%;
	float:left;
	margin-top:10px;
	white-space:nowrap;
}

.thumbs_style{
	display:inline-block;
}

.thumbs_style img{
	width:50px;
	height:50px;
	cursor:pointer;
}

#enlarge{

    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 7;
    }

#large_img
{
	height:100%;
	transition: transform 0.2s ease-in-out;
	cursor: url("images/zoom-cursor.png"), auto;
}
#large_img.zoomed {
    transform: scale(2); 
}
#enlarge div
{
	width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
	text-align:center;
}
#large_left
{
	width: 63px;
    position: absolute;
    left:0;
	padding: 20px;
    top: 50%;
    transform: translateY(-50%);
	cursor: pointer;
}
#large_right{

	width: 63px;
    position: absolute;
    right:0;
	padding: 20px;
    top: 50%;
    transform: translateY(-50%);
	cursor: pointer;

    }

#large_close{

     width: 25px;
     position: absolute;
     right: 30px;
     top: 30px;
      cursor: pointer;

    }

#large_pause, #large_play {

    width: 20px;
    position: absolute;
    right: 50%;
    bottom: 5%;
    transform: translateX(50%);
    cursor: pointer;
    }
/* end gallery css */
.summary
{
	border-bottom:1px solid #777;
	margin-bottom:10px;
	    padding-bottom: 10px;
	display:flex;
}
/*gallery */
.user_gal {
  width: 100%;
  border: 1px solid #4e4e4e;
}

.user_gal h4 {
	margin: 0;
    font-size: 1.125em;
    font-weight: 600;
	padding: 10px;
    font-family: 'Futura PT Book', sans-serif;
 
}

.user_gal .posrel img {
  width: 100%;
  object-fit: cover;
}


.user_gal p {

  margin: 10px;
}

.posrel {
	width: 100%;
    position: relative;
}
.posver_center
{
	height: calc(100vh - 140px);
}
.user_gal button{
	 width: 20px;
    position: absolute;
	background-size: contain;
	background-color: #fff;
	color: transparent;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    padding: 0;
    height: 25px;
    width: 25px;
	border: 0;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.5;
	}
button.next.user_gal_btn:focus {
    outline: none;
}
.previous
	{
		background:url("images/left.png") no-repeat top;
		 left: 0;
	}
.next{

	background:url("images/right.png") no-repeat top;
    right: 0;
	}
.social {
    padding: 10px;
}
.social img, .social svg {
    height: 10px;
    margin-right: 10px;
    vertical-align: middle;
	color: #eb2985;
}
.social i {
    margin-right: 10px;
    font-size: 12px;
}
/* end gallery */
.vid1
{
	width: 100%; height: auto;
}
.vid2
{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video-container {
   width: 100%;
   height: 700px;
   overflow: hidden;
   position: relative;
	padding-top: 100px;
        }

.gray_line
{
	border-top: 1px solid #262626;
}
.gray_line_txt
{
    background-color: #000;
    margin: -18px auto 0 auto;
    text-align: center;
    width: 50px;
	color: #5f5f5f;
	font-size: 1.5em;
}
.color_scheme_dark {
	color-scheme: dark;
}
.line_left
{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    border-radius: 5px;
    order: 1;
    height: 1px;
    flex-grow: 1;
}
.line_right
{
	background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    order: 3;
    flex-grow: 1;
    height: 1px;

}
.col-3frame
{
    border: 20px solid transparent;
    border-image: url(images/lg_subscribe_frame.png) 20 round;
    margin-right: 10px;
    margin-left: 10px;
	width: calc(33.3333333% - 20px);
	max-width: 346px;

}
/* Event Info */
.event-overlay h2,
.event-overlay p {
  text-align: center;
  margin: 10px;
  color: #fff;
}
.event-overlay h2 {
  font-size: 1.375em;
	text-transform: uppercase;
}
.event-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
}

/* Event Image */
.event-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Event Video */
.event-video {
  object-fit: cover; 
position: absolute;
    height: 100%;
    top: 0;
}

/* Overlay with event details */
.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.event-overlay-content {
  display: flex; /* Make it visible when the overlay is active */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Get Access Button */
a.get-access-button:link,
a.get-access-button:visited,
a.get-access-button:active {
  padding: 12px 50px;
  color: white;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 1em;
  margin-top: 10px;
  display: block;
  margin: 20px auto 10px auto;
  width: fit-content;
}

/* Show overlay and video on hover */
.event-container:hover .event-overlay {
  opacity: 1;
  visibility: visible;
}

.event-container:hover .event-video {
  visibility: visible;
}

.play-button-overlay::after {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
  display: inline-block;
}

/* Header Teaser Video */
.teaser-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.product-line
{
    background: url(images/product-line.png) no-repeat center bottom;
    padding-bottom: 20px;
}
.insta
{
	vertical-align: bottom;
	width: 40px;
}
.mem_item
{
	width: 28%;
	text-align: center;
}
.mem_frame
{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(images/membership_frame.png) no-repeat center transparent;
    background-size: cover;
    z-index: 1;
    top: 0;
    left: 0;
	
}

a.pink_btn1:link, a.pink_btn1:visited, a.pink_btn1:active
{
	font-size: 0.875em!important;
    font-weight: 600!important;
    height: 70px!important;
	padding-top: 24px!important;
}
.mem_banner
{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 20px solid transparent;
    border-image: url(images/membership_frame.png) 20 round;
}
.mem_img
{
	margin:-6px -7px -15px 20px;
}
.mem_exp
{
	position: relative;
    text-align: center;
	width: 100%;
	 border: 20px solid transparent;
	border-image: url(images/membership_exp.png) 30 round;
    padding: 0 50px 50px 50px;
}
.mem_exp p
{
	margin: 0;
	padding: 15px 0;
}
input[type=button].tablinks, input[type=submit].tablinks 
{
background: url("images/btn_gray1.png") no-repeat center center;
background-size: cover;
text-transform: uppercase;
color: #fff;
padding: 0;
font-weight: 900;
width: 165px;
height: 53px;
font-family: "Montserrat", serif;
font-size: 1em;
}
input[type=button].tabButtonPressed, input[type=submit].tabButtonPressed 
{
background: url("images/white_board_lgbtn.png") no-repeat center center;
background-size: cover;
}
.back_arr
{
	position: absolute;
    top: 20px;
    left: 30px;
}
.preview-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
 .gallery-container {
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .gallery-item {
        width: calc(33.33333333% - 10px);
		max-width: 100%;
        position: relative;
        background-position: center;
        padding-top:calc(33.33333333% - 6.6px);
        overflow: hidden; 
    }

    .gallery-item a {
       position: absolute;
       height: 100%;
       width: 100%;
       top: 0;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures images resize correctly */
        display: block;
    }
.alignr.txt_hol20.mr30.mb30
{
	margin-top: -10px;
}
.shopline
{
	width: 100%;
	max-width: 496px;
}
.shopline img
{
	width: 100%
}
.check_order div:first-child
{
	width: 50%;
}
/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .txt_hol48Peep {
		font-size: 28px !important;
	          line-height: 22px;
	}
.peepvideo .txt_hol32
	{
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
	
@media only screen and (max-width: 992px){
.content  {
	padding: 10px;
	}
	.txt_hol32
	{
		font-size: 1.75em;
	}
.lips
	{
		padding-bottom: 35%;
		margin-right: -5px;
	}
		.mem_item img
	{
		width: 100%
	}
	.mem_item
	{
		width: 28%;
	}
}

@media only screen and (max-width: 600px) {

	.cart_tot
	{
	bottom:100px;
	}
	.cart_cont
	{
		height: calc(100% - 320px);
	}
#large_img
	{
		height: auto;
    width: 100%;
	}
#lefty, #righty
	{
		width: 32px;
	}
#large_right, #large_left
	{
		width: 58px;
	}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6
	{
	-ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
	margin-bottom: 10px;
}
 .col-shop
	{
	-ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
	margin-bottom: 10px;
}
.logo
	{
	width:40px;
	}

.d-flex, .d-flex-space, .d-flex-center
	{
		display: block;
	}
.d-flex.ev
	{
		display: flex;
	}
.logos
	{
	 margin-right: 0;
    margin-bottom: 20px;
	}
	.box_bord img
	{
		width: 100%;
	}
	.box_bord .fright.ml30, .box_bord .fleft.mr30
	{
		margin-left: 0;
		margin-right: 0;
	}
	.head_box
	{
		padding: 20px;
		border-left: 2px solid #a90955;
		border-right: 2px solid #a90955;
	}
	.box_bord
	{
		padding: 10px;
	}

	.cart_ico img
	{
		width: 25px;
	}
	h4.mt0
	{
		margin-top: 20px!important;
	}
	.button, input[type=button]
	{
		padding: 15px 30px;
	}
	.cart {
    width: 200px;
	}
	.cart_items img {
    max-width: 100%;
}
	.rules .mt30{
		margin-top: 0;
	}
	.row.mt20{
		margin-top: 0;
	}
	.row.mb20
	{
		margin-bottom: 0;
	}
	.mb30
	{
		margin-bottom: 20px;
	}
	.txt_xl
	{
		font-size: 1.5em;
	}
	.box_bord h3.mb20
	{
		margin-top: 20px;
	}
	.evs > div:first-of-type
	{
		width: 100%;
		margin-bottom: 20px;
		padding-top: 80%;
	}
	.evs > div:last-of-type
	{
		width: 100%;
	    margin-bottom: 20px;
	}
	.txt_xxl
	{
		font-size: 1.75em;
	}

	.cart-count
	{
	font-size: 11px;
    width: 20px;
    height: 20px;
	}
	.line_left, .line_right
	{
		display: none;
	}
	h2
	{
		font-size: 1.5em;
	}
	.max800.txt_center.p20
	{
		padding: 10px;
	}
	.mt100
	{
		margin-top: 50px;
	}
	.container_shop
	{
		width: 100%;
		padding: 0;
	}
	.d-flex.ev div
	{
		margin-bottom: 10px;
	}
	.mt100.p20
	{
		padding: 0;
		margin-top: 20px;
		 margin-bottom: 60px;
	}

	.promo_txt
	{
		font-size: 1em;
		left: 50px;
		top: 70px;
		
	}
	.krc_link
	{
	   left: 125px;
        top: 110px;
	}
	.col-3frame
	{
		margin:0 auto 20px auto;
		width: 100%;
	}
	.evsimg
	{
		width: 100%;
		padding-top: 80%;
		margin-bottom: 20px;
	}
	.ev_frame
	{
		display: none;
	}

	.mem_item
	{
	width: 100%;
    height: 100%;
    display: flex;
    border: 20px solid transparent;
    border-image: url(images/membership_frame.png) 20 round;
	margin-bottom: 20px;
	align-items: center;
	}
.mem_item .hidden, .mem_banner .hidden
	{
	display: block;
	}
.mem_item .block, .mem_banner .block, .footer .block
	{
	display: none!important;
	}
.mem_img
	{
	margin:-6px -8px -11px -8px;
	width: 100%;		
}

.mem_item > div:first-child, .mem_banner > div:first-child, .mem_item > div:last-child, .mem_banner > div:last-child
	{
		width: 50%;
		text-align: center;
	}
.mem_banner > div:last-child
	{
		margin-right: -15px;
	}
.txt_48
	{
		font-size: 2em;
	}
.txt_hol32
	{
		font-size: 1.5em;
		line-height: 1.25em;
	}
	.mem_banner .ml30{
		margin-left: 0;
	}
.txt_l
	{
	font-size: 1.25em;
	}

.reverse
	{
	flex-direction: row-reverse;
	}
.reverse div:first-child
	{
		margin-right: -14px;
		
	}
.reverse div:last-child
	{
		margin-right: 14px;
		
	}
.mem_banner .fw900
	{
		display: none;
	}
	a.pink_btn1:link, a.pink_btn1:visited, a.pink_btn1:active
	{
	height: 60px !important;
    background-size: cover!important;
    padding-top: 18px !important;
		
	}
	.d_abs_center
	{
		width: 100%;
	}
	.posver_center{
	height: calc(100vh - 130px);
}
   .gallery-item {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
	padding-top: calc(50% - 10px);
}
	.shopline
{
	max-width: 75%;
}
	.mem_exp
	{
	 padding: 0 10px 10px 10px;
	border: 15px solid transparent;
    border-image: url(images/membership_exp.png) 20 round;
	}
	.back_arr
	{
	 top: -50px;
    left: 0;
	}
	.main-banner
	{
	   padding: 0;
        margin-top: 40px;
	}
	.lips
	{
		width: 55%;
	   margin-right: 0;
		 padding-bottom: 45%;
	}
	.logo_lips
	{
		width: 30px;
	}
	.d_abs_center .txt_center.txt_hol32
	{
		margin-bottom: 10px;
		line-height: 1.5em;
	}
}
@media only screen and (max-width: 440px) {

	.logo_lips
	{
		width: 28px;
	}
	.check_order div:first-child
{
	width: 100%;
}
	input[type=button].tablinks, input[type=submit].tablinks
	{
		width: 150px;
        height: 49px;
	}
}