/* [data-theme="light"] { */
:root {
    --vs-primary: #002566;
	--vs-primary-hover: #2E579F;
    --vs-secondary: #cf2020;
	--vs-secondary-light: #cf2020;
	--vs-light: #ecf3fe;
	--vs-dark: #161d27;
	--vs-bg-white: #fefefe;
	--vs-white: #ffffff;
	--vs-border: #dee2e6;
	--vs-content: #f7f7f7;
	--vs-content-bg: #f7f7f7;
	--vs-muted: #6c757d;
	--vs-links: blue;
	--vs-black: #010110;
}

/* :root*/
[data-theme="dark"] {
    --vs-primary: #203ba7;
    --vs-secondary:  #EC1F1F;
	--vs-secondary-light:  #ff5252;
    --vs-light: #4f6486;
    --vs-dark: #ffffff;
    --vs-bg-white: #010011;
    --vs-white: #201f38;
    --vs-border:#010011;
	--vs-content: #201f38;
    --vs-content-bg:#010011;
	--vs-muted: #a2bbd2;
	--vs-links:#537fff;
	--vs-black: #010110;
}

.vs-bg-vs {
	background-color: var(--vs-primary) !important;
}

.vs-text-vs {
	color: var(--vs-secondary-light) !important;
}

.vs-lazy-load-image {
	background: rgba(221, 221, 221, 1);
	animation: lazyLoadFadeEffect 1.2s ease-in-out infinite alternate;
}

.vs-lazy-loaded {
	background: rgba(221, 221, 221, 0);
	animation: fadeOutEffect 1.2s ease-in-out 1 backwards;
}

.vs-lazy-load-image img {
	opacity: 0;
}

.vs-lazy-loaded img {
	animation: lazyLoadFadeEffect 1.2s ease-in-out 1 alternate;
}

.vs-btn-group .btn-check:active + .vs-btn-outline-vs,
.vs-btn-group .btn-check:checked + .vs-btn-outline-vs,
.vs-btn-group .vs-btn-outline-vs.active,
.vs-btn-group .vs-btn-outline-vs:active,
.vs-btn-group .vs-btn-outline-vs.dropdown-toggle.show {
	background-color: var(--vs-secondary-light) !important;
	color: white;
}

.vs-btn-group .vs-btn-underline-vs {
	border-radius: 0;
	color: var(--vs-muted);
}

.vs-btn-group .vs-btn-underline-vs:hover {
	color: var(--vs-dark);
}

.vs-btn-group .vs-btn-underline-vs.active,
.vs-btn-group .vs-btn-underline-vs:active {
	border-bottom: 2px solid var(--vs-secondary-light) !important;
	color: var(--vs-secondary-light) !important;
}

.vs-btn-group .vs-btn-outline-vs {
	color: var(--vs-dark);
}

.vs-btn-group .btn-check:focus + .btn,
.vs-btn-group .btn:focus {
	box-shadow: none;
}

.vs-btn-group .vs-btn-outline-vs:hover {
	color: var(--vs-white);
	background-color: var(--vs-secondary-light) !important;
	border-color: var(--vs-secondary-light) !important;
}
.vs-rounded-15 {
	border-radius: 15px !important;
}

.vs-border-style-dashed {
	border-style: dashed !important;
}

@media screen and (max-width: 768px) {
	.vs-md-small {
		font-size: 0.875em !important;
	}

	.vs-w-md-50 {
		width: 50%;
	}
	.vs-h-md-100 {
		height: 100vh !important;
	}
}

/*
TABLE OF CONTENTS
- Global
  -- lists
  -- a tags
  -- radio buttons
  -- selects
  -- nav
  -- buttons
  -- inputs
  -- event cards
  -- other
  -- footer
  -- embed
*/

/**********************************
- Custom Text Highlight
**********************************/

/*::-moz-selection {
    color: white;
    background:#cf2020;
}

::selection {
    color: white;
    background:#cf2020;
}*/

/**********************************
- Global
**********************************/

body {
	font-family: 'Poppins', sans-serif;
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: var(--vs-bg-white);
	color: var(--vs-dark);
}

body > div.container-fluid {
	flex: 1;
}

body.whitelabel {
	background-color: transparent;
	overflow-y: hidden;
}

.vs-link,
.vs-link:hover,
.vs-link:visited {
	color: var(--vs-links);
}

.pull-left {
	float: left !important;
}

.pull-right {
	float: right !important;
}

.no-caret:before,
.no-caret:after {
	content: none !important;
}

/*********************************
  -- lists
**********************************/

/*********************************
  -- a tags
**********************************/

a:focus,
a:hover {
	text-decoration: none;
}

a,
a:active,
a:focus {
	outline: 0 !important;
}


a {
	text-decoration: none;
	/* Remove bootstrap 5 link underlining for now */
	color: var(--vs-dark);
	transition: all .4s cubic-bezier(0.4, 0, 1, 1) !important;
}

a:hover {
	color: var(--vs-primary-hover);
	opacity: 80%;
}

button {
	transition: all .4s cubic-bezier(0.4, 0, 1, 1) !important;
}

button:hover {
	opacity: 80%;
}

/*********************************
  -- radio buttons
**********************************/

.radio-primary input[type="radio"]:checked + label::before,
.radio-primary input[type="radio"] + label::before {
	border: 1px solid var(--vs-primary) !important;
}

.radio-primary input[type="radio"]:checked + label::after,
.radio-primary input[type="radio"] + label::after {
	background-color: var(--vs-primary) !important;
}

.vs-form-check {
	border-radius: 15px;
	width: 300px;
	background-color: var(--vs-white);
	display: block;
	margin: 5px 0;
	position: relative;
	transition: all 200ms ease-in;
}
.vs-form-check.disabled {
	color: var(--vs-muted) !important;
	font-style: italic !important;
}

.vs-form-check:hover {
	background-color: var(--vs-content-bg);
}

.vs-form-check .show-on-hover {
	opacity: 0;
	transition: all 200ms ease-in;
	display: none;
}

.vs-form-check:hover .show-on-hover {
	opacity: 1;
	display: block;
}

.vs-form-check label {
	padding: 12px 16px;
	cursor: pointer;
	position: relative;
	transition: color 200ms ease-in;
	width: 100%;
	margin-bottom: 0;
}

.vs-form-check label:after {
	width: 100%;
	height: 100%;
	content: "";
	border: 1px solid var(--vs-border);
	border-radius: 15px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	transition: all 200ms ease-in;
}

.vs-form-check label.no-border:after {
	border: 0;
}

.vs-form-check input:checked ~ label:before {
	transform: translate(-50%, -50%) scale3d(56, 56, 1);
	opacity: 1;
}

.vs-form-check input:checked ~ label:after {
	border: 1px solid #5EB229;
}

.vs-form-check input:checked ~ label .show-on-hover {
	opacity: 1 !important;
	display: block !important;
}

.vs-form-check input {
	width: 32px;
	height: 32px;
	order: 1;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	visibility: hidden;
}

.vs-form-check-disabled {
	background-color: #efefef;
}

/*********************************
  -- selects
**********************************/

select,
select:active,
select:focus,
.bootstrap-select .btn,
.bootstrap-select .btn:active,
.bootstrap-select .btn:focus {
	outline: 0 !important;
}

/*********************************
  -- alerts
**********************************/

.alert-contained-one {
	background-color: rgba(242, 242, 242, 1);
}

/*********************************
  -- button dropdowns
**********************************/

.dropdown-default {
	display: inline-block;
}

.dropdown-default .dropdown-menu {
	border: none;
	min-width: 185px;
	box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06),
	0px -12px 24px rgba(0, 0, 0, 0.02);
}

.dropdown-default.inline .dropdown-menu {
	top: 0;
	bottom: unset;
	right: 0;
	left: unset;
}

.dropdown-default .dropdown-menu li {
	cursor: pointer;
	color: #171718;
	min-width: inherit;
}

.dropdown-default .dropdown-menu li:hover {
	color: var(--vs-primary);
	background-color: rgba(242, 242, 242, 1);
}

.dropdown-default .dropdown-menu li a {
	font-weight: initial;
	font-size: 0.9rem;
	padding: 0px 10px;
	line-height: 40px;
	cursor: pointer;
	display: inherit;
	min-width: inherit;
}

.dropdown-default.inline .dropdown-menu li a {
	line-height: 37px;
}

.dropdown-default .dropdown-menu li a:hover {
	color: inherit;
	background-color: initial;
}

.dropdown-default.open .dropdown-menu {
	transition: all 4ms ease;
	animation: pop-up 0.2s ease;
}

.dropdown-default.inline.open .dropdown-menu {
	display: flex;
}

.dropup.dropdown-default.show > ul > li {
	font-size: 0.8rem;
}

/*********************************
  -- nav
**********************************/
@media (min-width: 1200px){
.navbar-expand-xl .offcanvas {
    position: fixed;

    z-index: 1000;

    visibility: hidden !important;

     transition: auto;
     transform: none;
}
}


/*********************************
  -- buttons
**********************************/

button > span,
[role="button"] > span,
button > svg,
[role="button"] > svg,
button > span > svg,
[role="button"] > span > svg {
	pointer-events: none !important;
}

.social-media-share > ul.social-share > li > a > svg {
	vertical-align: 1em !important;
}

button,
button:active,
button:focus {
	outline: 0 !important;
}

.btn-contained-one {
	border: none;
	background: var(--vs-primary);
	color: #fff;
	white-space: nowrap;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
	0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 13px;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-one-green {
	border: none;
	background: #002566;
	color: #fff;
	white-space: nowrap;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
	0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 13px;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-one-sm {
	border: none;
	background-color: var(--vs-primary);
	color: #fff;
	white-space: nowrap;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-one:hover,
.btn-contained-one:active,
.btn-contained-one:focus,
.btn-contained-one-sm:hover,
.btn-contained-one-sm:active,
.btn-contained-one-sm:focus {
	color: #fff;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	-webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1),
	0 3px 6px rgba(0, 0, 0, 0.08);
	box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-contained-two {
	border: none;
	background-color: var(--vs-dark);
	color: var(--vs-white);
	white-space: nowrap;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
	0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-two-sm {
	border: none;
	background-color: #292d39;
	color: #fff;
	white-space: nowrap;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
	0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-two:hover,
.btn-contained-two:active,
.btn-contained-two:focus,
.btn-contained-two-sm:hover,
.btn-contained-two-sm:active,
.btn-contained-two-sm:focus {
	color: #fff;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	-webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1),
	0 3px 6px rgba(0, 0, 0, 0.08);
	box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-contained-three {
	border: none;
	background-color: var(--vs-secondary);
	color: var(--vs-white);
	white-space: nowrap;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
	0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-three-sm {
	border: none;
	background-color: var(--vs-secondary);
	color: #fff;
	white-space: nowrap;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
	0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.btn-contained-three:hover,
.btn-contained-three:active,
.btn-contained-three:focus,
.btn-contained-three-sm:hover,
.btn-contained-three-sm:active,
.btn-contained-three-sm:focus {
	color: #fff;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	-webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1),
	0 3px 6px rgba(0, 0, 0, 0.08);
	box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-transparent-one {
	border: none;
	color: var(--vs-dark);
	border: none;
	background-color: transparent;
	white-space: nowrap;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn-transparent-one-sm {
	border: none;
	color: var(--vs-dark);
	background-color: transparent;
	white-space: nowrap;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn-transparent-one:hover,
.btn-transparent-one:active,
.btn-transparent-one:focus {
	box-shadow: none;
	background-color: var(--vs-white);
}

.btn-transparent-one:active {
	background: var(--vs-white);
}

.btn-transparent-one-sm:hover,
.btn-transparent-one-sm:active,
.btn-transparent-one-sm:focus {
	box-shadow: none;
	background-color: var(--vs-white);
}

.btn-transparent-one-sm:active {
	background: var(--vs-white);
}

.btn-transparent-two {
	border: none;
	color: var(--vs-dark);
	border: none;
	background-color: transparent;
	white-space: nowrap;
	display: inline-block;
	padding: 0;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn-transparent-two:hover,
.btn-transparent-two:active,
.btn-transparent-two:focus {
	box-shadow: none;
	background-color: transparent;
}

.btn-transparent-two:active {
	background: transparent;
}

.btn-transparent-two > span {
	color: var(--vs-dark);
}

.btn-light-grey-sm {
	border: none;
	color: var(--vs-dark);
	background-color: #dddddd;
	white-space: nowrap;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn-light-grey-sm:hover,
.btn-light-grey-sm:active,
.btn-light-grey-sm:focus {
	box-shadow: none;
	background-color: rgba(242, 242, 242, 1);
}

.btn-light-grey-sm:active {
	background: rgba(219, 219, 219, 1);
}

.btn-main {
	background: var(--vs-primary);
	color: #fff;
	font-size: 1.4rem;
	min-width: 100px;
	border: none;
}

.btn-outline {
	background: none;
	color: var(--vs-secondary-light);
	border: 1px solid var(--vs-secondary-light) !important;
	font-size: 1.4rem;
	min-width: 100px;
}

.btn-main:focus,
.btn-main:hover,
.btn-main:active {
	color: #ffffff;
}

.btn-main:active {
	background: var(--vs-primary);
	box-shadow: unset;
}

.btn-outline:focus,
.btn-outline:hover,
.btn-underline:hover,
.btn-outline:active {
	color: var(--vs-primary) !important;
	box-shadow: none;
}

.btn{
	font-weight: 600;
}

.btn-primary {
	background-color: var(--vs-primary);
	font-weight: 700;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active {
	background-color: var(--vs-primary);
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
	background-color: var(--vs-primary);
}

.btn-secondary {
	background-color: var(--vs-secondary-light) !important;
	font-weight: 700;
}

.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:active {
	background-color: var(--vs-secondary-light) !important;
}

.btn-secondary.active.focus,
.btn-secondary.active:focus,
.btn-secondary.active:hover,
.btn-secondary.focus:active,
.btn-secondary:active:focus,
.btn-secondary:active:hover {
	background-color: var(--vs-secondary-light) !important;
}


/*********************************
  -- inputs
**********************************/

::-webkit-input-placeholder {
	color: var(--vs-secondary-light);
}

:-moz-placeholder {
	color: var(--vs-secondary-light);
}

::-moz-placeholder {
	color: var(--vs-secondary-light);
}

:-ms-input-placeholder {
	color: var(--vs-secondary-light);
}

.form-control, .form-select {
	color: var(--vs-dark);
	background-color: var(--vs-white);
	border: 1px solid var(--vs-border);
}

.form-control:focus {
	border-color: var(--vs-primary);
}

input[type="text"],
input[type="password"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/*********************************
  -- event cards
**********************************/

.new-card {
	max-width: 280px;
	width: 270px;
	min-width: 270px;
	height: 260px;
	border-radius: 10px;
	box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.08);
	text-align: left;
	display: inline-grid;
	background-color: var(--vs-white);
}

.new-card:hover
.new-card-content
.new-card-title-and-creator
.new-card-more-options {
	display: inline;
	position: absolute;
	right: 10px;
}

.new-card .new-card-image {
	border-radius: 10px 10px 0 0;
	height: 160px;
	background-repeat: no-repeat;
	background-size: cover;
}

.new-card .new-card-image img {
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: 100%;
}

@keyframes lazyLoadFadeEffect {
	0% {
		opacity: 0.2;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOutEffect {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.new-card .new-card-image.lazy-loading-image {
	background: rgba(221, 221, 221, 1);
	animation: lazyLoadFadeEffect 1.2s ease-in-out infinite alternate;
}

.new-card .new-card-image.loaded {
	background: rgba(221, 221, 221, 0);
	animation: fadeOutEffect 1.2s ease-in-out 1 backwards;
}

.new-card .new-card-image.lazy-loading-image img {
	opacity: 0;
}

.new-card .new-card-image.loaded img {
	animation: lazyLoadFadeEffect 1.2s ease-in-out 1 alternate;
}

.new-card .new-card-content {
	min-height: 80px;
	padding: 5px;
	max-width: 240px;
	position: relative;
}

.new-card-title-container {
	min-height: 45px;
	max-height: 45px;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.new-card .new-card-creator-name {
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.new-card .new-card-title-container {
	min-height: 25px;
}

.new-card .new-card-title {
	font-weight: 700;
	font-size: 15px;
}

.new-card .new-card-content .badge.bg-primary {
	color: #565656 !important;
	background-color: unset !important;
	border-radius: unset !important;
	padding: 0 !important;
	font-weight: 500 !important;
	font-size: 12px;
	font-size: 12px;
	margin: 0 !important;
}

.new-card .new-card-more-options {
	display: none;
	float: right;
}



/*********************************
  -- other
**********************************/
textarea {
	resize: none;
}

.form-horizontal .col-form-label:not(.text-end) {
	text-align: left;
}

.required {
	color: var(--vs-primary);
}

.content {
	background-color: var(--vs-bg-white);
}

/*********************************
  -- footer
**********************************/

#footer ul {
	list-style: none;
}

.event-nav-inner ul {
	list-style: none;
}

/* banner */

.logo {
	height: auto;
	max-width: 900px;
	width: auto;
	width: 700px;
	margin-top: 50px;
}

/* Video Cards */

.author {
	float: left;
	width: 100%;
	margin-top: 10px;
}

/* Login Page */

.show_password {
	border-radius: 0 3px 3px 0;
}

.modal {
	overflow-y: auto;
}

@media screen and (min-width: 768px) {
	.vs-login-page {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
}

.forgot {
	color: #3d4b51;
	margin-top: 7px;
}

.forgot:hover {
	color: red;
}

/* Register popup */

.terms-text {
	font-size: 12px;
	color: black;
}

.terms-text a {
	color: red;
}

.line hr {
	margin: 30px 0;
}

.pwd-hint {
	font-size: 14px;
	color: #fff;
	padding: 2px 12px;
	margin: 12px auto 10px;
	width: 100%;
	background: #768088;
	display: none;
	border-radius: 4px;
}

.pwd-hint ul {
	margin-top: 10px;
	list-style-type: disc;
}

.psw_head {
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	color: #fff;
	list-style: none;
}

.psw_points {
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #fff;
	margin-left: 20px;
}

#register-popup label {
	font-weight: 700;
}

@-moz-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		-webkit-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		-ms-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
	}
}

@-webkit-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		-webkit-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		-ms-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
	}
}

@keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		-webkit-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		-ms-transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
		transform: translateX(calc(((100vh - 60px) * -1.5) + (100vw / 2)));
	}
}

.register-backdrop-container {
	overflow: hidden;
	position: relative;
}

.register-backdrop {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center left !important;
	background-attachment: fixed;
	animation: bg 75s ease-in-out infinite alternate;
	background-size: cover;
	left: 12px;
	position: absolute;
	top: 0;
	width: calc((100vh - 60px) * 1.5);
	height: calc(100vh - 60px);
}

/* Settings Page */

.photos-upload .fa-images {
	font-size: 24px;
}

.error_msg {
	color: var(--vs-primary);
}

.testimonials {
	background-color: #e5e9f9;
	border-radius: 10px 10px 0 0;
	color: #71778b;
	font-style: italic;
	font-size: 17px;
	padding: 20px;
}

/* Tags */

.tags {
	display: inline-block;
	margin-top: 10px;
}

.tags a {
	display: inline-block;
	font-size: 12px;
	margin-top: 4px;
	padding: 5px 10px;
	background-color: var(--vs-primary);
	border-radius: 4px;
	font-weight: 600;
	color: #fff;
}

/* Explore */

.header-title {
	color: var(--vs-dark);
	font-size: 30px;
	font-weight: bold;
	margin: 30px 0 30px 0;
}

.header-title > span,
.header-title > i {
	color: #fff;
	font-size: 16px;
	font-weight: normal;
}

.buy-section {
	margin-top: 20px;
}

.buy-section h3 {
	margin: 20px auto 30px;
}

.buy-section .search-bar {
	margin: 0 0 20px;
	width: initial;
}

.searchEventFilters {
	min-width: fit-content;
}

@media only screen and (max-width: 768px) {
	.explore-page-container {
		max-width: 600px;
	}
}

.buy-section .pagination {
	float: none;
}

.buy-section .top-pagination,
.buy-section .bottom-pagination {
	text-align: right;
}

.buy-section .product {
	border: 1px solid lightgrey;
	margin-bottom: 40px;
	width: 100%;
}

.buy-section .triangle {
	border-color: transparent transparent transparent #6f788d;
}

.link > button {
	background-color: inherit;
	border: 0 none;
	line-height: normal;
	padding: 0;
}

/* Profile/Settings */

#settings-header,
#settings-account,
#settings-profile,
#settings-payment {
	color: var(--vs-dark);
	padding: 20px 0;
}

#settings-header h3,
#settings-account h3,
#settings-profile h3,
#settings-payment h3 {
	margin: 0;
}

#settings-header {
	margin-top: 100px;
}

#settings-header h3 {
	font-weight: 600;
}

#settings-profile h3,
#settings-payment h3 {
	margin-bottom: 20px;
}

#settings-payment ul {
	margin-top: 20px;
}

.user-name {
	color: #000;
	font-size: 36px;
	font-weight: 600;
	margin: 0;
}

.user-description {
	color: #000;
	float: left;
	width: 100%;
}

.top-pagination {
	margin-bottom: 20px;
}

.bottom-pagination {
	margin-top: 20px;
}

/* Pagination */

.pagination > li > a {
	border-radius: 3px;
	color: var(--vs-secondary-light);
	font-weight: 600;
	margin-right: 6px;
	padding: 3px 10px;
}

.pagination > li:first-child > a {
	background: var(--vs-primary);
	font-weight: 600;
	color: #fff;
	border-radius: 3px;
}

.pagination > li:last-child > a {
	background: var(--vs-primary);
	font-weight: 600;
	color: #fff;
	border-radius: 3px;
	margin-right: 0;
}

.pagination > li > a,
.pagination > li > span {
	border: 0;
}

.pagination > li > a:hover,
.pagination > li > a:focus {
	border-color: var(--vs-primary);
	background: var(--vs-primary);
	color: #fff;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus {
	background: var(--vs-primary);
	border-color: transparent;
	color: #fff;
}

.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
	color: #232323;
	background-color: transparent;
}

/* About */

.about-page img {
	width: 100%;
	max-width: 400px;
	margin: 40px auto;
}

.about-page h1 {
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--vs-dark);
}

.about-page p {
	font-size: 1.2rem;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 20px;
}

/* Checkout Popup */

#checkout_card_errors:empty {
	display: none !important;
}

#checkout_page_1 .modal-header h5,
#checkout_page_2 .modal-header h5,
#checkout_page_2_free .modal-header h5,
#checkout_page_2_free_guest .modal-header h5,
#checkout_page_1 .modal-header p,
#checkout_page_2 .modal-header p,
#checkout-page_2_free .modal-header p,
#checkout-page_2_free_guest .modal-header p {
	margin: 0;
	text-overflow: ellipsis;
	overflow: hidden;
}

#checkout_page_1 .modal-header h5,
#checkout_page_2 .modal-header h5,
#checkout_page_2_free .modal-header h5,
#checkout_page_2_free_guest .modal-header h5 {
	margin: 0 0 5px;
}

#checkout_page_1 .modal-header p,
#checkout_page_2 .modal-header p,
#checkout_page_2_free .modal-header p,
#checkout_page_2_free_guest .modal-header p {
	margin-bottom: 5px;
}

.custom-popup.order-popup .modal-body {
	padding: 15px;
}

.custom-popup.order-popup .modal-footer.text-start {
	padding: 15px;
}

.payment-method > img {
	margin: 0 30px 0 20px;
}

#payment-method {
	margin-bottom: 15px;
}

#payment-method > h4 {
	color: #565656;
	font-size: 15px;
	font-weight: bold;
}

.payment-method {
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 10px;
}

.payment-method .radio-label {
	color: #565656;
	font-size: 15px;
}

.multiple {
	display: inline-block;
	margin-top: 27px;
}

.nav li ul li a:hover,
.nav li ul li a:focus {
	background-color: transparent;
}

/* Purchase Success */

.content.page-content {
	background-color: var(--vs-bg-white);
	/* padding: 30px 0; */
	min-height: calc(100vh - 316px);
}

div.tickets-purchased {
	margin: 0 0 40px 0;
	border: 1px solid #ddd;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.calendar-menu-link {
	font-weight: 700;
}

.calendar-menu-link > a {
	padding: .5rem 1rem;
}

.add-to-cal-dropdown {
	padding: 0;
}

.tickets-purchased .event-info {
	padding: 20px;
	border-radius: 4px 4px 0 0;
}

.tickets-purchased .event-info .event-name {
	font-size: 2rem;
}

.tickets-purchased .ticket {
	border-bottom: 1px solid #ddd;
	border-radius: 4px;
}

.ticket .ticket-header,
.ticket .ticket-body {
	padding: 20px;
}

.tickets-purchased .ticket-name {
	font-size: 1.5rem;
	font-weight: 700;
}

.tickets-purchased .ticket-type {
	margin-bottom: 10px;
}

.tickets-purchased .event-creator {
	margin-top: 10px;
}

.tickets-purchased .event-creator a {
	color: #fff;
}

.tickets-purchased .order-date {
	margin-bottom: 10px;
}

.tickets-purchased .ticket-confirmation {
	margin-bottom: 10px;
}

.tickets-purchased .ticket-price {
	margin-bottom: 10px;
	font-size: 1.5rem;
	text-align: right;
}

.tickets-purchased .ticket-cta {
	text-align: right;
}

/* Cropper */

.export {
	position: relative;
	z-index: 10;
	display: inline-block;
}

.cropit-image-input.custom {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
}

/* Loader Style */

.loading {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff url("../images/loader.gif") no-repeat center center;
	opacity: 0.75;
	filter: alpha(opacity=75);
	z-index: 999;
}

/* Edit (Old) */

.uploaded-img > iframe {
	height: 68px;
	width: 100px;
}

/* Mobile */

.sidebar {
	background-color: #111;
	bottom: 0;
	left: 0;
	margin-top: 0;
	position: fixed;
	top: 60px;
	width: 280px;
	z-index: 100;
	margin-left: -280px;
}

#close_menu {
	display: none;
}

/* Files Upload */

input[type="file"] {
	height: auto;
}

.custom-popup #purchases_model_deatils .form-control {
	background-color: #fff;
	box-shadow: inherit;
}

.page-margin {
	margin-top: 0px;
}

/* Bootstrap Override Css Changes */

.btn-primary,
.btn {
	border: none !important;
}

/* Custom classes */
.icon-hover:hover {
	transition: all 0.3s;
	color: var(--vs-secondary-light);
}

/* More home page sections */

.home-get-started {
	background-color: #f5f9fb;
	padding: 0 0 25px 0;
}

.get-start-header {
	font-size: 35px;
	font-weight: 600;
	color: var(--vs-secondary-light);
	margin: 5px 0 30px;
}

.featured-in-header {
	font-size: 35px;
	font-weight: 600;
	color: black;
	margin: 5px 0 30px;
}

.setup-card {
	height: 230px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 6px 30px -10px rgba(0, 0, 0, 0.6);
	margin: 10px;
}

.setup-header {
	font-size: 20px;
	margin: 0;
	color: #003d4b;
	line-height: 26px;
}

.list-style {
	margin: 0px 0 30px auto !important;
	display: block !important;
}

/* Progress bar for video uploads */

.progress-bar {
	background: var(--vs-primary);
	transition: all 0.3s ease-in-out;
	box-shadow: none;
}

/* Footer Styles */

.profile-social-icon {
	background-color: var(--vs-secondary-light);
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	height: 36px;
	line-height: 26px;
	padding: 5px;
	text-align: center;
	width: 36px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	text-shadow: none;
}

.profile-social-icon:hover {
	color: white;
}

/* Account Hub */

#withdrawal-panel .panel-body h4 {
	color: #000;
	text-decoration: underline;
	cursor: pointer;
	margin: 0 0 15px 0;
	opacity: 0.7;
}

/* Account hub scroll box */

.faq-video {
	max-width: 100%;
	height: auto;
	margin-top: 0px;
	-webkit-box-shadow: 13px 10px 7px 0px rgba(0, 0, 0, 0.41);
	-moz-box-shadow: 13px 10px 7px 0px rgba(0, 0, 0, 0.41);
	box-shadow: 13px 10px 7px 0px rgba(0, 0, 0, 0.41);
}

.profile-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 2px solid var(--vs-secondary-light);
	margin: auto;
	background-size: cover !important;
}

.fas.profile_stats {
	color: var(--vs-secondary-light);
	margin-left: 7px;
}

.searchWrapper form {
	display: inline;
}

.searchWrapper {
	display: inline;
	float: right;
}

.connect {
	text-align: center;
}

.explore-filter-button {
	width: 100%;
	margin-bottom: 5px;
}

.explore-filter-button-active {
	border: none;
	background-color: var(--vs-primary);
	color: #fff;
	white-space: nowrap;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.product {
	border: none !important;
}

.form-control.datepicker-here {
	margin-bottom: 15px;
}

.form-horizontal .form-control {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/* temp styles for banner */

.cropper-field {
	padding: 10px;
}

.cropper-container.cropper-bg {
	width: 100% !important;
}

.image_container.settings_page_photo_container
.cropper-container.cropper-bg
.cropper-crop-box
.cropper-face.cropper-move {
	border-radius: 50%;
}

.img-fluid.rounded.profile_picture_settings_page {
	border-radius: 50%;
}

.container-for-explore-page .row {
	margin-left: -20px !important;
	margin-right: -20px !important;
}

/*********************************
  -- event cards
**********************************/

.new-card {
	max-width: 280px;
	width: 270px;
	min-width: 270px;
	height: 260px;
	border-radius: 10px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	-webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	text-align: left;
	display: inline-grid;
}

.new-card:hover
.new-card-content
.new-card-title-and-creator
.new-card-more-options {
	display: inline;
	position: absolute;
	right: 10px;
}

.new-card .new-card-image {
	border-radius: 4px 4px 0 0;
	height: 160px;
	background-repeat: no-repeat;
	background-size: cover;
}

.new-card .new-card-image img {
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: 100%;
}

.new-card .new-card-content {
	min-height: 80px;
	padding: 5px;
	max-width: 270px;
	position: relative;
}

.new-card-title-container {
	min-height: 45px;
	max-height: 45px;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.new-card .new-card-creator-name {
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.new-card .new-card-title-container {
	min-height: 25px;
}

.new-card .new-card-title {
	font-weight: 700;
	font-size: 15px;
}

.new-card .new-card-content .badge.bg-primary {
	color: #565656 !important;
	background-color: unset !important;
	border-radius: unset !important;
	padding: 0 !important;
	font-weight: 500 !important;
	font-size: 12px;
	font-size: 12px;
	margin: 0 !important;
}

.new-card .new-card-more-options {
	display: none;
	float: right;
}

/* Cards created by Ryan */

.form_required,
#general_error_message {
	color: red;
}

#general_success_message {
	color: #00b200;
}

#notify_status {
	margin-top: 10px;
	display: block;
	background: var(--vs-primary);
	color: white;
	padding: 10px;
	border-radius: 4px;
	display: none;
}

span.form_error {
	color: red;
}

div.form-control.buy_now div small {
	display: none !important;
}

/* Affiliate CSS, Analytics Card, Account Hub */

div.affiliate_section {
	text-align: center;
}

div.analytics_card {
	display: inline-block;
	margin: 15px;
	background-color: #eee;
	width: 230px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	text-align: left;
}

h3.analytics_card_header {
	margin: 0 0 5px;
	font-size: 20px;
	display: inline-block;
}

#hide_af {
	display: none;
	white-space: pre;
}

.radio_button,
label .fa-check-square {
	display: none;
}

label .fa-square {
	display: inline-block;
}

.radio_button:checked + label .fa-check-square {
	display: inline-block;
}

.radio_button:checked + label .fa-square {
	display: none;
}

.radio_label {
	padding: 6px 12px;
	margin: 0;
	cursor: pointer;
	color: white;
	font-weight: 700;
}

.radio_button_container {
	margin: 10px;
	display: inline-block;
	background: #ff2b35;
	border-radius: 4px;
	cursor: pointer;
}

/************************
- Home Page
- Event Preview Page
- Account Hub Page
- Ticket Insurance
************************/

/*********************************
  - Home Page
**********************************/

#intro_section,
#setup_section,
#trending_events,
#benefits_section,
#testimonial_section {
	padding-top: 40px;
	padding-bottom: 40px;
}

#getting-started {
	color: white;
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}

#getting-started h2 {
	margin: 20px 0;
}

#getting-started h4 {
	margin: 20px 0 30px 0;
}

#getting-started > .row {
	display: flex;
	align-items: center;
	height: 100%;
}

.hero-bg {
	position: relative;
	background-color: #f6f6f6;
	background-image: url("../images/VS_Header.png");
	height: 75vh;
	min-height: 40rem;
	max-height: 640px;
	width: 100%;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-content {
	color: white;
	margin-top: 110px;
}

.hero-content h1 {
	font-size: 34px;
}

.hero-content h4 {
	font-size: 16px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.hero-content a {
	margin-top: 10px;
}

@media only screen and (max-width: 599px) {
	.hero-content {
		margin-top: 50px;
	}
}

#hero {
	position: relative;
	background-color: #f6f6f6;
	height: 75vh;
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
}

#hero .row > div {
	padding-top: 0px;
}

#hero video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

#hero h2 {
	margin: 20px 0;
	color: #ffffff;
}

#hero p {
	color: white;
}

#hero > .row {
	display: flex;
	align-items: center;
	height: 100%;
}

#hero .viewstub_logo {
	width: 90%;
	max-width: 600px;
}

#intro_section {
	background-color: #f5f9fb;
}

#intro_section > .row:first-child {
	margin-bottom: 10px;
}

#intro_section p {
	margin: 0 0 20px 0;
	font-size: 1em;
	color: #565656;
	font-weight: 300;
	line-height: 40px;
	max-width: 931px;
}

#intro_section br {
	display: none;
}

#intro_section p:first-child {
	margin-top: 0;
}

#intro_section p a {
	color: var(--vs-secondary-light);
}

#intro_section p a:visited {
	color: var(--vs-secondary-light);
}

#setup_section {
	background-color: #f5f9fb;
}

#setup_section .card_container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 40px 0;
}

#setup_section .setup-asset svg {
	width: 100px;
	height: 100px;
}

#setup_section .setup-card {
	height: 228px;
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 6px 30px -10px rgba(0, 0, 0, 0.6);
}

#benefits_section .row:nth-of-type(even) div:first-child,
#benefits_section .row:nth-of-type(odd) div:last-child {
	text-align: initial;
	border-radius: 4px;
}

#benefits_section .row:nth-of-type(even) div:first-child {
	padding: 0;
}

#benefits_section .row:nth-of-type(even) div:first-child img {
	float: right;
}

#benefits_section .row:nth-of-type(odd) div:last-child {
	padding: 0;
}

#benefits_section .row-eq-height:first-child {
	padding-top: 0;
}

#benefits_section .row-eq-height:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

#benefits_section .row-eq-height {
	display: block;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 40px;
	padding-top: 40px;
}

#benefits_section .row div {
	margin: 20px 0;
}

#benefits_section h4 {
	font-size: 1.8em;
	margin: 0 0 20px 0;
}

#benefits_section h4,
#benefits_section ul {
	color: black;
}

#benefits_section ul {
	margin: 0;
}

#benefits_section ul {
	list-style: none;
	padding-left: 20px;
}

#benefits_section ul li::before,
#agency_section ul li::before {
	content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: var(--vs-secondary-light); /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 0.8em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
}

#benefits_section ul li,
#agency_section ul li {
	line-height: 30px;
	margin-bottom: 15px;
}

#benefits_section img {
	border-radius: 5px;
	width: 100%;
}

.design-header {
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 0px;
}

#testimonial-section {
	min-height: 350px;
}

#testimonial-carousel {
	height: 300px;
}

#testimonial-carousel .carousel-caption {
	height: fit-content;
	max-width: 650px;
}

#testimonial-carousel .testimonial-profile {
	height: 45px;
	width: 45px;
}

/*********************************
  - Event Preview Page
**********************************/

#event-preview {
	margin-top: 20px;
}

#event-preview {
	margin-bottom: 10px;
}

#event-preview .event-details {
	color: var(--vs-dark);
}

#event-preview .container-fluid {
	max-width: 1150px;
}

#event-preview h1 {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto 20px;
}

#event-preview h2 {
	font-size: 1.4rem;
	font-weight: bold;
	margin: 0 0 10px 0;
	color: var(--vs-dark);
}

#event-preview .accordion h2 {
	margin-bottom: 0;
}

#event-preview #event-preview-header h2 {
	color: var(--vs-dark);
	font-weight: 600;
}

#event-preview .event-description > div {
	color: var(--vs-dark);
	/* margin-bottom: 40px; */
}

#event-preview .event-description img {
	max-width: 100% !important;
	height: 100% !important;
}

#event-preview .event-description > button:last-child {
	text-align: left;
	margin-top: 10px;
}

#event-preview .event-access {
	margin-top: 40px;
}

#event-preview .event-access p {
	color: var(--vs-dark);
}

#event-preview .contact-organizer {
	margin-top: 40px;
}

#event-preview-sidebar > div {
	margin-bottom: 20px;
}

#event-actions {
	position: sticky;
	top: -20px;
	background-color: var(--vs-white);
	z-index: 10;
	padding: 10px 10px 0 10px;
	margin: -10px -10px 0 -10px;
}



#event-actions-mobile {
	position: fixed;
	bottom: 0px;
	background-color: var(--vs-white);
	z-index: 10;
	padding: 20px;
}

#event-organizer .btn-contained-one{
	background: #002566;
	color: #fff;
	-box-shadow: 5px 2px 5px 2px rgba(0,0,0,.35);

}

#event-actions-mobile .btn-contained-one {
	background: #002566;
	color: #fff;
	-box-shadow: 5px 2px 5px 2px rgba(0,0,0,.35);

}

.link-light-blue{
	color: var(--vs-primary) !important;

}


/* #event-actions-mobile .vs-link {
	color: #666;
} */

/* #event-preview .vs-link, .vs-link:hover, .vs-link:visited{
	color: #666;
} */

#event-preview .btn-contained-one {
	background: #002566;
	color: #fff;
	-box-shadow: 5px 2px 5px 2px rgba(0,0,0,.35);

}

/* #event-organizer-name .vs-link{
	color: var(--vs-primary);
} */

.below-preview {

	margin-bottom:120px;
}

.shadow-vs-above {
	box-shadow: 8px -3px 4px 1px #96969686;
	-webkit-box-shadow: 8px -3px 4px 1px #96969686;

}

#event-preview-sidebar #event-actions .btn-group > a {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

#event-preview-sidebar #event-actions .date-list {
	color: #171718;
}

.profile-image-event-preview {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	border: 2px solid var(--vs-secondary-light);
	margin: auto 10px auto auto;
	background-size: cover !important;
	display: inline-block;
}

#event-preview .order-btn .ticket > div:last-child {
	text-align: right;
}

#event-preview .order-btn label {
	color: #565656;
	font-size: 1.4rem;
	font-weight: 300;
	display: inline-block;
}

#event-preview .order-btn .ticket h4 {
	margin-top: 0;
	color: #565656;
	font-weight: 300;
}

#event-preview .order-btn span {
	font-weight: 700;
}

#event-preview-sidebar button {
	margin-bottom: 10px;
}

#event-preview #event-creator .profile {
	width: 90px;
	height: 90px;
	float: left;
}

#event-preview #event-creator .profile-info {
	height: 90px;
	padding-left: 20px;
	display: inline-block;
}

#event-preview #event-creator .profile-info h3 a:hover {
	color: var(--vs-secondary-light);
}

#event-preview #event-creator .social-share {
	margin-top: 20px;
}

#event-preview #event-creator .social-share li {
	display: inline-block;
	margin-right: 20px;
}

#event-preview #event-creator .social-share .fa-facebook-f,
#event-preview #event-creator .social-share .fa-twitter,
#event-preview #event-creator .social-share .fa-linkedin {
	font-size: 18px;
	color: #565656;
}

#event-preview #event-creator .social-share .fa-facebook-f:hover,
#event-preview #event-creator .social-share .fa-twitter:hover,
#event-preview #event-creator .social-share .fa-linkedin:hover {
	color: var(--vs-secondary-light);
}

#event-preview #event-creator .social-actions li {
	margin-bottom: 20px;
}

#event-preview #event-creator .social-actions .fa-link:hover,
#event-preview #event-creator .social-actions .fa-envelope:hover,
#event-preview #event-creator .social-actions .fa-comment:hover,
#event-preview #event-creator .social-actions li:hover a {
	color: var(--vs-secondary-light);
}

#event-preview #event-creator .social-actions .fa-link,
#event-preview #event-creator .social-actions .fa-comment,
#event-preview #event-creator .social-actions .fa-user-plus,
#event-preview #event-creator .social-actions .fa-envelope {
	transition: all 0.15s linear 0s;
	color: #565656;
	font-size: 18px;
}

#event-preview #event-map {
	width: 300px;
	height: 250px;
	border-radius: 4px;
}

#event-organizer-name {
	font-size: 1.3rem;
	margin-bottom: 5px;
}

#event-preview .profile-info {
	display: inline-block;
	vertical-align: top;
	width: 75%;
}

#event-preview #event-tags {
	margin-top: 40px;
}

#event-preview #event-tags .fa-tags {
	color: #565656;
	font-size: 18px;
}

#event-preview #event-tags p {
	display: inline-block;
	margin: 0;
	color: #565656;
}

#event-preview #event-tags ul {
	margin-top: 10px;
	padding-left: 0;
}

#event-preview #event-tags ul li {
	display: inline-block;
	margin: 10px 3px;
}

#event-preview #event-tags ul li a {
	border-radius: 4px;
	padding: 5px 15px;
	color: #ffffff;
	font-weight: 700;
	background-color: var(--vs-primary);
	transition: all .4s cubic-bezier(0.4, 0, 1, 1);
}

#event-preview #event-tags ul li a:hover {
	opacity: 80%;
}

#event-preview #event-location iframe {
	border-radius: 4px;
	box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.08);
	margin-top: 5px;
}

.event-preview-message {
	margin: 13px 0 10px 0;
	padding: 10px;
	background-color: var(--vs-content-bg);
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
}

.event-preview-tab {
	color: black;
}

.event-preview-card {
	padding: 17px;
	background-color: var(--vs-white) !important;
	border: 1px solid var(--vs-border);
	border-radius: 0.25rem;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	min-height: 270px;
	overflow-y: auto;
	overflow-x: hidden;
}

@media (min-width: 992px) {
	.event-preview-card {
		height: 350px;
	}
}

@media (min-width: 1200px) {
	.event-preview-card {
		height: 415px;
	}
}

@media (min-width: 1400px) {
	.event-preview-card {
		height: 482px;
	}
}

@media only screen and (max-width: 991px) {
	.event-preview-card {
		min-height: auto;
		max-height: 100%;
		height: auto;
	}
}

.event-preview-card::-webkit-scrollbar {
	width: 5px;
	left: 50px;
}

.event-preview-card::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px lightgrey;
	border-radius: 10px;
}

.event-preview-card::-webkit-scrollbar-thumb {
	background: grey;
	border-radius: 10px;
}

.event-preview-card::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.5);
}

#event-preview #refund-policy {
	margin-top: 10px;
	font-size: 0.85rem;
}

.social-media-share {
	margin-top: 40px;
}

.social-media-share ul.social-share li {
	display: inline-block;
	margin: 5px 10px 5px 0;
}

.social-media-share ul.social-share li a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 22px;
	display: inline-block;
	text-align: center;
	padding: 9px 0;
}

.social-media-share ul.social-share li a:hover {
	color: black;
}

.social-media-share ul.social-share li a.facebook-button {
	background: #4267b2;
	color: white;
}

.social-media-share ul.social-share li a.twitter-button {
	background: #1da1f2;
	color: white;
}

.social-media-share ul.social-share li a.linkedin-button {
	background: #2867b2;
	color: white;
}

.social-media-share ul.social-share li a.eventlink-button {
	background: #7b7b7b;
	color: white;
}

#event-preview .event-date-time {
	margin-top: 40px;
}

#user-more-events > div {
	padding: 30px 20px;
	border-radius: 10px;
	background: var(--vs-bg-white);
}

#user-more-events h3 {
	color: var(--vs-dark);
}

#withdrawal-panel .panel-body {
	color: var(--vs-dark);
}

#withdrawal-panel .panel-body ul {
	margin: 0;
}

#withdrawal-panel .panel-body div button {
	margin: 10px 0;
}

.scroll_for_more {
	position: absolute;
	text-align: center;
	background-color: white;
	border: 1px solid #eee;
	border-radius: 4px;
	line-height: 20px;
	width: 200px;
	bottom: 5px;
	left: calc(50% - 100px);
	color: #fb2c1d;
	font-size: 20px;
	padding: 3px;
}

.event-type-icon {
	color: var(--vs-secondary-light);
}

#event_description.collapse:not(.show) {
	display: block;
	/* height: 15rem; */
	height: 11rem;
	position: relative;
	overflow: hidden;
}

#event_description.collapse:not(.show)::before {
	mix-blend-mode: screen;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 70%, var(--vs-bg-white) 90%);
	pointer-events: none;
}

#event_description.collapsing {
	height: 15rem;
}

a#event_collapse {
	color: blue;
}

a#event_collapse.collapsed::after {
	content: "Show More";
}

a#event_collapse:not(.collapsed)::after {
	content: "Show Less";
}

/* New Profile CSS */

.user-profile {
	padding: 50px 0 50px 0;
	color: var(--vs-dark);
}

.user-profile-image-div {
	background: var(--vs-primary);
	padding: 20px;
}

.user-profile .count-span {
	font-weight: 700;
	font-size: 2rem;
	margin-top: 15px;
}

.user-profile .tag-span {
	font-weight: 700;
}

.profile-card {
	background: var(--vs-white);
	border-radius: 10px;
	display: inline-block;
	position: relative;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}

.user-profile .user-information {
	padding: 1.5rem;
}

.user-profile .user-description {
	margin-top: 0;
	margin-bottom: 20px;
	word-wrap: break-word;
}

.user-profile h1 {
	font-size: 2rem;
	margin: 10px auto;
}

.user-profile h2 {
	font-size: 2rem;
	margin-top: 0;
}

.user-share {
	margin-top: 20px;
}

.user-share a.profile-social-icon {
	margin: 5px;
}

.user-share a.profile-social-icon.facebook-button {
	background: #4267b2;
	color: white;
}

.user-share a.profile-social-icon.twitter-button {
	background: #1da1f2;
	color: white;
}

.user-share a.profile-social-icon.linkedin-button {
	background: #2867b2;
	color: white;
}

.user-share a.profile-social-icon.profilelink-button {
	background: #7b7b7b;
	color: white;
}

.profile-image-circle {
	border-radius: 50%;
	width: 200px;
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	border: 2px solid #fff;
	margin: auto;
}

.alert-copy {
	display: none;
	background-color: var(--vs-secondary-light);
	color: white;
	margin-top: 10px;
	margin-bottom: 0;
}

.vs-group-addon {
	background-color: var(--vs-primary);
	color: white;
	transition: all .4s cubic-bezier(0.4, 0, 1, 1);
	z-index: 0;
}

.vs-group-addon:hover {
	opacity: 80%;
}

div.contact_body {
	padding: 0 15px;
}

div.contact_body > form {
	height: 200px;
}

div.contact_body > form > textarea {
	width: 100%;
	height: 100%;
	font-size: 18px;
	border-radius: 4px;
	padding: 5px;
	border: 1px solid #ccc;
}

div.contact-organizer #contact-modal #contactStatusMessage {
	padding: 10px 0 0;
	display: block;
	text-align: right;
}

div.contact_footer {
	padding: 15px;
}

h4.video-title {
	font-size: 24px;
	margin-top: 35px;
	margin-bottom: 15px;
	font-weight: 700;
	color: black;
}

#helpVideoContainer video {
	width: 100%;
}

.fade_message {
	transition: opacity 0.5s;
	opacity: 0;
}

.btn > a {
	color: white;
}

.font-black {
	color: black;
}

.font-white {
	color: white;
}

.font-vs {
	color: var(--vs-secondary-light);
}

#thanks video {
	width: 100%;
	margin-top: 20px;
}

#thanks .img-fluid {
	margin: 20px auto 0 auto;
}

.hidden {
	display: none !important;
}

table#analytics span {
	padding: 2px 0;
}

.sales_second_row > .question {
	display: block;
}

div.affiliate_section {
	text-align: center;
}

div.analytics_card {
	display: inline-block;
	margin: 15px;
	background-color: #eee;
	width: 230px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	text-align: left;
}

h3.analytics_card_header {
	margin: 0 0 5px;
	font-size: 20px;
	display: inline-block;
}

#hide_af {
	display: none;
	white-space: pre;
}

.show_cart_button {
	border: none;
	border-radius: 4px;
}

.show_cart_button > .fa-shopping-cart,
.show_cart_button > .fa-cart-arrow-down {
	font-size: 1.5rem;
	margin-right: 5px;
}

.view-mobile-cart-alt {
	display: none;
}

#cart_total_alt {
	display: none;
}

.carousel-indicators [data-bs-target]{
	background-color: #ccc !important;
}

.btn-white {
	background-color: white;
	color: var(--vs-secondary-light);
	font-weight: 700;
}

/* Other */

.p-margin {
	margin-bottom: 30px;
}

.fw-table {
	width: 100% !important;
}

/* Pricing Table on FAQ */

#pricing-table {
	width: 100%;
	max-width: 500px;
	margin: 20px auto;
	color: #171718;
	background-color: #fff;
	box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06),
	0px -12px 24px rgba(0, 0, 0, 0.02);
}

#pricing-table .contact {
	font-size: 90%;
	font-weight: 400 !important;
}

#pricing-table a {
	color: var(--vs-secondary-light);
}

#pricing-table thead tr:first-child {
	background: var(--vs-primary);
	color: #fff;
	border-bottom: none;
}

#pricing-table thead tr:last-child th {
	border-bottom: 1px solid #000;
}

#pricing-table thead tr:last-child th:last-child {
	border-left: 1px solid #000;
}

#pricing-table th,
#pricing-table td {
	text-align: center;
	vertical-align: middle !important;
	width: 50%;
}

#pricing-table tbody td:first-child {
	font-weight: 600;
	border-right: 1px solid #999;
}

#pricing-table tbody td {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}

#pricing-table tfoot td {
	font-size: 85%;
}

.index {
	z-index: 1;
}

.blktxt {
	color: black;
}

#benefits-1 {
	text-align: right;
}

#benefits-2 {
	text-align: left;
}

#benefits-3 {
	text-align: right;
}

#benefits-4 {
	text-align: left;
}

.game-changer {
	width: 100%;
	height: 200px;
}

.featured-image {
	margin: 29px;
}

.mb-50 {
	margin-bottom: 50px;
}

/* Feedback Page */
.form-container {
	background-color: #fff;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	border-radius: 4px;
	margin-bottom: 20px;
	margin-top: 30px;
}

/* Brand ambassador referral page */
.green {
	color: green;
}

form#ambassador-form {
	background: white;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 20px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

form#ambassador-form h1 {
	margin: 10px 0 20px;
}

/* More Home Page Styles */
.connect-section {
	padding: 50px 0;
}

.meet-demo-section {
	margin-top: 80px;
	padding-bottom: 30px;
}

/* for home page */

.connect-social-icon {
	background-color: #fff;
	border-radius: 50%;
	color: #51556c;
	display: inline-block;
	font-size: 18px;
	height: 36px;
	line-height: 26px;
	padding: 5px;
	text-align: center;
	width: 36px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	text-shadow: none;
}

#video_section {
	margin-top: 30px;
	background-color: #f5f6f7;
	padding-top: 30px;
	padding-bottom: 40px;
}

@media (max-width: 500px) {
	.new-card-image {
		height: calc((100vw - 10px) / (16 / 9));
		border-radius: unset;
	}

	.new-card-content {
		padding: 5px 15px;
	}

	.new-card-title-container {
		min-height: 25px;
	}

	.new-card-title {
		font-size: 1.4rem;
	}

	.new-card-more-options {
		display: inline;
	}

	.buy-section .search-bar {
		width: 80% !important;
		margin: 30px auto 0 !important;
	}
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
	.new-card {
		max-width: 270px;
		min-width: 270px;
		height: 260px;
	}

	.new-card .new-card-image {
		border-radius: 4px 4px 0 0;
		height: 160px;
	}

	.new-card .new-card-content {
		min-height: 80px;
	}

	.new-card .new-card-title-container {
		min-height: 25px;
	}
}

@media (max-width: 978px) {
	body.menu-open {
		overflow: hidden;
	}

	#mobile-navigation {
		display: block;
		position: fixed;
		width: 100%;
		z-index: 999;
		background: var(--vs-primary);
	}

	.header {
		height: auto !important;
	}

	.sidebar {
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}

	.slide-nav-toggle .sidebar {
		margin-left: 0;
	}

	.mobile_btn {
		display: block;
	}

	#close_menu {
		color: #fff;
		min-height: 40px;
		padding: 10px;
		position: absolute;
		text-align: center;
		top: 0;
		width: 40px;
		z-index: 100;
		display: inline-block;
		right: 0;
	}
}

#connect .container.connect-section {
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	#connect {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.buy-section .top-pagination,
	.buy-section .bottom-pagination {
		text-align: center !important;
		margin: 30px auto 10px;
	}

	.navbar-logo {
		margin-left: 20px !important;
	}

	.close-chat #close_btn {
		right: 0;
	}

	.close-menu #close_menu {
		right: 0;
	}

	.notifications::before,
	.notifications::after {
		right: 60px;
	}

	.category-select span.select {
		width: 100%;
	}

	.header-title {
		font-size: 24px;
	}
}

@media only screen and (max-width: 599px) {
	.logo {
		height: auto;
		width: 400px;
	}
}

@media only screen and (max-width: 479px) {
	.view-right {
		width: 100%;
	}

	.custom-popup .modal-body {
		padding: 15px;
	}

	.custom-popup .modal-footer {
		padding: 15px;
	}

	.custom-popup .modal-header h4 {
		font-size: 24px;
	}

	.thanks-cont h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.thanks-cont > * {
		display: block;
	}
}

@media (max-width: 1200px) {
	.navbar-header {
		float: none;
	}

	.navbar-left,
	.navbar-right {
		float: none !important;
	}

	.navbar-toggle {
		display: block;
	}

	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	}

	.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}

	.navbar-nav {
		float: none !important;
		margin-top: 8px;
	}

	.navbar-nav > li {
		float: none;
		padding: 5px 0px;
	}

	.navbar-nav > li > a {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.page-margin {
		margin-top: 0px;
	}

	.ac-container {
		height: calc(100vh - 71px) !important;
	}
}

@media (max-width: 768px) {
	.searchWrapper {
		width: 100%;
		margin-top: 5px;
	}

	.col-md-12.header-title-wrapper {
		text-align: center;
	}

	.col-md-12 .top-pagination {
		margin-top: 15px;
	}

	.container-for-explore-page .row .col-sm-2 {
		max-width: 400px;
		margin: auto;
	}
}

@media (max-width: 481px) {
	.header-title-wrapper {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.stream-details.form-control,
	.upload-details.form-control {
		max-width: 310px;
		margin: auto !important;
	}

	.stream-details.form-control .col-sm-4 div .datepicker-inline .datepicker,
	.upload-details.form-control .col-sm-4 div .datepicker-inline .datepicker {
		margin: auto;
	}
}

@media (max-width: 500px) {
	.new-card-image {
		height: calc((100vw - 10px) / (16 / 9));
		border-radius: unset;
	}

	.new-card-content {
		padding: 5px 15px;
	}

	.new-card-title-container {
		min-height: 25px;
	}

	.new-card-title {
		font-size: 1.4rem;
	}

	.new-card-more-options {
		display: inline;
	}
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
	.new-card {
		max-width: 270px;
		min-width: 270px;
		height: 260px;
	}

	.new-card .new-card-image {
		border-radius: 4px 4px 0 0;
		height: 160px;
	}

	.new-card .new-card-content {
		min-height: 80px;
	}

	.new-card .new-card-title-container {
		min-height: 25px;
	}
}

@media only screen and (max-width: 850px) {
	.tickets_right_panel {
		width: 250px;
	}

	.tickets_right_panel img {
		width: 250px;
		height: 140px;
	}

	.cart_page {
		display: inline-block;
	}
}

@media only screen and (max-width: 750px) {
	.tickets_right_panel {
		width: 250px;
	}

	.tickets_right_panel img {
		width: 250px;
		height: 140px;
	}

	.cart_page {
		display: inline-block;
	}
}

@media only screen and (max-width: 630px) {
	.tickets_right_panel {
		width: 0px;
	}

	.tickets_right_panel img {
		width: 0px;
		height: 140px;
	}

	.cart_page {
		display: inline-block;
		width: calc(100% - 0px);
	}
}

@media (max-height: 600px) {
	#hero .row > div {
		padding-top: 60px;
	}
}

@media (max-height: 823px) {
	#hero .row > div {
		padding-top: 40px;
	}
}

@media (min-width: 768px) {
	#hero .viewstub_logo {
		width: 100%;
	}
}

@media (min-width: 768px) {
	#intro_section p {
		font-size: 1.3em;
		margin: 20px auto;
	}

	#intro_section br {
		display: block;
	}
}

@media (min-width: 768px) {
	#benefits_section .row:nth-of-type(even) div:first-child {
		padding: 40px 40px 0 0;
	}

	#benefits_section .row:nth-of-type(odd) div:last-child {
		padding: 40px 0 0 40px;
	}

	#benefits_section .row-eq-height {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
	}

	#benefits_section .row div {
		margin: 0;
	}
}

@media screen and (max-height: 450px) {
	.sidenav {
		padding-top: 15px;
	}

	.sidenav a {
		font-size: 18px;
	}
}

@media screen and (max-width: 990px) {
	.user-profile .user-description,
	.user-profile .user-events {
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
	.carousel-inner {
		margin: auto;
		max-width: 83vw;
	}
}

@media only screen and (max-width: 630px) {
	.show_cart_button {
		display: inline-block;
		cursor: pointer;
		vertical-align: middle;
	}

	.view-mobile-cart-alt {
		display: inline-block;
	}

	#cart_total_alt {
		display: inline-block;
		margin-right: 5px;
		margin-left: 7px;
	}

	.show_cart_button > .fa-shopping-cart,
	.show_cart_button > .fa-cart-arrow-down {
		color: var(--vs-secondary-light);
		font-size: 22px;
	}
}

@media only screen and (min-device-width: 360px) and (max-device-width: 812px) {
	.navbar-logo {
		margin-left: 20px;
	}

	.hero-bg {
		position: relative;
		width: 100%;
		background-position: left;
		overflow: hidden;
	}

	.game-changer {
		height: 100%;
	}

	.rArrow {
		margin-right: 0px;
	}

	.lArrow {
		margin-left: 0px;
	}

	#benefits-1 {
		text-align: center;
	}

	#benefits-2 {
		text-align: center;
	}

	#benefits-3 {
		text-align: center;
	}

	#benefits-4 {
		text-align: center;
	}
}

@media (min-width: 992px) and (max-width: 1029px) {
	.header {
		height: 65px;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	.profile-image-circle {
		margin: auto;
	}

	.buy-section .product {
		min-height: 385px;
	}

	.profile-image {
		width: 150px !important;
		height: 150px !important;
	}
}

/**
 * Brand Ambassador Dashboard and Affiliate Dashboard
 */

.vs-side-nav {
	width: 55px;
	background: var(--vs-white);
	overflow-x: hidden;
	overflow-y: auto;
	left: 0;
	position: fixed;
	padding: 10px 1px;
	transition: width 0.2s ease;
	text-align: center;
	font-size: 0.8rem;
	z-index: 100;
}

.vs-side-nav.opened {
	width: 260px;
	padding: 10px 20px;
	text-align: left;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.vs-side-nav span.nav-text {
	display: none;
}

.vs-side-nav.opened span.nav-text {
	display: inline-block;
}

.vs-side-nav .btn-icon {
	margin-right: 5px;
	padding: 0 4px;
}

.vs-side-nav a {
	text-decoration: none;
	color: var(--vs-dark);
	border-radius: 0;
	display: block;
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 10px !important;
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.vs-side-nav li.active > a,
.vs-side-nav a:hover {
	color: var(--vs-primary) !important;
	background: var(--vs-white) !important;
}

.vs-side-nav hr {
	margin: 10px auto;
}

.vs-side-nav::-webkit-scrollbar {
	width: 4px;
}

.vs-side-nav {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.vs-side-nav .collapse,
.vs-side-nav .collapsing {
	padding-left: 20px;
	font-size: 0.8rem;
}

.vs-side-nav:not(.opened) .collapse.in,
.vs-side-nav:not(.opened) .collapsing {
	padding-left: 0;
}

.vs-side-nav:not(.opened) .collapse li,
.vs-side-nav:not(.opened) .collapsing li {
	display: none;
}

.vs-content-panel {
	width: calc(100vw - 55px);
	overflow-x: hidden;
	overflow-y: auto;
	overflow-y: overlay;
	position: absolute;
	left: 55px;
	background: var(--vs-content-bg);
	transition: all 0.2s ease;
	padding: 20px;
	scroll-behavior: smooth;
}

@media only screen and (min-width: 768px) {
	.vs-content-panel {
		width: calc(100vw - 260px);
		left: 260px;
	}
}

.vs-content-panel.full {
	left: 55px;
	width: calc(100vw - 55px);
}

.vs-content-panel .table {
	color: var(--vs-dark);
}

.vs-content-panel .page-link {
	background-color: var(--vs-content-bg);
	color: var(--vs-dark);
}

.vs-content-panel .page-item.disabled .page-link {
	background-color: var(--vs-content-bg);
	color: var(--vs-muted);
}

.vs-content-panel .page-item.active .page-link {
	background-color: var(--vs-primary);
}

.panel-body.table-responsive {
	margin-bottom: 20px;
}

/* More home page styles */

.link-shadow {
	transition: box-shadow 0.5s;
	float: left;
}

.link-shadow:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* Solutions Page */

.solutions-hero {
	background-image: url("../images/solutions/solutions-header-no-text.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
	overflow: hidden;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}

.solutions-hero-heading {
	color: white;
	font-size: 60px;
	font-weight: 700;
}

.solutions-hero-subheading {
	color: white;
	font-size: 40px;
	font-weight: 700;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) {
	.solutions-hero-heading {
		font-size: 50px;
	}

	.solutions-hero-subheading {
		font-size: 30px;
	}
}

.btn-demo {
	border: 2px solid black !important;
	background: transparent;
	color: black;
	padding: 8px 15px;
}

/* more global */

.vs-card {
	background: var(--vs-white);
	border-radius: 4px;
	padding: 20px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	width: 100%;
}

.link-default {
	color: var(--vs-links);
}

/* Our clients (homepage and solutions page) */

#clients .row-eq {
	margin: 0 !important;
}

.client-card {
	width: 100%;
	height: 100%;
}

.client-card-content {
	place-content: center;
	inset: 0px;
	display: flex;
	height: 100%;
	text-align: center;
}

.client-card-content img {
	object-fit: contain;
	width: 100%;
	max-width: 200px;
	padding: 10px;
}

#schedule tr {
	border: 1px solid #ddd;
	background-color: #fff;
}

#schedule td {
	border: none;
	padding: 20px 10px;
}

#schedule tr td:last-child {
	min-width: 20%;
}

#schedule tr td:last-child button {
	margin-bottom: 5px;
}

#schedule .schedule-time {
	color: #555;
	margin-bottom: 10px;
}

#schedule .schedule-title {
	margin-bottom: 5px;
}

.vs-hub-panel {
	background: var(--vs-white);
	border-radius: 4px;
	padding: 20px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	margin-bottom: 20px;
	width: 100%;
}

.vs-hub-panel h3 {
	margin: 0 auto 20px;
	font-size: 2rem;
}

.vs-hub-panel .help-block {
	color: red;
	font-weight: 700;
	font-size: 85%;
}

.vs-hub-panel table {
	margin-bottom: 0;
}

.clients-row {
	margin-bottom: 15px;
}

.clients img.img-circle {
	width: 40px;
}

.teams img.img-circle {
	width: 50px;
}

.teams hr {
	margin: 0.75rem auto;
}

.teams .active-label {
	display: inline-block;
	margin-bottom: 5px;
}

.teams .dropdown-menu {
	left: initial;
	right: 0;
}

.team-events img.event-image {
	width: 100px;
}

.team-events .event-members img.rounded-circle {
	width: 25px;
}

.event-perm-collapse {
	padding: 10px 0;
}

.sponsor-card {
	background-color: #fff;
	width: 100%;
	display: inline-block;
	position: relative;
	vertical-align: top;
}

.location-card .location-handle {
	position: absolute;
	cursor: pointer;
	font-size: .9rem;
	top: 9px;
	right: 25px;
	color: #444;
}

.product-card .edit-cog,
.location-card .edit-cog,
.sponsor-card .edit-cog {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #444;
}

.sponsor-card .sponsor-info {
	padding: 5px 0;
	float: none;
	width: calc(100% - 125px);
	display: inline-block;
	vertical-align: top;
}

#event_details .sponsor-image {
	width: 120px;
	height: 100%;
	display: inline-block;
}

#sponsors-container-embed .sponsor-image {
	height: initial;
}

#event-preview .sponsor-card {
	width: 150px;
}

#sponsors-container-embed #sponsors_area h6,
#event-preview #sponsors h5 {
	overflow: hidden;
	text-align: center;
}

#sponsors-container-embed #sponsors_area h6:before,
#sponsors-container-embed #sponsors_area h6:after,
#event-preview #sponsors h5:before,
#event-preview #sponsors h5:after {
	background-color: #eee;
	content: "";
	display: inline-block;
	height: 1px;
	position: relative;
	vertical-align: middle;
	width: 50%;
}

#sponsors-container-embed #sponsors_area h6:before,
#event-preview #sponsors h5:before {
	right: 0.5em;
	margin-left: -50%;
}

#sponsors-container-embed #sponsors_area h6:after,
#event-preview #sponsors h5:after {
	left: 0.5em;
	margin-right: -50%;
}

#sponsor_modal #sponsor-preview {
	max-height: 112px;
	max-width: 200px;
	overflow: hidden;
	margin: 0 auto 15px;
}

label#sponsor-file-label {
	margin-left: 20px;
	border: 1px solid #ccc;
	background: #eee;
	padding: 2px 5px;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
}

.sponsor-image {
	width: 100%;
}

.sponsor-image img {
	border-radius: 4px;
	width: 100%;
}

.sponsor-name {
	font-size: 1rem;
	margin-top: 0;
}


.sponsor-card .sponsor-name {
	font-size: 1rem;
	/* white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis; */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.sponsor-level {
	font-size: smaller;
}

.sponsor-card .sponsor-level {
	padding: 0 10px;
}

.sponsor-see-more {
	cursor: pointer;
	font-size: smaller;
	text-decoration: underline;
	margin-top: 3px;
}

.speaker-card {
	background: #fff;
	width: 100%;
	display: inline-block;
	position: relative;
	vertical-align: top;
}

.speaker-card .speaker-image {
	width: 80px;
	height: 80px;
	float: none;
	display: inline-block;
}

.speaker-card .speaker-image img {
	position: initial;
	top: initial;
	left: initial;
}

.speaker-card .speaker-image.ratio::before {
	display: none;
}

#speaker_modal #speaker-preview {
	width: 120px;
	height: 120px;
	display: inline-block;
}

#speakers_area.ep-container .media {
	margin-top: 10px;
}

/* #edit_speaker_title_modal .vs-form-check { */
#edit_sponsor_title_modal .vs-form-check,
#edit_speaker_title_modal .vs-form-check,
#edit_products_title_modal .vs-form-check,
.vs-form-check.fit-content {
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.5rem;
}

.vs-form-check-full,
#emailAttendees .vs-form-check {
	width: 100% !important;
}

.speaker-card .speaker-info {
	padding: 5px 0;
	float: none;
	width: calc(100% - 95px);
	display: inline-block;
	vertical-align: top;
}

/* .speaker-image img {
	border-radius: 4px;
	width: 100%;
	height: 100%;
}

#speakers-container-embed .speaker-image img {
	height: auto;
} */

/* .speaker-card .speaker-image img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
} */
/*
.speaker-name {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 5px;
    line-height: 1.1rem;
    margin-bottom: 5px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.speaker-title {
	font-size: smaller;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
} */

.ep-container .speaker-name,
.ep-container .speaker-title,
#event-preview .speaker-name,
#event-preview .speaker-title {
	overflow: visible;
	text-overflow: initial;
	white-space: initial;
}

#speaker_info_area #speaker_info_name {
	font-size: 1.1rem;
	line-height: 1.4rem;
	text-overflow: initial;
	overflow: visible;
	white-space: initial;
}

#speaker_info_area #speaker_info_title {
	font-size: 0.8rem;
	line-height: 1.2rem;
	text-overflow: initial;
	overflow: visible;
	white-space: initial;
}

.speaker-social-links a {
	margin: 0 5px 10px 0;
	font-size: 1rem;
}

.speaker-card .edit-cog {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #444;
}

#speaker_modal h5 {
	font-weight: 700;
	margin: 30px auto 10px;
	font-size: 1rem;
}

label#speaker-file-label {
	margin-left: 20px;
	border: 1px solid #ccc;
	background: #eee;
	padding: 2px 5px;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
}

.speaker-see-more {
	cursor: pointer;
	font-size: smaller;
	text-decoration: underline;
}

#event-preview .tab-content {
	padding: 20px 0;
}

#edit_schedule_title_modal .vs-form-check {
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.5rem;
}

.schedule_row .edit-cog {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #444;
}

.schedule_row .reminder-cog {
	position: absolute;
	top: 30px;
	right: 1px;
	color: #444;
}

.schedule_row {
	position: relative;
}

#schedule table {
	background: white;
}

#schedule td {
	padding: 20px;
}

#schedule td:last-child {
	width: 20%;
}

#schedule td:last-child button {
	margin-bottom: 10px;
}

.schedule-title {
	margin: 5px auto;
}

.schedule-time {
	font-size: smaller;
}

.schedule-description {
	font-size: smaller;
	margin-bottom: 10px;
}

#add-schedule-modal input[type="checkbox"] {
	margin-right: 5px;
}

/* Snackbar */

#snackbar-success {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #396129;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	bottom: 30px;
}

#snackbar-success.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbar-error {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #9a2f23;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	bottom: 30px;
}

#snackbar-error.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Contact pages */
.form-section {
	margin-top: 20px;
	margin-bottom: 20px;
}

form #website {
	display: none;
}

/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

/* .schedule-speakers .speaker-image {
	width: initial;
	display: inline-block;
}

.schedule-speakers .speaker-image img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.schedule-speakers .speaker-name {
	display: inline-block;
	font-weight: 300;
	font-size: smaller;
	margin-left: 5px;
	margin-top: 10px;
	width: calc(100% - 50px);
} */

#qr_display > div {
	margin: 0 auto;
}

.hide {
	display: none !important;
}

.browser-banner {
	background-color: #000950;
	color: white;
	padding: 5px;
	min-height: 30px;
	text-align: center;
	font-size: 0.8rem;
}

#browser-banner img {
	max-width: 100px;
	margin-top: -2.5px;
}

#browser-banner a {
	color: white;
	text-decoration: underline;
}

#browser-banner a:hover {
	color: var(--vs-primary);
}

@media only screen and (max-width: 992px) and (min-width: 577px) {
	.browser-banner {
		padding: 10px 15px;
		font-size: 0.8rem;
	}
}

@media only screen and (max-width: 576px) {
	.browser-banner {
		padding: 15px 15px;
		font-size: 0.7rem;
	}
}

/* Account Hub */
.ac-screen {
	margin-top: 15px;
}

.modal-overlay {
	background: rgba(255, 255, 255, 0.9);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

.image-upload-progress-area {
	position: absolute;
	width: 80%;
	left: 10%;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#qr_modal_img {
	width: 75%;
	min-height: 100px;
	background-repeat: no-repeat;
	background-position: center;
}

#ticket-seat-display {
	margin: 10px 0;
}

#ticket-seat-display p {
	padding: 0;
	margin: 0;
}

#ticket-seat-display .ticket-seat-heading {
	font-weight: bold;
}

.bg-transparent {
	background-color: transparent;
}

.modal-body.terms h2 {
	font-size: 20px;
}

/* White label demo page css */

#whitelabel_demo_html {
	scroll-behavior: smooth;
}

#embed-demo-body {
	background-color: #f7f7f7;
	scroll-behavior: smooth;
}

#embed-demo-body header {
	padding: 10px 20px;
	background: var(--vs-secondary-light);
}

#embed-demo-body #banner {
	padding: 150px 0;
	background-size: cover;
}

#embed-demo-body .wl-button {
	background: var(--vs-secondary-light);
	color: white;
	padding: 9px 12px;
	font-size: 1.4rem;
	border-radius: 50%;
	display: inline-block;
}

#embed-demo-body #contact-submit {
	background: var(--vs-secondary-light);
	color: white;
	display: block;
	padding: 15px 0;
	width: 100%;
	border: none;
	border-radius: 4px;
}

#embed-link-test {
	height: 350px;
}

#cta-config-area .vs-link,
#sponsor-cta-config-area .vs-link {
	cursor: pointer;
}

.document-row .edit-cog {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #444;
}

.document-row .document-info {
	padding: 5px 0;
	float: none;
	width: calc(100% - 75px);
	display: inline-block;
	vertical-align: top;
}

.document-row .document-icon {
	width: 60px;
	height: 100%;
	float: none;
	display: inline-block;
	font-size: 2rem;
	text-align: center;
}

.ep-container .document-row .document-icon {
	width: 50px;
	font-size: 1.7rem;
}

.document-row .document-name {
	font-size: 1rem;
	font-weight: 700;
	margin-top: 5px;
	line-height: 1.1rem;
	margin-bottom: 0;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ep-container .document-name {
	font-size: 0.9rem;
	overflow: visible;
	text-overflow: initial;
	white-space: initial;
}

.document-row .document-file,
.document-row .document-size {
	font-size: smaller;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.document-row .document-file,
.document-row .document-size {
	margin-top: 3px;
}

.document-row .document-status {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.document-icon .fa-file-excel,
.document-icon .fa-file-csv {
	color: #1d6f42;
}

.document-icon .fa-file-powerpoint {
	color: #d04423;
}

.document-icon .fa-file-pdf {
	color: #ed2224;
}

.document-icon .fa-file-word {
	color: #4367a5;
}

.document-icon .fa-file-archive {
	color: #f8d775;
}

.document-icon .fa-dropbox {
	color: #3d9ae8;
}

.document-icon .fa-google-drive {
	color: #757575;
}

#edit_document_title_modal .vs-form-check {
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.5rem;
}

.dashboard_status_count {
	width: 200px;
	border: 2px solid #ccc;
	border-radius: 4px;
	padding: 20px;
	text-align: center;
}

/** Intro.js styling **/

.introjs-tooltip {
	max-width: 100% !important;
	min-width: 300px !important;
	background-color: var(--vs-white);
}

@media only screen and (min-width: 600px) {
	.introjs-tooltip {
		min-width: 400px !important;
	}
}

#faq-container-embed .edit-cog {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #444;
}

#faq-container-embed .edit-cog .dropdown-toggle::before,
#faq-container-embed .edit-cog .dropdown-toggle::after {
	display: none;
}

#faq-container-embed .accordion-button {
	padding: 0.7rem 1.25rem;
}

#faq-container-embed .accordion-body {
	background-color: #fafafa;
}

img.image-splash-screen {
	width: 300px;
}

#embed-demo-card-img-one {
	height: 350px;
}

.vs-side-nav.hover #close_nav_btn {
	display: none;
}

@media screen and (max-width: 500px) {
	.vs-side-nav.hover #close_nav_btn {
		display: inline-block;
	}
}

.upload-image-with-overlay {
	width: 200px;
	height: 112px;
	text-align: center;
}

.upload-image-with-overlay button {
	position: absolute;
	left: 0;
	width: 200px;
	height: 112px;
	background-color: #00000022;
	transition: background-color 0.5s;
}

.upload-image-with-overlay button:hover {
	background-color: #00000055;
}

.upload-image-with-overlay svg {
	background-color: white;
	padding: 6px;
	box-sizing: content-box;
	border-radius: 5px;
}

.action-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	transition: background-color 0.5s;
}

.action-overlay:hover {
	background-color: #00000011;
}

#event_types .link-shadow,
#event_types .img-fluid {
	border-radius: 10px;
}

.notif-card .edit-cog {
	color: #444;
}

.notif-card .edit-cog .dropdown-toggle::before,
.notif-card .edit-cog .dropdown-toggle::after {
	display: none;
}

.new-notif-icon {
	font-size: 0.6rem;
	position: absolute;
	right: 10px;
	color: red;
}

.whitelabel-demo-contact-form {
	max-width: 600px;
	margin: auto;
}

.whitelabel-demo-text-1 {
	margin: 0 35px;
}

.whitelabel-demo-howitworks {
	padding: 0 35px;
}

#speaker_preview_modal .sp_name {
	font-size: 1.3rem;
}

#speaker_preview_modal .sp_links {
	font-size: 1.2rem;
}

#speaker_preview_modal .sp_description {
	white-space: pre-wrap;
}

.cursor-pointer {
	cursor: pointer;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 25px;
	margin: 0 5px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

input:checked + .slider {
	background-color: var(--vs-secondary-light);
}

input:focus + .slider {
	box-shadow: 0 0 1px var(--vs-secondary-light);
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

.theme-switch .slider:before {
	background-image: url("../images/icons/sun-solid.svg");
}

.theme-switch input:checked + .slider:before {
	background-image: url("../images/icons/cloud-moon-solid.svg");
}

.border {
	border: 1px solid var(--vs-border) !important;
}

.bg-light {
	background-color: var(--vs-content) !important;
}

.bg-white {
	background-color: var(--vs-white) !important;
}

.text-dark {
	color: var(--vs-dark) !important;
}

.text-muted {
	color: var(--vs-muted) !important;
}

.card {
	background-color: var(--vs-white);
}

.modal-content {
	background-color: var(--vs-bg-white);
}

.input-group-text {
	background-color: var(--vs-white);
	border-color: var(--vs-border);
	color: var(--vs-dark);
}

.vs-navbar-logo {
	line-height: 25px;
	text-decoration: none;
	font-weight: 300;
}

.vs-navbar-logo svg {
	fill: #fff;
	width: 100px;
	transition: fill .4s;
	margin: 6px 10px;
}

.vs-navbar-logo svg .cls-1 {
	fill: transparent;
}

.vs-navbar-logo-blue {
	line-height: 25px;
	text-decoration: none;
	font-weight: 300;
}

.vs-navbar-logo-blue svg {
	fill: var(--vs-primary);
	width: 100px;
	transition: fill .4s;
	margin: 6px 10px;
}

.vs-navbar-logo-blue svg .cls-1 {
	fill: transparent;
}

ul.social-share li a {
	transition: all .4s cubic-bezier(0.4, 0, 1, 1);
}

ul.social-share li a:hover {
	opacity: 80%;
}

.social > .fw-light {
	line-height: 2.5;
}

.social > .img-fluid {
	margin-left: -5px;
}

.bg-light-gray {
	background-color: #f1f1f1;
}

.event-modal.modal .modal-header .modal-title {
	display: inline-block;
	margin: 0;
	height: 34px;
	line-height: 34px;
	color: #171718;
	font-weight: bold;
	font-size: 18px !important;
}

.event-modal .modal-body {
	height: calc(100vh - 250px);
	overflow: auto;
}

.card-rounded {
	border-radius: 15px;
}

.ticket-display-list .ticket-preview {
	background: #ccc;
	height: 15px;
	border-radius: 15px;
	width: 90%;
	margin: 10px auto 0;
}

.ticket-display-cards .ticket-preview {
	background: #ccc;
	height: 55px;
	width: 55px;
	margin: 10px auto;
	border-radius: 15px;
}

.no-tics-alert {
	background-color: #e0e0e0;
	max-width: 350px;
}

.border-15 {
	border-radius: 15px;
}

.notification-title.notif-unread {
	font-weight: 700;
}

.notification-source {
	font-size: .74rem;
}

.notification-time {
	font-size: .74rem;
}

.notification-short-message {
	margin-top: 5px;
	font-size: .84rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	color: #888;
}

.notification-short-message.notif-unread {
	color: #000;
}

.notification-long-message {
	margin-top: 5px;
	font-size: .84rem;
	width: 100%;
}

.unread-notification-icon {
	font-size: .74rem;
	padding-right: 5px;
	color: #0000db;
}

.event-card-date {
	font-size: 0.8rem;
	display: block;
	margin-top: 5px;
}

.text-overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.event-modal {
		padding: 0 !important;
	}

	/*.event-modal:not(.in) .modal-dialog {
		-webkit-transform: translate3d(25%, 0, 0);
		transform: translate3d(25%, 0, 0);
	}*/
	.event-modal .modal-content {
		width: 100%;
		height: 100%;
		margin: 0 0 0 auto;
		padding: 0;
	}

	.event-modal .modal-dialog {
		height: 100%;
		border-radius: 0;
		max-width: 600px;
		margin: 0 0 0 auto;
	}

	.event-modal.small .modal-content {
		max-width: 355px;
	}

	.event-modal .modal-body {
		height: calc(100vh - 139px);
	}
}

.premium-locked-container {
	position: relative;
}
.premium-locked-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, .5);
}

/*********************************
  -- embed
**********************************/

#launcher {

margin: 50px !important;
z-index: 50 !important;
}

/*********************************
  -- color picker
**********************************/

.cp-blue {
background-color: #002566;
color: #fff;

}

.cp-gray {
background-color: #666;
color: #fff;
}

.cp-green {
background-color: #5EB229;
color: #fff;
}
@media screen and (min-width: 768px) {
.right-10{
	left:12px;
}
}
/*********************************
  - Ticket Insurance
**********************************/
#refundable-container .styles-tpWrapper-bU4Oq{
	display:none !important;
}
#refundable-container .styles-refundSubHeader-x7DmI{
	background-color: #e5e5e5 !important;
	color: #000000 !important;
}
#refundable-container .styles-refundSubHeader-x7DmI a{
	color: #0000FF !important;
}
#refundable-container .styles-noProtectionWrapper-R2AZS{
	background-color: #e5e5e5 !important;
	border-radius: 50px !important;
}
#refundable-container .styles-refundHeader-YaU6w{
	background-color: #e5e5e5 !important;
	color: #000000 !important;
	border-radius: 50px !important;
}
#refundable-container .styles-refundHeaderBadge-z7Zcq{
	background-color: #e5e5e5 !important;
	color: #000000 !important;
}
#refundable-container .bi-check2{
	color:#000000 !important;
}
#refundable-container .styles-refundHeaderLeft-a4Tg2 h3,
 .styles-refundHeaderRight-vrDMz h3{
	color:#000000 !important;
 }

 .styles-noProtectionWrapper-R2AZS{
	padding: 10px 20px !important;
 }

/*********************************
  - Ticket Insurance Unstyled Code
**********************************/
 .refund-title{
	font-size: .8rem;
    white-space: nowrap;
 }

 .refund-header{
	background-color: #e5e5e5;
	border-radius: 50px;
	white-space: nowrap;
 }



 @media screen and (max-width: 990px) {
	.whiteLabelStyles-refundHeaderBadge-C93Pi{
	display: none !important;
 }

 .refund-header h3{
	font-size: 0.9em !important;
}
}

.refund-sub-header{
	background-color: #e5e5e5;
	border-radius: 50px;
	padding: 10px 20px;
}

.refund-sub-header a{
	color: #0000FF;
}

.whiteLabelStyles-tpWrapper-TRSVm{
	display: none !important;
}

.no-protection-wrapper{
	background-color: #e5e5e5;
	border-radius: 50px;
	padding: 10px 20px !important;
}


.whiteLabelStyles-refundLabel-K3yJx input:checked + span::before{
	box-shadow: inset 0 0 0 0.5em #5EB229 !important;
}

.whiteLabelStyles-noProtectionWrapper-YFqKP .whiteLabelStyles-refundLabel-K3yJx input:checked + span::before{
	box-shadow: inset 0 0 0 0.5em #545553 !important;
}

@media screen and (max-width: 768px) {
	.refund-sub-header{
	margin-top: 35px;
	border-radius: 50px !important;
 }

}

@media screen and (max-width: 576px) {
	.whiteLabelStyles-refundHeaderLeft-Kyqyq div:first-child {
		display: inline-block !important;
		align-items: start !important;
		justify-content: flex-start !important;
		width: auto !important;
	}

	.whiteLabelStyles-refundHeaderLeft-Kyqyq h3 {
		padding: 0px !important;
	}

	.whiteLabelStyles-refundTitle-rOSpw > div:first-child{
		justify-content: left !important;
	}

.whiteLabelStyles-refundHeaderLeft-Kyqyq, .whiteLabelStyles-refundHeaderRight-J9xbp {
    display: inline-block !important;
    align-items: center !important;
}

.whiteLabelStyles-refundHeader-wHp4C h3, .whiteLabelStyles-noProtectionWrapper-YFqKP h3 {
    margin-left: 7px !important;
}

.refund-header h3{
	font-size: 0.9em !important;
}

label.whiteLabelStyles-refundLabel-K3yJx{
	position: relative !important;
    top: 5px !important;
}
}
