/*--
Author: Jacob Ephrem
Author URL: https://www.caltechlabs.com/
Version: 1.0
--*/

:root {
 --primary-color: #500B59;
 --secondary-color: #390840;
 /*--accent-color: #0CA67C;*/
--accent-color: #087654;
 --white-color:#fff;
 --black-color:#000;
 --primary-font-color:#636363;
 --success-color:#0abf53;
 --error-color:#FF0000;
 --primary-font:'Poppins', sans-serif;
 --secondary-font: 'Roboto', sans-serif;
 --h1-font-size:26px;
 --h2-font-size:24px;
 --h3-font-size:22px;
 --h4-font-size:20px;
 --h5-font-size:18px;
 --h6-font-size:16px;
 --p-font-size:14px;
 --common-font-size:14px;
 --boxshadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
 --boxshadow-hover:0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
 --br_top:1px solid var(--primary-color);
 --br_bottom:1px solid var(--primary-color);
}
/*--=================================================== COMMON CSS ===================================================--*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
html, body {
	font-size: 100%;
	font-family: var(--secondary-font);
	
}
body {
	width: 100%;
	position: relative;
	background-size: 100% 100%;
	background-size: cover;
	height: auto;
	background: var(--white-color);
	font-size: var(--common-font-size);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.wrapper {
	flex: 1;
}
body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	text-decoration: none;
}
body a:hover {
	text-decoration: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
input[type="button"], input[type="submit"], input[type="text"], input[type="email"], input[type="search"] {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	font-family: var(--secondary-font);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--primary-font);
	padding: 0;
	margin: 0;
	line-height: none;
}
p {
	margin: 0;
	padding: 0;
	font-size: var(--p-font-size);
	/*letter-spacing: 1px;*/
	line-height: 1.5;
	color: var(--primary-font-color);
	font-family: var(--secondary-font);
	font-weight: normal;
}

a {
	font-family: var(--secondary-font);
	text-decoration: none;
	outline: none;
	font-size: var(--common-font-size);
}
a:hover {
	text-decoration: none;
	outline: none;
}
ul, ol {
	list-style: none;
	font-family: var(--secondary-font);
	color: var(--primary-font-color);
	font-size: var(--common-font-size);
}
*, *:after, *:before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-rendering: optimizeLegibility;
}
img {
	width: 100%;
	height: 100%;
	border: 0
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
input {
	line-height: normal;
}
textarea {
	overflow: auto;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	padding: 0;
}
.labelspan
{
	display:inline-block;
	width:100px !important;
}
.pcontact
{
color:var(--primary-color);
}
.greenicon
{
	color:var(--accent-color);
}
/*--=================================================== //COMMON CSS ===================================================--*/
/*--=================================================== TOP HEADER CSS  ===================================================--*/
.top_header {
	width: 100%;
	padding: 5px 0;
	/*background: var(--accent-color);*/
	background: #f2f2f2;
}
/*--=================================================== TOP HEADER CSS  ===================================================--*/
/*--=================================================== HEADER CSS  ===================================================--*/
.header {
	width: 100%;
	border-bottom: none;
	z-index: 1000 !important;
	background: var(--primary-color);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
	padding: 10px 10px;
	display: flex;
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	justify-content: space-between;
}
/*--Fixed Header--*/
.fixed-header {
	position: fixed;
	top: 0;
	width: 100%;
	margin: 0 auto;
	background: var(--primary-color);
	-webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.38);
	-moz-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.38);
	box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.38);
	z-index: 5;
	overflow: hidden;
	animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
 0% {
 transform: translateY(-40px);
}
 100% {
 transform: translateY(0px);
}
}
/*--Fixed header End--*/
.logo, .nav_bar {
	display: inline-block;
}
/*--===================================================   Logo Css  ===================================================--*/
.logo {
	float: left;
}
/*--===================================================   //Logo Css ===================================================--*/
/*--===================================================  Navigation Css ===================================================--*/
.nav_bar {
	float: right;
}
.nav_bar ul {
	margin: 0;
	padding: 0;
	display: flex;
}
.nav_bar ul li {
	list-style: none;
}
.nav_bar ul li a {
	line-height: 40px;
	padding: 0 20px;
	color: var(--white-color);
	text-decoration: none;
	display: block;
	position: relative;
	transition: all ease-in-out 550ms;
	font-size: var(--common-font-size);
	font-weight: 400;
	font-family: var(--primary-font)!important;
	z-index: 2;
	overflow: hidden;
}
.nav_bar ul li a:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,1);
	z-index: -1;
	opacity:0;
	-webkit-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	border-top: 3px solid var(--accent-color)!important;

}
.nav_bar ul li a:hover:before {
	opacity: 1;
	top: 0;
	
}
.nav_bar ul li a.active:before {
	opacity: 1;
	top: 0;
}
.nav_bar ul li a:hover, .nav_bar ul li a.active {

	color:var(--primary-color);
}
.menu-toggle {
	color: var(--white-color);
	font-size: 20px;
	float: right;
	cursor: pointer;
	display: none;
	border: 1px solid var(--white-color);
	padding: 5px 10px;
	border-radius: 5px;
	/*margin-right: 20px;*/
}
.menu-toggle i
{
	color:var(--white-color);
}
.menu-toggle:hover {
	
	opacity:.9;
	/*color: var(--secondary-color);
	border: 1px solid var(--secondary-color);*/
}
/*---PROFIL--*/
.user_area {
	position: relative;
	cursor: pointer;
}
.User-Dropdown {
	display: none;
	position: absolute;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0px 0px 8px rgba(214, 214, 214, 0.78);
	list-style: none;
	/* padding: 0 20px;*/
	width: 200px;
	margin: 0;
	top: 50px;
	right: 0;
	z-index: 9999;
}
.User-Dropdown:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	margin-left: -0.5em;
	right: 0px;
	box-sizing: border-box;
	border: 7px solid black;
	border-color: transparent transparent #ffffff #ffffff;
	transform-origin: 0 0;
	transform: rotate(135deg);
	box-shadow: -3px 3px 3px -3px rgba(214, 214, 214, 0.78);
}
.User-Dropdown.U-open {
	display: block;
}
.User-Dropdown ul {
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-wrap: wrap;
	border-radius: 7px;
	width: 100%!important;
}
/*#500B59;
 --secondary-color: #390840;
 --accent-color: #0CA67C;*/
.User-Dropdown ul li {
	width: 100%!important;
	clear: both;
	display: block;
	padding: 0px;
	border-bottom: 1px solid rgba(215, 215, 215, 0.3);/*border-bottom: 1px solid #500B59;*/
}
.User-Dropdown ul li:last-child {
	border-bottom: 0px;
}
.User-Dropdown ul li a {
	display: block!important;
	font-size: 13px;
	padding: 5px 25px 5px 10px !important;
	text-decoration: none;
	color: #500B59!important;
	transition: all 0.2s ease-out;
}
.User-Dropdown ul li:before {
	content: "";
	width: 0px;
	height: 50px;
	position: absolute;
	background: #0CA67C;
	margin-top: 0px;
	border-radius: 0 1px 1px 0;
	left: 0px;
	transition: all 0.2s ease;
}
.User-Dropdown ul li:hover:before {
	width: 5px;
	border-radius: 30px;
}
.User-Dropdown ul li a:hover {
	margin-left: 5px;
}
/*--//PRofill--*/
/*--===================================================   //Navigation Css ===================================================--*/
/*--=================================================== //HEADER CSS  ===================================================--*/
/*---======================= SMALL MARGIN AFTER HEADER CSS ====================-----*/
.small_margin_after_header {
	width: 100%;
	padding: 5px 0 0;
	background: #fff;
	overflow: hidden;
}
/*---======================= //SMALL MARGIN AFTER HEADER CSS ====================-----*/
/*---================= SMALL MARGIN BEFORE FOOTER CSS ======================--*/
.small_margin_before_footer {
	width: 100%;
	/*padding:15px 0 0;*/
	margin-bottom:4px;
	/*background: #f2f2f2;*/
	overflow: hidden;
	/*max-height:90px;*/
}
/*---================= //SMALL MARGIN BEFORE FOOTER CSS ======================--*/

/*--=================================================== FOOTER  CSS  ===================================================--*/
.footer {
	width: 100%;
	background: var(--secondary-color);
	overflow: hidden;
	text-align: center;
}
/*--=================================================== Footer Top CSS  ===================================================--*/
.footer_top {
	width: 100%;
	padding: 30px 0;
	overflow: hidden;
}
.footer_top h5 {
	font-size: var(--h5-font-size);
	font-weight: bolder;
	color: #fff;
	/*letter-spacing: 1px;*/
	padding: 10px 0 20px;
	text-align: left;
}
.footer_top p {
	font-size: var(--common-font-size);
	font-weight: normal;
	color: var( --primary-font-color);
	/*letter-spacing: 1px;*/
	text-align: justify;
	margin: 0;
	padding: 0;
}
.footer_nav {
	margin: 0;
	padding: 0;
}
.footer_nav li {
	list-style: none;
	display: flex;
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	
	text-align: left;
	margin: 0;
	padding: 0;
}
.footer_nav li i, .footer_nav li a {
	display: inline-block;
}
.footer_nav li a {
	line-height: 30px;
	padding: 0 20px;
	color: var(--white-color);
	text-decoration: none;
	display: block;
	position: relative;
	transition: all ease-in-out 550ms;
	font-size: var(--common-font-size);
	font-weight: 500;/*letter-spacing: .5px;*/
}
.footer_nav li i {
	margin-right: 5px;
}
.footer_nav li a:hover, .footer_nav li a.active {
	color:var(--accent-color) ;/*var(--primary-color)*/
	
}
.join_div {
	width: 100%;
	padding: 5px 0 15px;
}
.join_div .join_form {
	display: flex;
}
.join_input {
	border: none;
	outline: none;
	padding: 8px 20px;
	color: #fff;
}
.join_form .join_input[type= 'email'] {
	/* flex: 1;*/
	width: 62%;
	font-size: var(--common-font-size);
	background-color: #fff;
	color: var(--primary-color);
}
.join_form .join_input[type= 'submit'] {
	background-color: var(--primary-color);
	color: #fff;
	cursor: pointer;
	text-transform: capitalize;
	font-size: var(--common-font-size);
	font-weight: bold;
}
.join_form .join_input[type= 'submit']:hover {
	background-color: #fff;
	color: var(--primary-color);
}
/*---Social---*/
.social-icon {
	color: #fff;
}
ul.social-icons {
	margin: 0;
	padding: 0;
	text-align: center
}
.social-icons li {
	display: inline-block;
	text-align: center;
}
.social-icons a {

	color: #fff;
	text-decoration: none;
	padding-right: 10px;
}
.fa-facebook {
	padding: 10px 14px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	background-color: var(--primary-color);
}
.fa-facebook:hover {
	background-color: #3d5b99;
}
.fa-twitter {
	padding: 10px 12px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	background-color: var(--primary-color);
}
.fa-twitter:hover {
	background-color: #00aced;
}
.fa-youtube {
	padding: 10px 14px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	background-color: var(--primary-color);
}
.fa-youtube:hover {
	background-color: #e64a41;
}
.fa-instagram {
	padding: 10px 14px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	background-color: var(--primary-color);
}
.fa-instagram:hover {
	background-color: #e1306c;
}
/*----//Social---*/

/*--=================================================== //Footer Top CSS  ===================================================--*/


hr.hr-1 {
	margin: 0;
	display: block;
	border: none;
	height: 1px;
	background: #999;
	background: linear-gradient(to right, white, #999, #999, #999, white);
}
/*--=================================================== Footer Bottom CSS  ===================================================--*/

.footer_bottom {
	/*border-top: .2px solid #999;*/
	overflow: hidden;
	display: flex;
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	justify-content: space-between;
	padding: 5px 0 30px;
}
.footer_bottom .p_footer {
	margin: 0px;
	display: inline-block;
}
/*--Back To Top Css--*/
.back-to-top:hover {
	color: #fff;
	background: var(--primary-color);
	text-decoration: none;
}
.back-to-top {
	display: none;
	position: fixed;
	bottom: 2.2rem;
	right: 1rem;
	width: 50px;
	height: 50px;
	line-height: 2.9rem;
	font-size: 1.5rem;
	color: #fff;
	background: var(--primary-color);
	text-decoration: none;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}
/*--Back To Top Css End--*/
/*--=================================================== //Footer Top CSS  ===================================================--*/
/*--=================================================== //FOOTER  CSS  ===================================================--*/
/*--=================================================== SLIDER  CSS  ===================================================--*/
.bg-image {
	width: 100%;
	height: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative
}
.bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bg-image .overlay {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(0%, -50%);
	z-index: 4;
	color: white;
}
.overlay h1 {
	font-size: 65px!important;
	font-weight: 600;
	text-shadow: 8px 8px 3px rgba(0, 0, 0, 0.1);
}

/*--=================================================== //SLIDER  CSS  ===================================================--*/
/*--=================================================== TICKET   CSS  ===================================================--*/

.bg-section-one {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 100px 0 100px;
}
/* .section-head {
} */
.section-head h1 {
	font-weight: bolder;
	font-size: var( --h1-font-size);
	/*letter-spacing: 1px;*/
	color: var(--primary-color);
}
.section-details {
	padding-top: 10px;
}
.equal_height {
	   display: flex;
  flex-flow: row wrap;
	
	
}
.equal_height_col {
margin-bottom: 25px;
		display: flex;
	
}
.equal_height_col:last-of-type
{
	margin-bottom: 0!important;
}
.card {
	border: none !important;
	box-shadow: var(--boxshadow);
}
.card_details {
	padding: 10px 20px;
	background: #fff;
	
    flex-grow: 1;

	
}
.card-body {
	padding: 0 !important;
	margin-bottom: auto;/*background: #000;*/
	/*flex: 1 0 auto;*/
}
.card_boxsh {
	box-shadow: var(--boxshadow);
	transition: box-shadow 0.56s ease-in-out;
	width: 100%;
	height: 100%;
	border-bottom: 4px solid transparent!important;
	
  display: flex;
  flex-direction: column;
	align-items: stretch;
 
}
.card_boxsh:hover {
	box-shadow: var(--boxshadow-hover);
	border-bottom: 4px solid var(--primary-color)!important;
	overflow: hidden;
}
.img_height {
	 max-width: 100%;
  height: auto;
	/*object-fit:cover;*/
}
.full_height
{
	height: 100%!important;
}
.p_card_main {
	font-size: var(--common-font-size);
	font-weight: normal;
	color: var(--accent-color);/*letter-spacing: 1px;
	margin-bottom: 8px;*/
}
.p_card_main a {
	color: var(--accent-color);
}
.p_card_main a:hover {
	color: var(--secondary-color);
}
.p_strong {
    font-weight: bold;
    padding-left: 1px;
}
.fa-location-dot
{
	font-size: 1.25em;
    padding-top: 2px;
}
.fa-desktop
{
	font-size: .9em;
	padding-bottom:2px;
    
}
.p_colour_change {
	color: var(--primary-color)!important;
}
.p_colour_change span:last-child
{
	color:var(--accent-color);
}
.h3card {
	font-size: var(--h3-font-size);
	
	font-weight: bolder;
	color: var(--primary-color);/*letter-spacing: 1px;*/
	
	/*background: #ccc;
	padding: 0 0 10px;*/
	
}
.h3card a {
	color: var(--primary-color);
	/*font-size: var(--h3-font-size);*/
	font-size: var(--h5-font-size);
	font-family: var(--primary-font)!important;
}
.p_card
{
	max-height:80px;
	overflow:hidden;
}
.p_card p{
	
	width:100%;max-height: 5.4rem;
	display: -webkit-box;
    -webkit-box-orient: vertical;
	overflow: hidden;
    text-overflow: ellipsis;
	
    -webkit-line-clamp: 3;
    word-break: break-word;

}
.p_card p:not(:first-child)
{
	display:none;
}
.event_more {
	overflow: hidden;
	/*//display: flex;*/
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	justify-content: space-between;
}
/*.event_more .h6card_entry, .event_more .h6card_book {
	
	margin: 0px;display: inline-block;
}*/
.event_more .h6card_entry {
	text-align: left;
	/*float: left;*/
	margin-bottom:0.5rem !important;
}
.event_more .h6card_book {
	text-align: center;
	/*float: right;*/
}
.btnPayNow
{
border:0 !important;
	color:#fff;
	
	padding: 0.975rem 0.95rem;
    cursor:default;
	display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    width:100px;
	height:100%;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    
    
    font-size: 1rem;
    /* border-radius: 0.25rem; */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btnPayNow:not[disabled],.btnPayNow:focus,.btnPayNow:active
{
	border:0!important;
	outline:0!important;
	font-weight:bold;
	box-shadow:0!important;
	cursor: pointer;
	
}
.btnbook {
	display: inline-block;
	width:100%;
	/*float: right;*/
	cursor: pointer;
	padding: 10px;
	font-size: var(--common-font-size);
	border: none;
	outline: none;
	border-radius: none;
	color: var(--white-color)!important;
	background: var(--accent-color);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	font-weight: 600;/*letter-spacing: .5px;*/
}
.btnbook:hover {
	background: var(--secondary-color);
	color: var(--white-color)!important;
}
.card-footer {
	background: none!important;
	border-top: 1px solid var(--primary-color);
	padding: 0 !important;
	padding-top: 10px !important;/*margin-top: auto;
	align-self:  baseline;*/
	display: flex;
        flex-direction: column;
      
        margin-top: auto;
}
.p_align_same {
	overflow: hidden;
	display: flex;
	align-items: baseline;
}
.p_align_same span i {
	margin-right: 10px;
}
.head_padding_large {
	padding-top: 15px;
	padding-bottom: 15px;
}
.head_padding_medium {
	padding-top: 10px;
	padding-bottom: 10px;
}
.head_padding_small {
	padding-top: 5px;
	padding-bottom: 5px;
}
.head_margin_bt_small {
	margin-bottom: 5px;
}
.head_margin_bt_meidum {
	margin-bottom: 10px;
}
.head_margin_bt_large {
	margin-bottom: 15px;
}
.head_margin_bt_Xlarge {
	/*margin-bottom: 20px;*/
	margin-bottom: 10px;
	
}
.eventBorder {
	margin: 0 auto;
	width: 100%;
	padding: 5px;
	text-align: center;
	border-top: solid 2px var(--primary-color);
	position: relative;
}
.eventBorder:before {
	content: '';
	border-top: solid 5px var(--primary-color);
	width: 100%;
	height: 100%;
	position: absolute;
	top: -10px;
	left: 0;
}

/*--TEST--*/

			/**
			 * Flex things:
			 * — Mobile first
			 * — Responsive
			 */
		.flexe .colcar img {
	width: 100%;
	height: auto;
}
.flexe {
	display: flex;
	flex-direction: row;
	
	/*justify-content: space-around;*/
	 
}
.flexe .colcar {
	display: flex;
	flex-direction: column;
	
}
.card_details {
	display: flex;
	flex-direction: column;
	flex: 1;
}
/*.flexe .colcar {
margin-bottom: 25px;
		
	
}
.flexe .colcar:last-of-type
{
	margin-bottom: 0!important;
}*/
/*.flexe .colcar:not(:nth-last-child(-n+4))  {
  margin-bottom: 25px;
}*/
			.flexe .colcar .btn {
				align-self: flex-start;
				margin-top: auto;
			}
	  .ad_right
{
	 margin-left: auto;
	position:relative;
	text-align: center;
}
 .idiv i
{
	padding-right:1px;
	cursor:pointer;
	background: #ccc;
	border-radius:50%;
	margin-right: 5px;
}
.idivhadd i
{
	padding-right:1px;
	cursor:pointer;
	background: #ccc;
	border-radius:50%;
	margin-right: 2px;
}
.idivhadd {
    font-size: 12px!important;
    color: #999;
    position: absolute;
    text-align: center;
    width: auto;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    z-index: 100;
}
.idiv
{
	font-size:12px!important;
	color:#999;
	position:relative;
	text-align:center;
	width:auto;
	/*top:10px;
	padding: 1px;
	
	right:30%;
	
	
	z-index: 2000;
	
	color:#fff;
	font-size:12px;
	background: #ccc;*/
	
}
.idiv small,.idivhadd small
{
	position :absolute;
	top:-5px;
	
	width:auto;
	white-space: nowrap;
	display:none;
	padding:2px 5px;
	font-size:14px;
}
.idiv small
{
	
	left:16px;
	
}
.idivhadd small
{
	    
    left: 40%;
    margin: auto;
	
}
.idivhadd:hover small
{
	display:none;
}
.idiv:hover small,.idivhadd:hover small
{
	display:block;
	background: #ccc;
	color:#000;
	width:auto;
}

			@media (max-width: 900px) {
				.flexe {
					flex-wrap: wrap;
				}
			}
/*--//TEst--*/
/*--=================================================== //TICKET  CSS  ===================================================--*/
/*--================================================= TICKET DETAIL  CSS ================================================--*/

.tkt-basic {
	background: #f2f2f2;
	overflow: hidden;
}
.plt_zero {
	padding-left: 0;
}
.prt_zero {
	padding-right: 0;
}
.tkt_img {
	
	overflow: hidden
}
.tkt_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tkt_basic_right_ab {
	position: relative;
}
.tkt_basic_right {
	background: #f2f2f2;
	padding: 15px 20px;
}
/*.tkt_date_place {
	padding: 15px 0 0;
}*/
.h5card {
	text-align: center;
	font-size: var(--h5-font-size);
	font-weight: bolder;
	color: var(--primary-color);
}
.plan_header {
	overflow: hidden;
	display: flex;
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	justify-content: space-between;
}
.plan_title, .plan_price {
	font-size: 14px;
	color: var(--accent-color);
	/*	letter-spacing: 1px;*/
	margin-bottom: 5px;
}
/*.plan_dots {
	flex: 1;
	border-bottom: 1px dashed var(--primary-color);
	margin: 0 15px;
}*/
.btnpurchase {
	background: var( --primary-color);
	width: 100%;
	color: var(--white-color)!important;
	padding: 10px;
	text-align: center;
	font-size: var(--common-font-size);
}
.btnpurchase:hover {
	background: var(--secondary-color);
	color: var(--white-color)!important;
}
.btnabsoulte {
	bottom: 0;
	position: absolute;
	left: 0;/*right: 0;
	margin: 0 auto;*/
}
.btnpurchase a {
	color: var(--white-color)!important;
	font-weight: bold;
}
.btnDiv {
	width:100% ;
	/*//max-width:350px ;*/
	
}
.tkt_others {
	padding: 30px 0px
}
.tkt_others .h5card {
	text-align: left !important;
	font-size: var(--h5-font-size);
	font-weight: bolder;
	color: var(--primary-color);
	margin-bottom: 5px;
}
.tkt_others p {
	/*text-indent: 15px;*/
	margin-bottom: 20px;
}

.inner_ad
{
	width:auto;
	max-width:100%;
	height:100%;
	max-height:300px;
	margin: auto;
}
.sponsor {
	padding: 20px 0;
	overflow: hidden;
}
.p20
{
	padding:20px;
	padding-top: 0;
}
.sponsor .h5card {
	text-align: center !important;
	font-size: var(--h5-font-size);
	font-weight: bolder;
	color: var(--primary-color);
	margin-bottom: 5px;
}
.sponsor .card {
	margin-bottom: 30px;
}
.sponsor .h6card {
	text-align: center!important;
	padding: 10px;
}
.h6card {
	font-size: 14px;
	font-weight: bolder;
	color: var(--accent-color);
	/*letter-spacing: 1px;*/
	margin-bottom: 10px;
}
.h6card a {
	color: var(--primary-color);
}
.h6card a:hover {
	color: var(--accent-color);
}
/*--============================================= //TICKET DETAIL  CSS  ============================================--*/
/*---========== Ticket Selection-------====*/
.ticket_selection_area {
	padding: 10px 0;
}
.ticket_selection_area .h5card {
	text-align: left !important;
	font-size: var(--h5-font-size);
	font-weight: bolder;
	color: var(--primary-color);
	margin-bottom: 10px;
}
/*--Plan STYLE--*/
.plansdiv li {
	font-size: 13px;
	color: #000;
	padding: 10px;
	clear: both;
	display: inline-block;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0px 0px 4px #e2e2e2;
	width: 100%;
	margin-bottom: 10px;
}
.plansdiv li h3 {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: bold;
	/*letter-spacing: 2px;*/
	margin-bottom: 5px
}
.plansdiv li h5 {
	font-size: 15px;
	color: var(--primary-color);
	font-weight: bold;
	/*letter-spacing: 2px;*/
	margin-bottom: 5px
}
.plan_detail_title {
	margin-top: 20px;
	padding: 5px;
	position: relative;
	margin-bottom: 0;
	cursor: pointer;
	color: var(--primary-color) !important;
	font-weight: bold;/*letter-spacing: 1px;*//*background: #0e809d;*/
}
.plan_detail_content {
	padding: 0px 5px 5px;
	/*background-color: #0e809d;
	background: rgba(14,128,157,0.5);*/
	
	color: #fff;
}
.plan_detail_content p {
	margin: 0;
}
.book_summary {
	padding: 10px 20px;
	overflow: hidden;
	background: #f2f2f2;
}
.br_top {
	border-top: 1px solid var(--primary-color);
	padding-top: 5px;
}
.br_bottom {
	border-bottom: 1px solid var(--primary-color);
	padding-top: 10px;
	margin-bottom: 5px;
}
.h5tkt {
	font-size: var(--common-font-size);
	
	color: var(--accent-color);
	padding-bottom: 10px;
}

.tkt_summary {
	overflow: hidden;
	display: flex;
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	justify-content: space-between;
}
.tkt_summary .h5tkt_plan, .tkt_summary .h5tkt_price {
	margin: 0px;
	display: inline-block;
}
.tkt_summary .h5tkt_plan {
	text-align: left;
	float: left;
}
.tkt_summary .h5tkt_price {
	text-align: right;
	float: right;
	
}
.gtot
{
	font-weight: bold;
}
.btnContinue,.btnconfirmtkt,.btnsnmsg {
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Philosopher', sans-serif;
	display: inline-block;
	padding: 10px 25px;
	font-size: var(--common-font-size);
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: none;
	background-color: var(--primary-color);
	color: #fff;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.btnContinue:hover,.btnconfirmtkt:hover {
	background-color: var(--primary-color);
	opacity: .8;
	color: #fff;
}
.btnContinueviarate {
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Philosopher', sans-serif;
	width: 100%;
	padding: 10px 25px;
	font-size: var(--common-font-size);
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: none;
	background-color: var(--primary-color);
	color: #fff;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.btnContinueviarate:hover {
	background-color: var(--primary-color);
	opacity: 0.8;
	color: #fff;
}
.disableda {
	pointer-events: none;
	cursor: default;
	opacity: 0.7;
}
#contactorg 
{
	
	/*position:relative;
	top:10%;
	width:100%;
	height:100vh;*/
	position:relative;
	
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	margin:auto;
	background:rgba(66,63,63,.6);
	
}
/*#contactorg 
{
	position:relative;
	
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	margin:auto;
	background:rgba(66,63,63,.6);
	
	
}*/

.mob_block
	{
		display:none;
	}
.te,.tetckt,.terms
{
	position:fixed;
	
	width:100%;
	height:100vh;
	top:0;
	left:0;
	right:0;
	margin:auto;
	background:rgba(66,63,63,.6);
	z-index: 1000;;
	overflow-y: scroll;
}

.sndmsg,.edcontct,.edtckt
{
	
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	
	z-index: 2000;
	overflow:hidden;
	box-sizing: border-box;
	
}

#close,#tcktclose,#termclose
{
cursor:pointer;
	color:var(--accent-color);
}
.popup-inner {
	
	width: 85%;
	max-width: 600px;
	margin:auto;
	padding: 30px 30px;
	height: fit-content;
	
	border: none;
	outline: none;
	border-radius: 0.25rem;
	color: #000;
	background: #f2f2f2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	overflow-y:auto;
}
.coupon_container
{
	position:relative;
}
.coupon_apply {
    position: absolute;
    top: 49%;
    right: 5px;
    background: #500B59;
    color: #fff;
    padding: 0.1rem 0.75rem;
    border-radius: 0.25rem;
    border-color: transparent;
}
/*---========== //Ticket Selection-------====*/
/*---Contact Inormation--*/
.contact_info {
	padding: 20px 0;
}
.contact_info .h5card {
	text-align: left !important;
	font-size: var(--h5-font-size);
	font-weight: bolder;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.registerform {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	/*background: #4B4343;*/
	/*padding: 20px 0;*/
	/*border: 1px solid #0abf53;*/
	overflow: hidden;
}
.form_margin {
	margin-bottom: 15px;
}
.form_label {
	font-size: 15px;
	position: relative;
	float: left;
	color: var(--primary-color);
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Philosopher', sans-serif;
	margin-bottom: 5px;
}
.form-group {
	margin-bottom: 20px;
}
.form-group:last-of-type {
	margin-bottom: 0px;
}
.form-control-form {
	display: block;
	width: 100%;
	height: auto;
	padding: 10px;
	font-size: 14px;
	line-height: 1.42857143;
	color: var(--primary-color);
	/*background: rgba(255,255,255,0.4);*/
	background: transparent;
	border: none;
	border: 1px solid #ccc;
	border-radius: none;
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Philosopher', sans-serif;
}
.form-control-form:focus {
	border-color: #ccc;
	outline: 0;/*-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rxgba(102,175,233,.6)*/
}
 .form-control-form:valid {
	/*border-width: 1px;
  border-left-color:  #0abf53;
	border-right-color: #0abf53;*/
	border-bottom: 3px solid #0abf53;
}
.form-control-form:optional {
  /*border-left-color: #FA8072;
	border-right-color: #FA8072;
	border-left-color: #FF7F00;
	border-right-color: #FF7F00;*/
	border-bottom: 3px solid #FF7F00;
}
.form-control-form:invalid:not(:focus):not(:-moz-placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
.form-control-form:invalid:not(:focus):not(:-ms-input-placeholder) {
 border-bottom: 3px solid #FF5D73;
}
.form-control-form:invalid:not(:focus):not(:placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
/*--Requirement--*/
.requirements {
	padding: 0 15px;
	max-height: 0;
	-webkit-transition: 0.28s all ease;
	transition: 0.28s all ease;
	overflow: hidden;
	color: #FF0000;
	font-style: italic;
	background: #FFC0CB;
}
.form-control-form:invalid:not(:focus):not(:-moz-placeholder-shown) ~ .requirements {
 max-height: 200px;
}
.form-control-form:invalid:not(:focus):not(:-ms-input-placeholder) ~ .requirements {
 max-height: 200px;
}
 .form-control-form:invalid:focus:not(:placeholder-shown) ~ .requirements {
padding: 15px 15px;
 max-height: 200px;
}
.form-control-form:invalid:focus:placeholder-shown ~ .requirements {
padding: 15px 15px;
 max-height: 200px;
}
.form-control-form:invalid:focus:not(:-moz-placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
.form-control-form:invalid:focus:not(:-ms-input-placeholder) {
 border-bottom: 3px solid #FF5D73;
}
.form-control-form:invalid:focus:not(:placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
/*--//Requirement--*/


.form-control-form::-moz-placeholder {
color:#1C2A43;
opacity:1;
}
.form-control-form:-ms-input-placeholder {
color:#1C2A43;
}
.form-control-form::-webkit-input-placeholder {
color:#1C2A43;
}
input[type=search] {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
	resize: none;
}
textarea.form-control-form {
	height: 200px;
}
/*--//Contact Infoprmation--*/
/*--//Register Page Css--*//*--Table--*/
.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	
}
.table-responsive > .table-bordered {
	border: 0;
}
.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
	/*color: var(--primary-color); /*6c757d */
	color: var(--accent-color);
}
.table thead th, .table th {
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 700;
	text-align: left;
	padding: 10px;
	font-size: 15px;
}
.table td {
	padding: 15px;
	font-size: 15px;
	vertical-align: top;/*border-bottom: 1px solid #0e809d;*/
}
.grand_tot {
	padding: 15px 0;
	/*color: var(--primary-color);*/
	color: var(--accent-color);
}
.grand_tot h4 {
	font-size: 20px;
}
.grand_total {
	/*color: var(--primary-color);*/
	color: var(--accent-color);
}
/*--checkbox terms and conditions--*/
.termsconditions {
	width: 100%;
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-font-color)!important;
	text-align: justify;
	overflow: auto;
	padding: 10px;
	height: 120px;
	position: relative;
	margin-bottom: 10px;
	font-weight: normal;
}
.termsconditions p {
	color: var(--primary-color)!important;
	font-weight: normal;
}
.checkboxp {
	padding: 0;
	line-height: 0;
	margin-bottom: 10px !important;
}
.termsclass:required + label {
 margin-left:5px;
 font-size:15px;
	font-weight: normal;
}
 .termsclass:required:invalid + label {
color: red;
}
 .termsclass:required:valid + label {
color: green;
}
/*---//checkbox terms and conditions--*/
/*--//Register Page Css--*//*--Table--*/
/*--Login Page---*/
.login-inner {
	max-width: 600px;
	width: 100%;
	margin: 100px auto;
	padding: 50px 30px;
	border: none;
	outline: none;
	border-radius: 0.25rem;
	color: #000;
	background: #f2f2f2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.heading h1 {
	font-weight: bolder;
	font-size: var( --h1-font-size);
	/*	letter-spacing: 1px;*/
	color: var(--primary-color);
}
.text-links {
	font-size: var(--common-font-size);
	font-weight: 400;
	color: var(--accent-color);
}
.text-links:hover {
	text-decoration: underline;
}
.login-form {
	width: 100%;
	height: auto;
	margin-top: 1rem;
}
.input-control {
	/*display: flex;
  align-items: center;
  justify-content: space-between;*/
	margin-bottom: 1.25rem;
	position: relative;
}
.input-field {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: inherit;
	width: 100%;
	height: auto;
	/*padding: 0.75rem 1.25rem;*/
	padding: 0.75rem 1.45rem;
	/*	border: none;*/
	border: 1px solid var(--primary-color);
	outline: none;
	border-radius: 4px;/* 2rem;*/
	color: var(--primary-color);
	background: #f2f2f2;
	text-transform: unset;
	text-rendering: optimizeLegibility;
	display: block;
}
.input-field::-moz-placeholder {
 opacity: 0;
 visibility: hidden;
 color: transparent;
}
.input-field:-ms-input-placeholder {
 opacity: 0;
 visibility: hidden;
 color: transparent;
}
.input-field::placeholder {
 opacity: 0;
 visibility: hidden;
 color: transparent;
}
.input-field:focus {
	outline: none;
	border: 1px solid var(--primary-color);
}
.form-label {
	position: absolute;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: inherit;
	left: 1rem;
	top: 0.75rem;
	padding: 0 0.50rem;
	color: var(--primary-color);
	background: #f2f2f2;
	transition: all 0.3s ease;
	pointer-events: none;
}
.input-field:focus ~ .form-label {
	top: -0.75rem;
	left: 1rem;
	z-index: 5;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary-color);
	transition: all 0.2s ease-in-out;
}
.business_detail
{
	position:relative;
	border: 1px solid var(--primary-color);
	
	border-radius: 4px;/* 2rem;*/
}
.business_detail .label
{
	position:absolute;
	top: -0.75rem;
	left: 1rem;
	z-index: 5;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0 0.50rem;
	color: var(--primary-color);
	background: #f2f2f2;
}
.input-field:not(:-moz-placeholder-shown).input-field:not(:focus) ~ .form-label {
	top: -0.75rem;
	left: 1rem;
	z-index: 9;
	font-size: 0.875rem;
	font-weight: 500;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.input-field:not(:-ms-input-placeholder).input-field:not(:focus) ~ .form-label {
	top: -0.75rem;
	left: 1rem;
	z-index: 9;
	font-size: 0.875rem;
	font-weight: 500;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.input-field:not(:placeholder-shown).input-field:not(:focus) ~ .form-label {
	top: -0.75rem;
	left: 1rem;
	z-index: 9;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
}
.input-submit {
	float: right;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: inherit;
	cursor: pointer;
	min-width: 40%;
	height: auto;
	padding: 0.65rem 1.25rem;
	border: none;
	outline: none;
	border-radius: 4px;
	color: #fff;
	background: var(--primary-color);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
}
.field-icon {
	/*  float: right;
  margin-left: -25px;
  margin-top: -25px;
  position: relative;
  z-index: 2;*/
	background: none;
	border: none;
	color: #0e809d;
	/*display: none;*/
  /*font-size: .9em;*/
	font-weight: 600;
	/*padding: .5em;*/
	position: absolute;
	right: .75em;
	top: 28%;
	z-index: 9;
	cursor: pointer;
}
.disableda {
	pointer-events: none;
	cursor: default;
	opacity: 0.7;
}
/*---//Login Page--*/
/*--Validation --*/
div.form__requirements {
	color: #FF5D73;
	font-size: 0.75rem;
	margin: 0.5rem 0;
	overflow: hidden;
	max-height: 0;
	display: block;
	width: 100%;
}
.input-field:valid {
 border-bottom: 3px solid #0abf53;
}
 .input-field:invalid:not(:focus):not(:-moz-placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
.input-field:invalid:not(:focus):not(:-ms-input-placeholder) {
 border-bottom: 3px solid #FF5D73;
}
.input-field:invalid:not(:focus):not(:placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
.input-field:invalid:not(:focus):not(:-moz-placeholder-shown) ~ .form__requirements {
 max-height: 200px;
}
.input-field:invalid:not(:focus):not(:-ms-input-placeholder) ~ .form__requirements {
 max-height: 200px;
}
 .input-field:invalid:focus:not(:placeholder-shown) ~ .form__requirements {
 max-height: 200px;
}
.input-field:invalid:focus:placeholder-shown ~ .form__requirements {
 max-height: 200px;
}
 .input-field:invalid:not(:focus):not(:placeholder-shown) ~ .form__requirements {
 max-height: 200px;
}
.input-field:invalid:focus:not(:-moz-placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
.input-field:invalid:focus:not(:-ms-input-placeholder) {
 border-bottom: 3px solid #FF5D73;
}
.input-field:invalid:focus:not(:placeholder-shown) {
 border-bottom: 3px solid #FF5D73;
}
select.input-field:invalid {
 color: var(--primary-color);
/* border-bottom: 3px solid transparent !important;*/
	border-bottom: 1px solid var(--primary-color) !important;
}
select.input-field:invalid ~ .form__requirements {
 max-height: 0!important;
}
.input-field select option {
	color: #000;
}
.input-field select option[value=""][disabled] {
	display: none;
}
/*input[type=email]:invalid:not(:focus):not(:-moz-placeholder-shown), input[type=password]:invalid:not(:focus):not(:-moz-placeholder-shown) {
  border-bottom: 3px solid #FF5D73;
}
input[type=email]:invalid:not(:focus):not(:-ms-input-placeholder), input[type=password]:invalid:not(:focus):not(:-ms-input-placeholder) {
  border-bottom: 3px solid #FF5D73;
}
input[type=email]:invalid:not(:focus):not(:placeholder-shown),
input[type=password]:invalid:not(:focus):not(:placeholder-shown) {
  border-bottom: 3px solid #FF5D73;
}
input[type=email]:invalid:not(:focus):not(:-moz-placeholder-shown) ~ .form__requirements, input[type=password]:invalid:not(:focus):not(:-moz-placeholder-shown) ~ .form__requirements {
  max-height: 200px;
}
input[type=email]:invalid:not(:focus):not(:-ms-input-placeholder) ~ .form__requirements, input[type=password]:invalid:not(:focus):not(:-ms-input-placeholder) ~ .form__requirements {
  max-height: 200px;
}

input[type=email]:invalid:focus:not(:placeholder-shown) ~ .form__requirements,input[type=password]:invalid:focus:not(:placeholder-shown) ~ .form__requirements {

	 max-height: 200px;
	
}
input[type=email]:invalid:focus:placeholder-shown ~ .form__requirements,input[type=password]:invalid:focus:placeholder-shown ~ .form__requirements {

	 max-height: 200px;
	
}

input[type=email]:invalid:not(:focus):not(:placeholder-shown) ~ .form__requirements,
input[type=password]:invalid:not(:focus):not(:placeholder-shown) ~ .form__requirements {
  max-height: 200px;
}
input[type=email]:invalid:focus:not(:-moz-placeholder-shown), input[type=password]:invalid:focus:not(:-moz-placeholder-shown) {
  border-bottom: 3px solid #FF5D73;
}
input[type=email]:invalid:focus:not(:-ms-input-placeholder), input[type=password]:invalid:focus:not(:-ms-input-placeholder) {
  border-bottom: 3px solid #FF5D73;
}
input[type=email]:invalid:focus:not(:placeholder-shown),
input[type=password]:invalid:focus:not(:placeholder-shown) {
  border-bottom: 3px solid #FF5D73;
}
*/
/*--//Validation--*/
/*--Sign Up Page---*/
.signup-inner {
	max-width: 600px;
	width: 100%;
	margin: 50px auto;
	padding: 30px 30px;
	border: none;
	outline: none;
	border-radius: 0.25rem;
	color: #000;
	background: #f2f2f2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	overflow:hidden;
}
.signup-form {
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
/*---//SignUp Page--*/
/*-- Already Exist Css--*/
.response {
	padding: 6px;
	display: none;
}
.not-exists {
	color: green;
}
.exists {
	color: red;
}
.disableda {
	pointer-events: none;
	cursor: default;
	opacity: 0.7;
}
/*-- Already Exist Css--*/
.error {
	width: 92%;
	margin: 10px auto 0;
	padding: 10px;
	border: 1px solid #a94442;
	color: #a94442;
	background: #f2dede;
	border-radius: 5px;
	text-align: left;
	overflow: hidden;
}
/*---PAyment PAGE--*/
.payment_method
{
	/*padding: 24px 0;*/
	padding:12px 24px 0;
}

.tabs{
    margin: 0px;
    padding: 0px;
    list-style: none;
    /*background:var(--primary-color);
    border-bottom: 5px  var(--accent-color) solid;*/
}

.tabs li{
   
	    display: inline-block;
    margin: 0;
    font-size: 1.2em;
    line-height: 2em;
    color: #FFF;
    background: var(--primary-color);
	width:100%;
    
    text-align: center;
    border-bottom: 5px var(--accent-color) solid;
}

/*.tabs li:hover {
    background:var(--accent-color);
    }*/

.tabs li.current{
   /* background: var(--accent-color);*/
    color: #FFF;
}

.tab-content{
    display: none;
    /*background: #ededed;
    padding: 15px;

    line-height:1.4;*/
}

.tab-content.current{
    display: inherit;
}

/*---//PAyment PAGE--*/

/*--New Style 10-10-22--*/
.mail_divlife
{
	padding: 24px 0 0;
}
input[readonly]{
  color:var(--primary-color);
  background:#E5E5E5
}

/*--New Style 10-10-22--*/

/*--=================================================== RESPONSIVE CSS ===================================================--*/
@media (max-width: 1366px) {
}

@media (max-width: 1024px) {
	/*.sndmsg
	{
		position:absolute;
		
	}*/
}

@media (max-width: 991px) {
	
	#contactorgnzr
{
	background-color:transparent !important;
	border-color:var(--primary-color);
	color:var(--primary-color);
}
	/* for div ordering*/
.ordr_1
{
	order: 1;
}
.ordr_2
{
	order: 2;
}
.ordr_3
{
	order: 3;
}
.ordr_4
{
	order: 4;
}
/* for div ordering*/
	
/*.btnDiv:last-child
	{
		display:none;
	}*/
.mob_none
	{
		display:none;
	}
	.mob_block
	{
		display:block;
	}
	
.header {
	display: flex;
	align-items: center;
	/* Remove the next line if you want the span to appear next to the h1 */
	justify-content: space-between;
	flex-wrap: wrap;
}
.logo, .nav_bar {
	display: block;
}
.menu-toggle {
	display: block;
}
.nav_bar {
	display: none;
	width: 100%;
	height: auto;
	line-height: 0;
	padding: 0px 0px 0px 0px;
	text-align: left;
	border-top: 5px solid #fff;
	margin-top: 15px;
}
.nav_bar.activenav {
	display: block;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	transition: 0.5s all;
}
.nav_bar ul {
	display: block;
	text-align: left;
}
.nav_bar ul li a {
	/* margin-bottom: 10px;*/
	border-bottom: 1px solid #fff
}
.bg-image {
	height: auto !important;
}
.bg-image img {
	width: 100%;
	height: auto!important;
	object-fit: cover;
}
.margin_mobile {
	margin-bottom: 15px;
}
.btnpurchase {
	position: relative;
}
}
/*==== ticket pdf ====*/

.tckt
{
	padding:25px;
	padding-top:0;
	width:50%;
	max-width:100%;
	background:#500b59;
	color:#fff;
	
	border:dashed 1px;
	
}
.tcktevnt
{
	padding:25px 0;
	color:#fff;
	margin:0;
	text-align:center;
}
.tcktplan
{
	color:#fff;
	padding:25px 0;
	border-top:2px solid #fff;
	border-bottom:2px solid #fff;
	margin:0;
	font-size:2rem;
	text-align:center;
}

/*=== ticket pdf end ====*/
/*--Download Btn--*/
.btnDownload
{
	
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: inherit;
	cursor: pointer;
	min-width: 40%;
	height: auto;
	padding: 0.65rem 1.25rem;
	border: none;
	outline: none;
	border-radius: 4px;
	color: #fff!important;
	background: var(--primary-color);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
}
.p_down_main {
	font-size: 16px;
	font-weight: bold;
	color: var(--accent-color);/*letter-spacing: 1px;
	margin-bottom: 8px;*/
}
.down_tk
{
	display: block;
	font-weight: normal!important;
	color: var(--primary-color);
	
}
/*--//Download Btn--*/

@media (max-width: 800px) {
}

@media (max-width: 768px) {
	
}

@media (max-width: 767px) {
.plt_zero {
	padding-left: 15px;
}
.prt_zero {
	padding-right: 15px;
}
/*.fixed-header {
	position: static;
}*/
}

@media (max-width: 736px) {
.overlay h1 {
	font-size: 2em !important;
}
}

@media (max-width: 667px) {
}

@media (max-width: 640px) {
}

@media (max-width: 600px) {
}

@media (max-width: 568px) {
}

@media (max-width: 480px) {
}

@media (max-width: 414px) {
}

@media (max-width: 384px) {
}

@media (max-width: 375px) {
}

@media (max-width: 320px) {
	.logo
	{
		width:75%!important;
	}
	.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
		margin-bottom: 2rem;
		border-bottom:1px solid var(--primary-color);
		
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	
}
}
/*--=================================================== //RESPONSIVE CSS ===================================================--*/
/* --==== unsubscribe email =====---- */
.min-vh-50
{
	min-height: 50vh;
}
#popup {

	/* position: fixed; */
	width: 95%;
	max-width: 600px;
	/* top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
	margin:auto;
	background: #fff;
	border: 1px solid #ccc;
	padding: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}

#popup h1 {

	color: red;
	font-weight: bold;
}

.form_check_custom {
   
	padding: 0 !important;
	margin-bottom: 0.225rem;
}



.form_check_custom .form-check-input:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: none !important;
}



#popup h3 {
	font-size: 18px !important;
}
/* ---==== //unsubscribe email ====--- */