/*!
Template Name: Event Venue
Author: DesignAim
Copyright: © 2024-2025	
Version: 1.0.0
*/

/**************** 2025-01-20:  Colors added here by DHS ****************/
/***************** INFORMATION ABOUT COLOR SCHEMES *****************/
/* The DARK color scheme was the original scheme.  To create the LIGHT scheme, the DARK colors were first copied and then modified.  Not all colors in the LIGHT scheme differ from the DARK scheme because not all LIGHT colors had to be used, and some of the named color combinations for the LIGHT scheme colors are defined in terms of the DARK theme colors. */
:root {
    /* BASE colors used in both DARK and LIGHT color schemes */
    --color-white: #fff;
    --color-black: #000;
    /* DARK color scheme */
    --color-dark-1: var(--color-white);
    --color-dark-2: hsl(37, 25%, 65%);
    --color-dark-3: hsl(58, 14%, 32%);
    --color-dark-4: #18191B;
    --color-dark-5: #0C0C0D;
    --color-dark-6: rgba(255, 165, 0, 0.05);
    --color-dark-7: #ced4da;
    --color-dark-8: #454545;
    --color-dark-9: #333;
    --color-dark-10: #555;
    --color-dark-11: #060606;
    --color-dark-12: var(--color-black);
    --color-dark-13: #C4C4C4;
    --color-dark-14: #18181A;
    --color-dark-15: hsl(39, 100%, 85%);
    --color-dark-16: hsl(39, 100%, 70%);
    --color-dark-17: hsl(356, 22%, 49%);
    /* LIGHT (default) color scheme */
    --color-1: #111;
    --color-2: hsl(37, 25%, 65%);
    --color-3: hsl(58, 14%, 32%);
    --color-4: #eee;
    --color-5: #0C0C0D;
    --color-6: rgba(255, 165, 0, 0.05);
    --color-7: #454545;
    --color-8: #ced4da;
    --color-9: #333;
    --color-10: #555;
    --color-11: hsl(37, 25%, 65%);
    --color-12: var(--color-white);
    --color-13: var(--color-dark-4);
    --color-14: var(--color-4);
    --color-15: hsl(30, 25%, 75%);
    /* default color/background combinations for various band types */
    --band-type-1-bg: var(--color-4);
    --band-type-1-h2-color: var(--color-dark-3);
    --band-type-2-bg: var(--color-dark-2);
    --band-type-2-h2-color: var(--color-white);
    --band-type-3-bg: var(--color-dark-17);
    --band-type-3-h2-color: var(--color-white);
    --band-type-4-bg: var(--color-dark-3);
    --band-type-4-h2-color: var(--color-white);
    --band-type-5-bg: var(--color-dark-4);
    --band-type-5-h2-color: var(--color-white);
    --band-type-6-bg: var(--color-dark-11);
    --band-type-6-h2-color: var(--color-dark-3);
    --header-top-bg: var(--color-4);
    --header-top-color: var(--color-1);
    --navbar-bg: var(--color-dark-4);
    --navbar-color: var(--color-dark-1);
    --navbar-mobile-bg: var(--color-dark-4);
    --navbar-mobile-color: var(--color-dark-1);
    --default-btn-hover-bg: var(--color-15);
    --default-btn-hover-border-color: var(--color-1);
    --default-btn-before-bg-color: var(--color-4);
    --default-btn-hover-color: var(--color-1);
    --default-btn-hover-before-bg-color: var(--color-15);
    --paragraph-anchor-color: var(--color-3);
    --paragraph-anchor-hover-color: var(--color-dark-4);
    --form-content-h3-color: var(--color-3);
    --footer-bg: var(--color-dark-4);
    --footer-color: var(--color-dark-13);
    --footer-h4-color: var(--color-white);
}

@media (prefers-color-scheme: dark) and (min-width: 900px) {
    :root {
        --color-1: var(--color-dark-1);
        --color-2: var(--color-dark-2);
        --color-3: var(--color-dark-3);
        --color-4: var(--color-dark-4);
        --color-5: var(--color-dark-5);
        --color-6: var(--color-dark-6);
        --color-7: var(--color-dark-7);
        --color-8: var(--color-dark-8);
        --color-9: var(--color-dark-9);
        --color-10: var(--color-dark-10);
        --color-11: var(--color-dark-11);
        --color-12: var(--color-dark-12);
        --color-13: var(--color-dark-13);
        --color-14: var(--color-dark-14);
        --color-15: var(--color-dark-15);
        --color-16: var(--color-dark-16);
        --band-type-1-bg: var(--color-5);
        --band-type-1-h2-color: var(--color-white);
        --band-type-2-bg: var(--color-4);
        --band-type-2-h2-color: var(--color-white);
        --band-type-3-bg: var(--color-2);
        --band-type-3-h2-color: var(--color-white);
        --header-top-bg: var(--color-dark-11);
        --header-top-color: var(--color-white);
        --default-btn-hover-border-color: var(--color-2);
        --default-btn-hover-bg: var(--color-2);
        --default-btn-hover-color: var(--color-1);
        --default-btn-before-bg-color: var(--color-15);
        --default-btn-hover-before-bg-color: var(--color-2);
        --paragraph-anchor-color: var(--color-15);
        --paragraph-anchor-hover-color: var(--color-16);
        --form-content-h3-color: var(--color-2);
        --footer-bg: var(--color-black);
        --footer-color: var(--color-dark-13);
        --footer-h4-color: var(--color-white);
    }
}

@font-face {
    font-family: Poppins-ExtraLight;
    src: url(/static/event_venue_single_page/fonts/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: Poppins-Light;
    src: url(/static/event_venue_single_page/fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: Poppins-Regular;
    src: url(/static/event_venue_single_page/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: Poppins-Medium;
    src: url(/static/event_venue_single_page/fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url(/static/event_venue_single_page/fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: Poppins-Bold;
    src: url(/static/event_venue_single_page/fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: OldStandardTT-Regular;
    src: url(/static/event_venue_single_page/fonts/OldStandardTT-Regular.ttf);
}

@font-face {
    font-family: OldStandardTT-Bold;
    src: url(/static/event_venue_single_page/fonts/OldStandardTT-Bold.ttf);
}

/********************** DEFAULTS FOR anchor tags (white text, which is a majority of the bands) **********************/
p a, [class^="band-type"] a {
    text-decoration: none;
    color: var(--color-4);
    transition: color 0.3s ease, border-bottom-color 0.7s ease;
}
p a, [class^="band-type"] a:not(> i) {
    border-bottom: 1px dotted var(--color-4);
}
p a, [class^="band-type"] a:hover {
    text-decoration: none;
    color: var(--color-dark-15);
}
p a, [class^="band-type"] a:not(> i):hover {
    border-bottom: 1px solid var(--color-dark-15);
}

.band-type-1 {
    /* BAND_TYPE_1 = '1', 'Light' */
    background: var(--band-type-1-bg);
    h2 {
        color: var(--band-type-1-h2-color);
    }
    p, ul, .copyright-text {
        color: var(--color-1) !important;
    }
    p a, a {
        text-decoration: none;
        color: var(--color-dark-4);
        transition: color 0.3s ease, border-bottom-color 0.7s ease;
    }
    p a, a:not(> i) {
        border-bottom: 1px dotted var(--color-dark-4);
    }
    p a, a:hover {
        text-decoration: none;
        color: var(--color-dark-10);
    }
    p a, a:not(> i):hover {
        border-bottom: 1px solid var(--color-dark-10);
    }    
}
.band-type-2 {
    /* BAND_TYPE_2 = '2', 'Tan' */
    background: var(--band-type-2-bg);
    h2 {
        color: var(--band-type-2-h2-color);
    }
    p, ul, .copyright-text {
        color: var(--color-white);
    }
}
.band-type-3 {
    /* BAND_TYPE_3 = '3', 'Mauve' */
    background: var(--band-type-3-bg);
    h2 {
        color: var(--band-type-3-h2-color);
    }
    p, ul, .copyright-text {
        color: var(--color-white);
    }
}
.band-type-4 {
    /* BAND_TYPE_4 = '4', 'Green' */
    background: var(--band-type-4-bg);
    h2 {
        color: var(--band-type-4-h2-color);
    }
    p, ul, .copyright-text {
        color: var(--color-white);
    }    
}
.band-type-5 {
    /* BAND_TYPE_5 = '5', 'Dark' */
    background: var(--band-type-5-bg);
    h2 {
        color: var(--band-type-5-h2-color);
    }
    p, ul, .copyright-text {
        color: var(--color-white);
    }    
}
.band-type-6 {
    /* BAND_TYPE_6 = '6', 'Darkest */
    background: var(--band-type-6-bg);
    h2 {
        color: var(--band-type-6-h2-color);
    }
    p, ul, .copyright-text {
        color: var(--color-white);
    }    
}


.linear-gradient {
    background: linear-gradient(180deg, var(--color-5) 0%, var(--color-4) 36.04%);
}

.gradient-text {
    background-image: linear-gradient(to right, hsl(350, 41%, 66%), white, hsl(120, 19%, 69%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
h1 {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--color-dark-8);
    text-align: center;
    line-height: 1.1;
    margin-block: clamp(2.5rem, calc(1.25vh + 1.25vw), 4rem);
    font-size: clamp(2.5rem, calc(2.5vh + 2.5vw), 4rem);
}
.hero-content :is(#page_title, h1) {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-weight: 400;
    color: white;
    margin-block-start: 0;
    text-align: center;
}
.hero-content #page_title {
    font-size: clamp(1.75rem, calc(1.75vh + 1.75vw), 3rem);
}
.hero-content h1 {
    font-size: clamp(1.25rem, calc(1.25vh + 1.25vw), 2.5rem);
}

button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus,
select,
select:hover,
select:focus,
.form-control,
.form-control:focus {
    outline: none;
    box-shadow: none!important;
    border-color: var(--color-7);
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder {
    color: var(--color-8);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
}


/**** Go Back Btn ****/

#GoBack {
    display: flex;
    background-color: var(--color-3);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-white);
    text-decoration: none;
}

#GoBack:hover {
    cursor: pointer;
    background-color: var(--color-9);
}

#GoBack:active {
    background-color: var(--color-10);
}

#GoBack.show {
    opacity: 1;
    visibility: visible;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    color: var(--color-1);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    color: var(--color-9);
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    color: var(--color-9);
}

body.offcanvas-active {
    overflow: hidden;
}

.offcanvas-header {
    display: none;
}

.screen-darken {
    height: 100%;
    width: 0%;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
    z-index: 10;
    transition: opacity .3s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.header-part {
    width: 100%;
    height: auto;
    /* float: left; */
    background: var(--color-4);
}

#navbar_main_mobile {
    width: 100%;
    height: auto;
    /* float: left; */
}

/* #navbar_main_mobile .btn-warning {
    background: var(--color-2);
    border-color: var(--color-2);
} */

#header_top {
    width: 100%;
    height: auto;
    /* float: left; */
}

#header_top .contact-info {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

#header_top .contact-info li {
    display: inline-block;
}

#header_top .contact-info li a {
    font-size: 14px;
    text-decoration: none;
    padding: 9px 0px;
    margin: 0px 15px 0px 0px;
    display: inline-block;
}

#header_top .contact-info li:last-child a {
    margin-right: 0px;
}

#header_top .contact-info li a i {
    font-size: 14px;
}

#header_top .social-media {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    text-align: right;
}

#header_top .social-media li {
    display: inline-block;
}

#header_top .social-media li a {
    font-size: 14px;
    text-decoration: none;
    padding: 9px 10px;
    display: inline-block;
}

.main-menu {
    width: 100%;
    height: auto;
    /* float: left; */
}

.main-menu.header-fix {
    top: 0px;
    z-index: 11;
    position: fixed;
}

nav.main-menu ul li a {
    font-size: 15px;
    color: var(--navbar-color) !important;
}

.navbar-brand img {
    max-width: 97%;
    max-height: 60px;
}

nav.main-menu ul li a.book-btn {
    border-radius: 5px;
    min-width: 130px;
    text-align: center;
    margin-left: 10px;
    font-size: 16px;
    padding: 8px 20px !important;
    color: var(--color-white) !important;
}

nav.main-menu ul li a.book-btn:hover {
    background: transparent;
    /* color: var(--color-3)!important; */
}

.fixed-top {
    top: -80px;
    transform: translateY(80px);
    transition: transform .9s;
}


/*************** Hero Section ***************/

.hero-part {
    display: flex;
    justify-content: center; /* Centers the iframe horizontally */
    align-items: center; /* Vertically centers if needed, though height: 100% may override */
    overflow-x: hidden; /* Prevents horizontal scroll from overflow */    
    width: 100%;
    height: auto;
    min-height: 80vh;
    position: relative;
    /* float: left; */ 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url('../images/hero-img.jpg'); */
}

.hero-part :is(.video-embed, .video-embed-wrapper) {
    min-height: 80vh;
    width: auto;
    min-width: 100%; /* Ensures the video covers the full width */
    max-width: none;
    object-fit: contain; /* Ensures video scales properly */
}

/* The following is necessary to prevent a white bar at the bottom of the video */
.video-embed {
    display: block;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, rgba(24, 25, 27, 0.41) 5.83%, rgba(47, 31, 1, 0.52) 31.35%, rgba(33, 21, 0, 0.79) 100%);
}

.hero-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-wrap: balance;
}

.hero-logo {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 20px;
    margin-bottom: 215px;
}

.hero-logo img {
    max-width: 100%;
    width: auto;
    max-height: 250px;
}

.book-venue-btn {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    text-decoration: none;
    color: var(--color-1);
    border: solid 2px var(--color-1);
    padding: 8px 30px;
    display: inline-block;
    position: relative;
    min-width: 230px;
    -webkit-transition: all 0.9s;
    -moz-transition: all 0.9s;
    -o-transition: all 0.9s;
    transition: all 0.9s;
}

.book-venue-btn:hover {
    border-color: var(--color-2);
    background: var(--color-2);
    color: var(--color-1);
}

.default-btn {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    text-decoration: none;
    color: var(--color-1);
    border: solid 2px var(--color-1);
    padding: 8px 30px;
    display: inline-block;
    min-width: 170px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.9s;
    -moz-transition: all 0.9s;
    -o-transition: all 0.9s;
    transition: all 0.9s;
    z-index: 1;
}

.default-btn:hover {
    border-color: var(--default-btn-hover-border-color);
    background: var(--default-btn-hover-bg);
    color: var(--default-btn-hover-color);
}    

.default-btn::before,
.book-venue-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--default-btn-before-bg-color);
    -webkit-transform: scaleX(.3);
    transform: scaleX(.3);
    opacity: 0;
    transition: all .3s
}

.default-btn:hover::before,
.book-venue-btn:hover::before {
    opacity: 1;
    background-color: var(--default-btn-hover-before-bg-color);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transition: -webkit-transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity .4s;
    transition: transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity
}

section {
    width: 100%;
    height: auto;
    float: left;
}
section:not(.hero-part) {
    padding: 70px 0px;
}

.main-title {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 60px;
}

.main-title h2 {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 52px;
    text-align: center;
    margin-bottom: 0px;
}

.main-title p {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
    margin-bottom: 0px;
}

.about-content {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
}

.about-content i {
    font-size: 70px;
    margin: 0 auto 30px auto;
    display: inline-block;
    color: var(--color-2);
}

.about-content p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    text-align: left;
    color: var(--color-1);
}

.about-img {
    width: 100%;
    height: 400px;
    float: left;
    position: relative;
    object-fit: cover;
    padding: 10px;
}

.about-img::before {
    content: "";
    width: 60px;
    height: 60px;
    background: var(--color-2);
    position: absolute;
    left: 0;
    top: 0;
}

.about-img::after {
    content: "";
    width: 60px;
    height: 60px;
    background: var(--color-2);
    position: absolute;
    right: 0;
    bottom: 0;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.amenities-card {
    width: 100%;
    height: 100%;
    max-height: 380px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    border-radius: 10px;
}

.amenities-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.amenities-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: var(--color-5); */
}

.amenities-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align:center;
}

.amenities-content h4 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: center;
    color: var(--color-white);
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    grid-gap: 0px;
}

.gallery-images img {
    height: 25rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.view-more-gallery {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 60px;
}

.gallery-content {
    display: none;
}

.default-btn.noContent {
    display: none;
}


/************** Insurance Coverage ******************/

.insurance-coverage-img {
    width: 100%;
    height: auto;
    float: left;
}

.insurance-coverage-img img {
    max-width: 100%;
}

.insurance-coverage-content {
    width: 100%;
    height: auto;
    float: left;
    padding-top: 20px;
}

.insurance-coverage-content h4 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.insurance-coverage-content p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    margin-bottom: 20px;
}

.insurance-cover-links {
    width: 100%;
    height: auto;
    float: left;
}

.insurance-cover-links ul li {
    margin-bottom: 10px;
}

.insurance-cover-links ul li a {
    color: var(--color-1);
    font-size: 24px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.insurance-cover-links ul li a:hover {
    color: var(--color-4);
}
.insurance-cover-links ul li a i{
    font-size: 18px;
}

/********* Our History Section *************/

.our-history-img {
    width: 100%;
    height: auto;
    float: left;
}

.our-history-img img {
    height: 25rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


/*********** Contact Form *************/

.contact-form {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    background: var(--color-11);
    box-shadow: 0px 0px 30px 2px var(--color-6);
}

.form-img {
    width: 40%;
    height: auto;
    float: left;
    background-size: cover !important;
    background-position: center !important;
}

.form-content {
    width: 60%;
    height: auto;
    float: left;
    padding: 50px;
}

.form-content h3 {
    color: var(--form-content-h3-color);
    font-size: 32px;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-content p {
    color: var(--color-1);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    margin-bottom: 40px;
}

.form-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.form-content :is(input, input:focus, textarea, textarea:focus, select) {
    width: 100%;
    background: var(--color-4);
    border: none;
    border-radius: 0px;
    padding: 15px 40px 15px 15px;
    font-size: 13px;
    color: var(--color-7);
}

.form-content label {
    font-size: 16px;
}

.form-content input.user-icon {
    background-image: url('../images/user-icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
}

.form-content input.email-icon {
    background-image: url('../images/email-icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
}

.form-content input.calendar-icon {
    background-image: url('../images/calendar-icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
}

.form-content input.down-arrow-icon {
    background-image: url('../images/down-arrow-icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
}

.form-content input.call-icon {
    background-image: url('../images/call-icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
}

.select2.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background-color: var(--color-4);
    border: none;
    border-radius: 0px;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    padding: 11px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-dropdown {
    background-color: var(--color-4);
    border: 1px solid var(--color-4);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-2);
    color: white;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0px;
    font-size: 13px;
}

.select2-selection {
    background-image: url('../images/down-arrow-icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
}

.select2-results__option {
    padding: 10px;
    font-size: 13px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-1);
}

#select2-cars-container[title="Select venue type"] {
    color: var(--color-8);
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: var(--color-2)!important;
}
.drp-buttons .applyBtn {
    background-color: var(--color-2)!important;
    border: none;
}

/********************** Footer Section *******************/

footer {
    width: 100%;
    height: auto;
    float: left;
    padding-top: 20px;
    background: var(--footer-bg);
}

.footer-logo {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 20px;
}

footer p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    color: var(--footer-color);
    margin: 0px;
}

.footer-title {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--footer-h4-color);
    padding-bottom: 20px;
}

footer ul li a {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    color: var(--footer-color);
    text-decoration: none;
    word-break:  break-all;
}

footer ul li a:hover {
    color: var(--color-2);
}

.footer-links ul li {
    padding-bottom: 10px;
}

.footer-contact-info ul li a {
    position: relative;
    padding-left: 30px;
    display: inline-block;
}

.footer-contact-info ul li a i {
    position: absolute;
    left: 0px;
    font-size: 18px;
    top: 0px;
}

.footer-contact-info ul li {
    padding-bottom: 20px;
}

.footer-follow-us ul li {
    padding-bottom: 10px;
}

.footer-follow-us ul li a {
    position: relative;
    padding-left: 30px;
    display: inline-block;
}

.footer-follow-us ul li a i {
    position: absolute;
    left: 0px;
    font-size: 18px;
    top: 0px;
}

.copyright {
    width: 100%;
    height: auto;
    float: left;
    padding: 10px 0px;
    margin-top: 30px;
}

.designed-by {
    width: 100%;
    height: auto;
    float: left;
    text-align: right;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    color: var(--color-13);
}

.designed-by a {
    text-decoration: none;
    color: var(--color-13);
}

.designed-by a:hover {
    color: var(--color-2);
}

@media screen and (min-width: 991px) {
    .navbar-nav {
        align-items: center;
    }
}