﻿body {
    background: #ededed;
}

#body {
    flex: 1;
}

.color-black {
    color: black;
}

.max-width70-perk {
    max-width: 70%;
}

.main {
    width: 960px;
    background: none;
    border: none; 
}

.main-80vw {
    width: 80vw;
}

.main-80vw > .grid-holder {
    width: 100%;
}

.title {
    color: black;
}

.side-menu-header {
    background-image: none;
    color: black;
}

.fancy-form, .fancy-error, .fancy-success {
    
    background: none;
  
}

.flex-child img {
    max-width: 110px !important;
    max-height: 110px !important;
    margin-left: 10px;
}

.dataGrid td {
    padding: 20px 4px !important;
    font-size: 1.2em !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}


.p-0 {
    padding: 0 !important;
}

.p-5 {
    padding: 1em;
}

.full-width {
    width: 100%;
}

.m-1 {
    margin: 0.2em;
}

.m-2 {
    margin: 0.4em;
}

.m-3 {
    margin: 0.6em;
}

.m-4 {
    margin: 0.8em;
}

.m-5 {
    margin: 1em;
}

.mr-0 {
    margin-right: 0 !important;
}

.mt-1 {
    margin-top: 0.2em;
}

.mt-2 {
    margin-top: 0.4em;
}

.mt-3 {
    margin-top: 0.6em;
}

.mt-4 {
    margin-top: 0.8em;
}

.mt-5 {
    margin-top: 1em;
}

.mb-1 {
    margin-bottom: 0.2em;
}

.mb-2 {
    margin-bottom: 0.4em;
}

.mb-3 {
    margin-bottom: 0.6em;
}

.mb-4 {
    margin-bottom: 0.8em;
}

.mb-5 {
    margin-bottom: 1em;
}

.ml-1 {
    margin-left: 0.2em;
}

.ml-2 {
    margin-left: 0.4em;
}

.ml-3 {
    margin-left: 0.6em;
}

.ml-4 {
    margin-left: 0.8em;
}

.ml-5 {
    margin-left: 1em;
}

.mr-1 {
    margin-right: 0.2em;
}

.mr-2 {
    margin-right: 0.4em;
}

.mr-3 {
    margin-right: 0.6em;
}

.mr-4 {
    margin-right: 0.8em;
}

.mr-5 {
    margin-right: 1em;
}

.padding-right-menu {
    padding-right: 45px;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: 2px underline;
    text-underline-offset: 5px;
}

.background-white {
    background-color: #FFFFFF;
}

a {
    color: #000000;
}

.pointer {
    cursor: pointer;
}

.overflow-x-auto {
    overflow-x: auto !important;
}

.color-active {
    color: #f45827;
}
/*// Flex display*/
.flex {
    display: flex;
    box-sizing: border-box;
}

.inline-flex {
    display: inline-flex;
    box-sizing: border-box;
}


/*// Flex direction*/

.flex-row {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}

.flex-col {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.flex-wrap {
    flex-wrap: wrap;
}

/*// Shorthands*/

.flex-initial {
    flex: initial;
}

.flex-auto {
    flex: auto;
}

.flex-1 {
    flex: 1 
}

.flex-2 {
    flex: 2 
}

.flex-3 {
    flex: 3 
}

.flex-4 {
    flex: 4 
}

.flex-5 {
    flex: 5 
}

.flex-none {
    flex: none;
}

.flex-nogrow {
    flex: 0 1 auto;
}

.flex-noshrink {
    flex: 1 0 auto
}

.flex-grow {
    flex: 1 1 100%;
}

.flex-grow25 {
    flex: 0 1 25%;
}

.flex-grow30 {
    flex: 0 1 30%;
}

.flex-grow45 {
    flex: 0 1 45%;
}

.flex-grow50 {
    flex: 0 1 50%;
}

.flex-grow75 {
    flex: 0 1 75%;
}

.flex-grow65-all {
    flex: 0 1 65%;
}

.flex-4-columns {
    width: 100%;
    max-width: 25%;
}


/*//Justify-Content*/

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}


/*//Align-Content*/

.content-start {
    align-content: flex-start;
}

.content-end {
    align-content: flex-end;
}

.content-center {
    align-content: center
}

.content-stretch {
    align-content: stretch
}

.content-between {
    align-content: space-between;
}

.content-around {
    align-content: space-around;
}

.content-evenly {
    align-content: space-evenly;
}


/*//Align-Items*/

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center
}

.align-stretch {
    align-items: stretch
}

.align-baseline {
    align-items: baseline;
}

.center-center {
    justify-content: center;
    align-items: center;
}


/*//Align-Self*/

.item-start {
    align-self: flex-start;
}

.item-end {
    align-self: flex-end;
}

.item-center {
    align-self: center
}

.item-stretch {
    align-self: stretch
}

.item-baseline {
    align-self: baseline;
}


/*// Gap*/

.gap-4 {
    gap: 4px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}




/*//Item Utilities*/

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fill {
    margin: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.center-text {
    text-align: center;
}

.hide {
    display: none;
}

#container {
    margin: 0;
}

.vb-header {
    width: 100% !important;
    height: auto !important;
}

.top-navigation-my-profile-section {
    height: 50px;
    background-color: #000000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 95px;
}

.top-navigation-my-profile-section-btn {
    margin: 0 5px;
}

.top-navigation-my-profile-section-text {
    color: #fefefe;
}

.top-navigation-my-profile-section-btn > a {
    color: #BEBEBE;
    font-size: 0.9em;
}

.main-menu-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 20px 100px;
}

    .main-menu-section > .new-header-left,
    .main-menu-section > .new-header-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }


.new-header-logo {
    position: relative;
    z-index: 1000;
}

.new-header-logo > a > img {
    width: 100px;
}

.footer-logo {
    background: url('design2/Logo/VIP LOGO white-border.svg') no-repeat;
    background-size: contain;
}

.new-header-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 20px;
}

    .new-header-menu > span,
    .new-header-menu > span {
        margin: 0 10px;
    }

    .new-header-menu > span > a {
        color: #000000;
        font-weight: bold;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-items: center;
        align-items: center;
    }

.main-menu-btn > i {
    font-size: 1.5em;
}

.mega-menu-content {
    display: none;
    visibility: hidden;
    position: absolute;
    background-color: #ededed;
    width: 100%;
    left: 0;
    box-shadow: 0px 16px 8px 0px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}


.mega-menu-header {
    align-items: center;
}

.mega-menu-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
}

.new-header-right > .new-header-menu > .menu-item-container > .mega-menu-content > .mega-menu-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mega-menu-row > .column > h3 > a,
.mega-menu-row > .column > ul > li > a {
    color: #000000;
}

.mega-menu-row > .column > h3 > a {
    font-weight: bold;
}

.mega-menu-row > .column > ul > li {
    font-weight: bold;
    list-style: none;
    margin: 5px 0;
}

.menu-img {
    width: 130px;
}

.menu-item-container {
    cursor: pointer;
}
/* Show the dropdown menu on hover */
/*    .menu-item-container:hover .mega-menu-content {
        display: block;
        visibility: visible;
    }*/

.menu-item-container .main-menu-btn.active > i {
    font-size: 2.5em;
}

.additional-info-container {
    padding: 20px;
    background-color: rgba(226, 245, 235, 0.9);
}

.menu-count-info {
    font-size: 14px;
    width: 250px;
}

.additional-info-title {
    display: flex;
    /*align-items: center;*/
}

.additional-info-description {
    width: 250px;
    font-size: 12px;
    font-style: italic;
    padding-left: 20px;
}

.additional-info-link {
    font-size: 14px;
    padding-left: 20px;
}

.vb-btn {
    color: #fefefe !important;
    background-color: #000000;
    padding: 10px 40px;
    border-radius: 50px;
}

.alternative-color {
    color: #fefefe !important;
    background-color: #f15c2e;
}

.search-box-container {
    width: 100%;
}

.new-home-search-box {
    width: 50vw;
    min-width: 200px;
    padding: 12px;
    border-radius: 0;
    background-color: #c1c1c1;
    color: black;
    font-weight: bold;
}

input:focus, input.focus, textarea:focus, textarea.focus {
    border-color: #000000;
    box-shadow: 0 0 3px #000000;
}

.submit-search-btn {
    border-radius: 0;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    left: -7px;
    border: 1px solid #f15e30;
    border-top: 0;
}

ul.ui-autocomplete {
    z-index: 1000 !important;
    max-height: 300px !important;
    overflow: auto !important;
}

.autocomplete-item-rich {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 6px 10px !important;
    text-decoration: none;
    white-space: nowrap;
}

.autocomplete-img-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.autocomplete-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.autocomplete-thumb-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autocomplete-thumb-placeholder i {
    font-size: 18px;
    color: #888;
}

.autocomplete-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-type-badge {
    flex-shrink: 0;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #f15e30;
    color: #fff;
    font-weight: 600;
    margin-left: auto;
}

.advanced-search-container {
    width: calc(50vw + 80px);
}

.advanced-search-container > span {
    margin-right: 10px;
}

.ui-menu .ui-menu-item {
    padding: 5px;
}

a.ui-corner-all {
    font-size: 14px !important;
    font-weight: bold;
    display: block;
    width: 95%;
    padding: 5px;
}

.ui-widget-content .ui-state-hover {
    width: 95%;
    border: 0;
    font-size: 14px !important;
    font-weight: bold;
    border-radius: 0 !important;
    padding: 5px;
}

.vb-shadow-container {
    width: 100% !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    width: 100% !important;
    height: 200px !important;
    background: #000000 !important;
}

.contactus-social-icon {
    filter: invert(1);
}

/* main container */
.vb-main {
    width: 100% !important;
    background: #ededed !important;
    border: none !important;
}

.container {
    margin: 0 100px;
    padding: 50px 0;
}

.vb-main > .container.grid-holder {
    width: auto;
}

.container-list {
    background-color: #fefefe;
    padding: 15px 30px;
}

.image-container {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.news-container {
    margin-bottom: 45px;
}

.news-link {
    font-size: 1.1em;
}

.news-icon {
    color: #f15b2e;
    filter: drop-shadow(2px 4px 6px #f15b2e);
}

.entity-info {
    padding: 20px 0 100px 0;
    border-bottom: 1px solid black;
}

.entity-type {
    padding: 50px 0 5px 0;
    border-bottom: 2px solid #000000;
}

.entity-title {
    font-size: 2em;
    font-weight: bold;
}

.entity-logo {
    border-radius: 50%;
    /* width: 100%; */
}
.google-map {
    width: 100%;
    height: 300px;
}

.map-holder .google-map iframe {
    height: 300px !important;
}

.entity-more-info {
    display: none;
    text-align: justify;
    padding: 10px 0;
}

#more-info:checked ~ .entity-more-info {
    display: block
}

#more-info:checked ~ .show-more-container > .material-icons {
    transform: rotateZ(45deg);
}

.news-date {
    color: #f45827;
    font-size: 0.8em;
    margin: 0;
}

.entity-menu {
    border-bottom: 1px solid black;
}

.menu-top-border {
    border-bottom: 5px solid black;
}

.entity-menu-title {
    padding: 12px 10px;
    border-bottom: 1px solid black;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes slideIn {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

@keyframes slideIn {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.colabsable-hidden {
}

/*#colapse-staff:checked ~ #colapse-staff-container,*/
#colapse-staff:checked ~ #menu-title-label > #close-staff,
#colapse-roster:checked ~ #colapse-roster-container,
#colapse-roster:checked ~ #menu-title-label > #close-roster,
#colapse-upcoming:checked ~ #colapse-upcoming-container,
#colapse-upcoming:checked ~ #menu-title-label > #close-upcoming,
#colapse-tour:checked ~ #colapse-tour-container,
#colapse-tour:checked ~ #menu-title-label > #close-tour,
#colapse-near:checked ~ #colapse-near-container,
#colapse-near:checked ~ #menu-title-label > #close-near,
#colapse-pich:checked ~ #colapse-pich-container,
#colapse-pich:checked ~ #menu-title-label > #close-pich,
#colapse-maillist:checked ~ #colapse-maillist-container,
#colapse-maillist:checked ~ #menu-title-label > #close-maillist {
    display: block;
}

#colapse-staff:checked ~ #menu-title-label > #open-staff,
#colapse-roster:checked ~ #menu-title-label > #open-roster,
#colapse-upcoming:checked ~ #menu-title-label > #open-upcoming,
#colapse-tour:checked ~ #menu-title-label > #open-tour,
#colapse-near:checked ~ #menu-title-label > #open-near,
#colapse-pich:checked ~ #menu-title-label > #open-pich,
#colapse-maillist:checked ~ #menu-title-label > #open-maillist {
    display: none;
}

.staff-group-title {
    padding: 10px 0;
    border-bottom: 1px solid black;
}

.staff-info-container {
    position: relative;
}


@media (max-width: 960px) {
    .flex-grow25 {
        flex: 1;
        width: 100%;
        margin-bottom: 1em;
    }

    .flex-grow50,
    .flex-grow45 {
        flex: 1;
        width: 100%;
        margin-bottom: 1em;
    }

    .flex-grow75 {
        flex: 1;
        width: 100%;
        margin-bottom: 1em;
    }

    .mega-menu-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .column {
        margin-bottom: 1em;
    }
}

.chartTitle {
    color: black;
}

.artist-info {
    box-sizing: initial;
    overflow: auto;
    text-align: inherit;
    float: initial;
    border: none;
    width: initial;
    height: initial;
    margin: initial;
}

.staff-modal-info {
    padding: 50px;
}

.staff-modal-profile-info {
    margin: 0 20px;
}

.staff-modal-profile-info  > img {
    width: 225px;
    border-radius: 20px;
}

.rank-holder {
    font-size: 0.9em;
}

.modal-info-row {
    padding: 20px 0;
    border-bottom: 1px solid black;
}

.person-title.textUpperCase {
    font-size: 1.4em;
}

.modal-staff-pic > img {
    width: 82px;
    height: 82px;
    border-radius: 100px;
}

.modal-staff-info {
    font-size: 14px;
}

.artist-info-container {
    position: relative;
    height: 500px;
    width: 100%;
}

    .artist-info-container > .entity-title {
        width: 95%;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 10px 0 10px 20px;
        z-index: 99;
    }

.title-text,
.title-text > a {
    color: white;
    font-size: 1em;
}

.genres-text {
    font-size: 0.4em;
    margin-top: 5px;
    color: white;
}

.artist-image {
    width: calc(95% + 20px);
    position: absolute;
    height: 500px;
}

    .artist-image > img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        object-position: top;
    }

.related-news {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid;
}

.width-200px {
    width: 200px;
}

.audience-title {
    width: 100%;
    text-align: center;
}

.no-border {
    border: none !important;
}

.access-level-label {
    right: 0;
    color: #f15b2e;
    font-size: 0.6em;
}

.fancybox-outer, .fancybox-inner {
    position: relative;
    margin-top: 40px;
}

.fancybox-opened .fancybox-skin {
    border-radius: 20px;
    background: #f9f9f9;
}

.social-media-holder {
    padding: 50px 10px;
}

table {
    border: none;
}

#googleDonutChart {
    border: none;
}

.chart-holder-title {
    border-bottom: 1px solid #ccc;
}

.main.venueMap {
     background: none; 
     border: none; 
}

.main-container.map-search {
    border: none;
    background-image: none;
}

.events-holder {
    width: auto;
    overflow: visible;
    height: auto;
    max-height: none;
}

/*Dropdown profile page*/

.dropdown {
    position: relative;
    width: 230px;
}
.dropdown__face,
.dropdown__items {
    background-color: #000;
    padding: 5px 20px;
    border-radius: 25px;
    color: #fff;
}

.dropdown__face {
    position: relative;
}

.dropdown__items {
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    list-style: none;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.93, 0.88, 0.1, 0.8);
    max-height: 300px;
    overflow-y: auto;
    padding: 30px 0;
}


.dropdown__items li a {
    color: #fff;
}

.dropdown__input {
    display: none;
}

.dropdown__input:checked ~ .dropdown__items {
    top: calc(100%);
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}

.view-all-title-text a {
    font-size: 12px;
}

.border-top {
    border-top: 1px solid grey;
    padding-top: 10px;
}

.border-bottom {
    border-bottom: 1px solid grey;
    padding-bottom: 10px;
}

.entity-menu-colapse {
    background: white;
    padding: 20px;
}

.entity-menu-title:has(input:checked) {
    background: white;
}

#audience-report {
    background: transparent;
}

.no-bulets{ 
    list-style: none;
}

.no-bulets li {
    margin-top: 10px;
    margin-bottom: 10px;
}

#admin-actions {
    width: 600px;
}

.dropdown__text {
    text-transform: capitalize;
    font-weight: normal;
}

.side-events-date {

    font-size: 0.7em;
    color: #666666;
    text-align: center;

}

/*Loading*/
@keyframes ldio-yzaezf3dcmj {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.ldio-yzaezf3dcmj div {
    left: 94px;
    top: 48px;
    position: absolute;
    animation: ldio-yzaezf3dcmj linear 1s infinite;
    background: #100306;
    width: 12px;
    height: 24px;
    border-radius: 6px / 12px;
    transform-origin: 6px 52px;
}

    .ldio-yzaezf3dcmj div:nth-child(1) {
        transform: rotate(0deg);
        animation-delay: -0.9166666666666666s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(2) {
        transform: rotate(30deg);
        animation-delay: -0.8333333333333334s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(3) {
        transform: rotate(60deg);
        animation-delay: -0.75s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(4) {
        transform: rotate(90deg);
        animation-delay: -0.6666666666666666s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(5) {
        transform: rotate(120deg);
        animation-delay: -0.5833333333333334s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(6) {
        transform: rotate(150deg);
        animation-delay: -0.5s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(7) {
        transform: rotate(180deg);
        animation-delay: -0.4166666666666667s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(8) {
        transform: rotate(210deg);
        animation-delay: -0.3333333333333333s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(9) {
        transform: rotate(240deg);
        animation-delay: -0.25s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(10) {
        transform: rotate(270deg);
        animation-delay: -0.16666666666666666s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(11) {
        transform: rotate(300deg);
        animation-delay: -0.08333333333333333s;
        background: #100306;
    }

    .ldio-yzaezf3dcmj div:nth-child(12) {
        transform: rotate(330deg);
        animation-delay: 0s;
        background: #100306;
    }

.loadingio-spinner-spinner-2by998twmg8 {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: #fefefe;
}

.ldio-yzaezf3dcmj {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
}

    .ldio-yzaezf3dcmj div {
        box-sizing: content-box;
    }
/* [ldio] generated by https://loading.io */

.tour-dates-entity-info {
    background-color: transparent;
    width: auto;
}

.event-date-month-day > span {
    color: #666;
}
.entity-map {
    width: 100%;
}

.keywords {
    font-style: italic;
    font-size: 0.8em;
    padding-top: 10px;
}

.ca-login {
    font-size: 10pt !important;
}

.on-tour-icon {
    font-size: 0.4em;
    color: #f45827;
    top: 15px;
    text-transform: uppercase;
}

.events-holder .results-title {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    margin: 0;
    width: 95%;
    padding: 0 10px;
    border: 0;
    overflow: visible;
}

.new-modal-events-grid {
    margin-top: 65px;
}

.modal-title {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.list-title {
    font-size: 1.2em;
}

img.events-roster-image {
    border-radius: 200px;
    width: 80px;
    height: 80px;
    padding: 10px;
    border: 1px solid black;
}

.artist-info-number {
    text-align: center;
}

.artist-info-name {
    text-align: center;
}

a.admin-action-link {
    font-size: 0.8em;
    font-weight: normal;
    margin: 5px 0px;
}

.change-tours-type {
    text-transform: capitalize
}

/*.profile-select-box {
    background-color: #000;
    padding: 5px 20px;
    border-radius: 25px;
    color: #fff;
    font-size: 1em;
}*/
.profile-select-box,
.new-form-select-design > select {
    appearance: none; /* Removes default styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-size: 1em;
    border: 1px solid #ccc;
    cursor: pointer;
    background-image: url('design2/keyboard_arrow_down_24dp_white.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 24px;
    margin: 0;
    font: unset;
}

/* Ensure select has a consistent width */
    .profile-select-box::-ms-expand,
    .new-form-select-design > select {
        display: none; /* Hide default arrow in IE/Edge */
    }

.advanced-search-title {
    width: calc(100% - 40px);
    font-size: 1.2em;
}

.advanced-search-form-container {
    width: 70vw;
    background-color: #FFF;
    border-radius: 10px;
}

.new-form-design {
    width: 100%;
    padding: 20px;
}

.new-form-select-design > input,
.new-form-select-design > textarea {
    background-color: #000;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    -webkit-appearance: none;
    width: 100%;
    border: none;
    border-radius: 0;
    color: #FFF;
    font-size: 14px;
    padding: 16px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0;
}

    .new-form-select-design > input:focus{
        background-color: #e25a00;
    }

.new-form-select-design > select,
.new-form-select-design > input,
.new-form-select-design > textarea {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    width: 25vw;
    padding: 16px;
}

    .new-form-select-design > select > option,
    .new-form-select-design > label,
    .custom-checkbox  > label {
        font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
        font-weight: 900;
        background-color: transparent !important;
    }

    .new-form-select-design > input:read-only {
        background-color: gray !important;
    }

.new-home-search-box {
    background-color: #000;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    color: #FFF;
    font-size: 14px;
    padding: 16px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0;
}

.new-home-search-box:focus {
    border-color: none;
    box-shadow: none;
}


.custom-checkbox input[type=checkbox] {
    --active: #f15a2d;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #000;
    --border-hover: #f15a2d;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border)) !important;
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    margin: 0;
}

.custom-checkbox input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}

.custom-checkbox input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}

.custom-checkbox input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
}

    .custom-checkbox input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    .custom-checkbox input[type=checkbox]:disabled + label {
        cursor: not-allowed;
    }

.custom-checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
}

.custom-checkbox input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
}

.custom-checkbox input[type=checkbox]:not(.switch) {
    width: 21px;
}

    .custom-checkbox input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }

    .custom-checkbox input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }

.custom-checkbox input[type=checkbox] + label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
}

.custom-checkbox input[type=checkbox]:not(.switch) {
    border-radius: 7px;
}

    .custom-checkbox input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }

    .custom-checkbox input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }

}

.custom-checkbox * {
    box-sizing: inherit;
}

.custom-checkbox *:before,
.custom-checkbox *:after {
    box-sizing: inherit;
}

.vb-new-button {
    padding: 0;
    color: #FFFFFF !important;
    border-width: 0px !important;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 900 !important;
    background-color: #000000 !important;
    padding: .3em 1em !important;
    line-height: 1.7em !important;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all !important;
    transition-property: all !important;
}

    .vb-new-button:hover {
        background-color: #f26833 !important;
    }

label.error {
    background: none;
    color: red !important;
}

.results-title,
.filter-map-wrap .popup-title {
    color: #000 !important;
}

.events-holder .event-date-cell .event-date-month-day {
    top: -39%;
}

.fancybox-wrap {
    min-width: 20vw;
    max-width: 80vw;
}

.grid-holder {
    background-color: #FFF;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 50px;
    overflow: auto;
    overflow-x: hidden;
}

.results-container {
    margin: 0 auto;
    margin-top: 50px;
    margin-right: auto;
    
}

.grid-holder.map-search-wrap {
    margin: 0 auto;
    padding: 20px;
    height: 80vh !important;
}

    .grid-holder.map-search-wrap.height-auto {
        height: auto !important;
    }

.wrapper-top-list {
    padding: 60px 10px 20px 10px;
}

ol {
    list-style: none;
    padding: 0;
}

ol > li + li {
    margin-top: 1rem;
}

ol > li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 1rem;
    width: calc(100% - 10rem);
    box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
    margin: 0 auto;
}

ol > li::before {
    counter-increment: list-item;
    content: counter(list-item);
    font-size: 3rem;
    font-weight: 700;
    width: 2em;
    height: 2em;
    background: rgba(0, 0, 0, .8);
    flex: 0 0 auto;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.list-image {
    width: 100px;
    border-radius: 50%;
    height: 100px;
    object-fit: cover;
}

.top-list-title {
    font-size: 1.2em
}

.top-list-checkbox-label {
    font-weight: normal !important;
}

.top-list-buttons .main-content-title-btn a {
    margin-top: 20px;
}

.all-time-container > .all-time-link {
    cursor: auto;
}

    .all-time-container > .all-time-link:hover {
        background-color: #000000 !important;
    }

.trending-container > .trending-link {
    cursor: auto;
}

.trending-container > .trending-link:hover {
    background-color: #000000 !important;
}

.all-time-container > .trending-link {
    background-color: #d5d5d5 !important;
    color: black !important;
}

.all-time-container > .trending-link:hover {
    background-color: #f26833 !important;
    color: #FFFFFF !important;
}

.trending-container > .all-time-link {
    background-color: #d5d5d5 !important;
    color: black !important;
}

.trending-container > .all-time-link:hover {
    background-color: #f26833 !important;
    color: #FFFFFF !important;
}

.no-background {
    background-image: none !important;
}

.select-parent-type {
    color: #f15e30;
    font-size: 1.1em;
}

.glass-overlay {
    height: 100%;
    position: absolute;
    /* background: red; */
    width: 100%;
    z-index: 99999;
    backdrop-filter: blur(6px);
}

.partners-list > tr > th,
.partners-list > tr > td {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid gray;
}
.color-black {
    color: black !important;
}
/*fancybox*/


/*// fancybox design*/
.fancybox-lock .fancybox-overlay {
    z-index: 100000;
}
.fancybox-outer, .fancybox-inner {
    position: relative;
    margin-top: 40px;
    width: 100% !important
}

.fancybox-opened .fancybox-skin {
    border-radius: 0;
    background: rgba(250, 250, 250, .9)
}

.fancybox-close {
    position: absolute;
    top: 5px;
    right: 10px;
}

.fancybox-close {
    background-image: url(close-modal.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.login-action-container,
.login-action-container-footer {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
}

.login-action-container {
    margin: 40px 40px 40px 40px;
}

.login-action-container-title-text {
    font-size: 40px;
    padding: 0;
    line-height: 42px;
}

.login-action-container-info-text {
    
    width: 73%;
    font-weight: normal;
}

.login-action-container-info-title-text {
    margin-top: 20px;
    font-weight: 900;
}

.price-table-compact-container {
    margin-top: 25px;
    position: relative;
}

.price-table-compact {
    border-top: 2px solid black;
    width: 48%;
    position: relative;
}

.login-action-container-footer {
    background-color: black;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 40px 20px 40px
}

@media (max-height: 800px) {
    .login-action-container-footer {
        display: none;
    }

    .book-demo-link {
        display: block;
    }
}

.login-action-container-footer-text {
    color: white;
    width: 30%;
}

.dark-footer-new-form-select-design > input {
    background-color: #FFF;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    padding: 16px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0;
    width: 92%;
}

/*.dark-footer-new-form-select-design > input:focus {
    background-color: #e25a00;
}*/


.vb-new-button-alternative {
    padding: 0;
    color: #000000 !important;
    border-width: 0px !important;
    border-radius: 0px !important;
    font-size: 16px;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 900 !important;
    background-color: #FFFFFF !important;
    padding: .3em 1em !important;
    line-height: 1.7em !important;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all !important;
    transition-property: all !important;
}

    .vb-new-button-alternative:hover {
        background-color: #f26833 !important;
        color: #FFFFFF !important;
    }

.half-width {
    width: 45%;
}

.inherit-width {
    width: inherit;
}

.price-table-compact-title {
    font-size: 25px;
    color: black;
}

.price-table-compact-button {
    width: 96%;
    background: black;
    color: white;
    padding: 10px;
    display: block;
    margin-top: 20px;
    text-align: center;
}

.price-table-compact-button:hover {
    background: #f26833 !important;
        
}

.price-table-compact-button:hover span {
    display: none
}

.price-table-compact-button:hover:before {
    content: 'Sign up'
}

.most-value-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 20px;
    /* margin-left: -16px; */
    background: black;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 50%;
    width: 35px;
    height: 33px;
    text-align: center;
    font-size: 10px;
    display: flex;
    /* align-content: center; */
    justify-items: center;
    /* align-items: center; */
    align-items: center;
    transform: rotate(12deg);
}

.benefits-list {
    margin-top: 10px;
    /*font-size: 0.9em;
    font-style: italic;*/
    font-weight: normal;
}

@media (max-width: 960px) {
    .benefits-list {
       font-size: 0.7em;
    }

    .login-action-container-footer {
        font-size: 0.9em;
        padding: 5px 40px;
    }

    .dark-footer-new-form-select-design > input {
        padding: 6px;
    }
}

    .benefits-list span {
        margin-right: 5px;
        margin-top: 5px;
    }


    #price-table-month-benefits,
    #price-table-year-benefits {
        max-height: 0;
        overflow: hidden;
        transition: all 0.55s;
    }

    #price-table-month:checked ~ #price-table-month-benefits,
    #price-table-year:checked ~ #price-table-year-benefits {
        max-height: 7rem;
    }

.success-pay-container {
    max-width: 50%;
    text-align: justify;
    background: white;
    padding: 3em;
    border-radius: 10px;
}

.provided-by-container {
    padding-left: 5px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    overflow: visible;
}

.provided-by-container img {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Loading overlay styles */
.fancybox-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fancybox-loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #f45827;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tab-links {
    margin-top: 60px;
    padding: 0 30px;
}

    .tab-links > .vb-new-button {
        font-size: 0.8em;
        background-color: #ffffff !important;
        border: 1px solid #000000 !important;
        color: black !important;
    }

        .tab-links > .vb-new-button:hover {
            background-color: #f26833 !important;
            border: 1px solid #f26833 !important;
            color: #FFFFFF !important;
        }

.agencies-conext > .agencies-link,
.agents-conext > .agents-link,
.managers-conext > .managers-link,
.venues-conext > .venues-link,
.artists-conext > .artists-link {
    background-color: #f26833 !important;
    border: 1px solid #f26833 !important;
    color: #FFFFFF !important;
}

.sub-title-text-size {
    font-size: 0.8em;
}


