/**
 * Modal Component Styles for Front End Store
 */

.modal.background {
	position: fixed;
	width: 100%;
	bottom: -1px;
	z-index: 10000;
	background-color: #000;
	opacity: 0.0;
	transition: 0.3s ease-in;
}

.modal.background.open {
	opacity: 0.3;
	height: 100%;
	bottom: 0px;
	transition: 0.3s ease-out;
}

.modal.full {
	width: 100%;
	height: 0px;
	overflow: hidden;
	position: fixed;
	background-color: #f5f7fa;
	box-shadow: var(--shadow);
	z-index: 10001;
	opacity: 0.0;
	padding: 30px;
	border-radius: 0px;
	bottom: -60px;
	transition: 0.3s ease-in;
}

.modal.preview {
	width: 420px;
	height: 0px;
	overflow: hidden;
	position: fixed;
	background-color: #f5f7fa;
	box-shadow: var(--thickShadow);
	z-index: 10001;
	opacity: 0.0;
	padding: 0px;
	border-radius: 0px;
	bottom: -60px;
	transition: 0.3s ease-in;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	margin: auto;
	left: 0px;
	right: 0px;
}

.modal.preview.open {
	height: 800px;
	top: 0px;
	opacity: 1.0;
	overflow: hidden;
	border-radius: 35px;
}

.modal.open {
	height: 100%;
	overflow: auto;
	bottom: 0px;
	opacity: 1.0;
}

.paddingTop {
	padding-top: 20px;
}

.modal.box {
	width: 620px;
	position: fixed;
	background-color: var(--white);
	z-index: 10001;
	opacity: 0.0;
	padding: 30px;
	margin: auto;
	bottom: -1500px;
	border-radius: 12px;
	top: calc(100%);
	left: 0px;
	right: 0px;
	transition: 0.3s ease-in;
}

@supports ((-webkit-backdrop-filter: saturate(180%) blur(40px)) or (backdrop-filter: saturate(180%) blur(40px))) {
	.modal.box {
		background: var(--glass);
		-webkit-backdrop-filter: saturate(180%) blur(40px);
		backdrop-filter: saturate(180%) blur(40px);
	}

	.modal.box.accountordermodal {
		background: var(--glass);
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		backdrop-filter: saturate(180%) blur(20px);
	}
}

.modal hr {
	border-top: 2px solid #658292;
	margin-top: 0px;
	margin-bottom: 0px;
	position: relative;
	width: 100%;
	display: inline-block;
}

.modal.box.accountordermodal {
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	box-shadow: none;
}

.modal.box.accountordermodal hr {
	border-color: var(--primary);
}

.modal.box.accountordermodal .right {
	text-align: right;
	padding: none;
}

@media all and (max-width: 767px) {
	.modal.box {
		width: 95%;
	}
}

.modal.box.open {
	opacity: 1.0;
	top: 0px;
	bottom: 0px;
	left: 0px;
	height: 235px;
	right: 0px;
	transition: 0.5s ease-out;
}

.modal.box .title {
	color: var(--menu);
	text-transform: uppercase;
	font-weight: bolder;
	font-size: 28px;
	line-height: 32px;
	margin-top: -10px;
}

.modal.box .subtitle {
	color: var(--menu);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 5px;
}

.modal.box .label {
	color: var(--menu);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px;
	margin-top: 8px;
}


.modal .close {
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 20px;
	background-image: url(../images/DarkX.svg);
	background-size: contain;
	width: 20px;
	height: 20px;
	opacity: 1.0;
	transition: 0.3s;
	z-index: 10;
}

.modal .close:hover {
	opacity: 0.7;
	transition: 0.3s;
}

.modal .close:active {
	transform: scale(0.95);
	opacity: 0.6;
}

.modal select,
.modal input,
.area input,
.area select,
.area textarea,
textarea {
	height: 50px;
	background-color: var(--input);
	line-height: 30px;
	margin-top: 10px;
	margin-bottom: 5px;
	border-color: var(--border);
	width: 100%;
}

textarea {
	padding-top: 10px;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus,
.modal button:focus {
	border-color: #0563f9;
	box-shadow: 0 0px 7px 0 rgba(0, 107, 255, 0.3);
	background: #ffffff;
	outline: none !important;
}

.modal select:focus {
	border-color: #0563f9;
	box-shadow: 0 0px 7px 0 rgba(0, 107, 255, 0.3);
	background: #ffffff;
	outline: none !important;
	background-size: 22px 10px;
	background-repeat: no-repeat;
	background-position: right 10px top 18px;
	background-image: url(../images/ArrowDown.svg);
}

.modal input.search {
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: right 15px top 12px;
	background-image: url("../images/Search.svg");
	border-radius: 62px;
	padding-left: 19px;
}

.modal .buttons {
	margin-top: 10px;
	text-align: right;
}

.modal .buttons .linkButton {
	position: absolute;
	line-height: 35px;
	cursor: pointer;
}

.modal .button {
	cursor: pointer;
	background-color: #0563f9;
	border-color: #0563f9;
	border-width: 2px;
	border-style: solid;
	line-height: 38px;
	height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: #FFF;
	width: auto;
	opacity: 1.0;
	display: inline-block;
	transition: 0.3s ease;
	border-radius: 10px;
	box-shadow: 0 3px 9px 0 rgba(0, 107, 255, 0.3);
}

.modal .button:hover {
	filter: brightness(90%);
	box-shadow: 0 2px 3px 0 rgba(0, 107, 255, 0.3);
	box-shadow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: 0.3s;
}

.modal .button:active {
	background: #434c5e;
	border-color: #434c5e;
	box-shadow: none !important;
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
	transition: 0.3s;
}

.modal .button.mini {
	height: 27px;
	padding-left: 5px;
	padding-right: 5px;
	line-height: 24px;
	margin-left: -20px;
}

.modal .buttonred {
	cursor: pointer;
	background-color: #FF0D49;
	border-color: #FF0D49;
	border-width: 2px;
	border-style: solid;
	line-height: 38px;
	height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14x;
	font-weight: 600;
	text-transform: uppercase;
	color: #FFF;
	width: auto;
	opacity: 1.0;
	display: inline-block;
	transition: 0.3s ease;
	border-radius: 7px;
	box-shadow: 0 3px 9px 0 rgba(255, 13, 73, 0.3);
}

.modal .buttonred:hover {
	filter: brightness(90%);
	box-shadow: 0 2px 3px 0 rgba(255, 13, 73, 0.3);
	box-shadow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: 0.3s;
}

.modal .buttonred:active {
	background: #434c5e;
	border-color: #434c5e;
	box-shadow: none !important;
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
	transition: 0.3s;
}

.modal .grid.five {
	grid-template-columns: 100px auto 150px 40px 60px;
	line-height: 30px;
}

.modal .grid.two {
	grid-template-columns: 250px auto
}

.modal .grid.three {
	grid-template-columns: 33% auto 33%;
}

.modal .grid.four.buyget {
	grid-template-columns: 40px 25% 25% 25%;
}

.selectors {
	overflow: visible;
}

.selectors .selectItem {
	border-radius: 10px;
	padding-top: 15px;
	padding-left: 5px;
	padding-right: 5px;
	cursor: pointer;
	background-color: #ffffff;
	transition: 0.3s ease;
	min-height: 50px;
	max-height: 75px;
	min-width: 110px;
	font-size: 17px;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.10);
	margin-right: 2px;
	font-weight: 700;
}

.selectors .selectItem:hover,
.selectors .selectItem:focus {
	background: var(--primary);
	color: #ffffff;
	box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
	box-shadow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.selectors .selectItem:active {
	background: #434c5e;
	border-color: #434c5e;
	box-shadow: none;
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
	transition: 0.3s;
}


.selectors .selectItem.selected {
	background-color: var(--primary);
	box-shadow: 0 3px 9px 0 rgba(5, 99, 249, 0.5);
	color: #FFF;
}


.modal.full .sized.discounts {
	margin-left: 7%;
	margin-right: 7%;
	position: relative;
}

.summarytitle {
	font-size: 32px;
	margin-top: 0px;
	margin-bottom: 5px;
	font-weight: 600;
	color: #FF9200;
	background: -webkit-linear-gradient(45deg, #FF9200, #FFE650 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


@media all and (max-width: 1401px) {
	.modal.full .sized.discounts {
		margin-left: 0%;
		margin-right: 0%;
		position: relative;
	}

	.selectors .selectItem {
		font-size: 14px;
	}
}

.area .subtitle.discounttitle {
	line-height: 40px;
	position: relative;
	float: left;
	background-color: white;
	color: #434c5e;
	text-transform: uppercase;
	height: 38px;
	font-size: 22px;
	font-weight: 800;
	padding-left: 0px;
	margin-top: -1px;
	margin-bottom: 0px;
	border-bottom-color: #0563f9;
	border-bottom-style: solid;
	border-bottom-width: 3px;
}

.area label {
	line-height: 8px;
	font-weight: bold;
	color: #434c5e;
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Customize the label (the container)*/
.checkcontainer {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer 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;
	border-radius: 25px;
	border-color: #e6e8eb;
	border-style: solid;
	border-width: 2px;
	background-color: #FFF;
	transition: 0.3s ease;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input~.checkmark {
	background-color: #ffffff;
	border-color: var(--primary);
	transition: 0.3s ease;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked~.checkmark {
	background-color: var(--green);
	border-color: var(--green);
	box-shadow: 0 3px 9px 0 rgba(5, 219, 92, 0.5);
	transition: 0.3s ease;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
	left: 7px;
	top: 2px;
	width: 4px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: 0.3s ease;
}


input.inlinefilter {
	height: 40px !important;
	font-weight: 600;
	font-size: 17px;
	border-radius: 35px;
	background-color: white;
	border-color: white;
	padding-left: 14px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: right 15px top 8px;
	background-image: url("../images/Search.svg");
	margin-bottom: 8px;
}

.minititle {
	position: relative;
	width: 100%;
	color: #434c5e;
	text-transform: uppercase;
	font-family: 'Nunito', 'Open Sans', sans-serif;
	font-weight: 700;
	float: left;
	font-size: 20px;
	margin-bottom: 1px;
	margin-top: 7px;
}

.miniwrapper {
	background-color: #434c5e;
	padding: 10px;
	border-radius: 12px;
}

.area .form label {
	text-align: left;
	line-height: 24px;
	text-transform: uppercase;
	color: #434c5e;
}

.area .form label.white {
	text-align: left;
	line-height: 24px;
	text-transform: uppercase;
	color: #ffffff;
}

.area .subtitle .note {
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 14px;
	line-height: 35px;
	text-transform: none;
	color: #FF0D49;
}

.smallinputlabel {
	margin-top: 24px;
	text-align: center;
	margin-left: 7px;
	font-weight: 800;
	color: #434c5e;
}

.buygetmargin {
	margin-top: 23px !important;
}

.DiscountsideNote {
	background-color: #fff097;
	border-radius: 12px;
	color: #434c5e;
	padding: 20px;
	box-shadow: rgba(9, 30, 66, 0.15) 0px 20px 32px -8px;
	margin-top: 44px;
}


/* Customize the label (the container)*/
.radiocontainer {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.radiocontainer 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;
	border-radius: 25px;
	border-color: #e6e8eb;
	border-style: solid;
	border-width: 2px;
	background-color: #FFF;
	transition: 0.3s ease;
}

/* On mouse-over, add a grey background color */
.radiocontainer:hover input~.checkmark {
	background-color: #ffffff;
	border-color: var(--primary);
	transition: 0.3s ease;
}

/* When the checkbox is checked, add a blue background */
.radiocontainer input:checked~.checkmark {
	background-color: #ffffff;
	border-color: #e6e8eb;
	transition: 0.3s ease;
}

/* Create the checkmark/indicator (hidden when not checked) */
.radiocontainer:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.radiocontainer input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.radiocontainer .checkmark:after {
	left: 2px;
	top: 2px;
	width: 16px;
	height: 16px;
	border-radius: 20px;
	background-color: var(--primary);
	box-shadow: 0 3px 9px 0 rgba(5, 99, 249, 0.5);
	transition: 0.3s ease;
}

.adtoggles {
	grid-template-columns: 136px auto;
	grid-column-gap: 0px;
	width: 236px;
	height: 50px;
	border-radius: 12px;
	background-color: #434c5e;
	color: #ffffff;
	padding-left: 15px;
}

.salefiltertoggle {
	grid-template-columns: 33px 47px;
	grid-column-gap: 10px;
	grid-row-gap: 20px;
	width: 125px;
	height: 50px;
	border-radius: 12px;
	background-color: #ffffff;
	color: #434c5e;
	padding-left: 15px;
	margin-top: 5px;
	line-height: 50px;
	font-size: 14px;
	font-weight: bold;
	position: relative;
	display: grid;
}

.saletoggle {
	background: rgb(3, 219, 92);
	background: linear-gradient(90deg, rgba(3, 219, 92, 1) 0%, rgba(67, 76, 93, 1) 100%);
}


.relaytoggle {
	background: rgb(3, 219, 92);
	background: linear-gradient(90deg, rgba(3, 219, 92, 1) 0%, rgba(0, 212, 255, 1) 100%);
	grid-template-columns: 100px auto;
	grid-column-gap: 0px;
	width: 196px;
}


/**** Preview ****/
#EventDetails .scrollable {
	overflow-x: visible;
	overflow-y: scroll;
	scroll-behavior: smooth;
	padding-left: 0px;
	padding-right: 0px;
	height: 100%;
	background-color: var(--detailsbg);
}

.eventdetails {
	color: #b3bbc7;
}

.subarea .title {
	font-size: 22px;
	text-align: left;
	margin-top: 15px;
	margin-bottom: 10px;
	line-height: 27px;
}