html, body { 
    height: 100%;
}

body { 
    position: relative;
    background-color: #000000;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    padding-top: 100px;
}

body::before, body::after {
    content:"";
    position: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

body::before {
    height: 318px;
    width: 860px;
    left: 0px;
    bottom: 0px;
    background-image: url('../images/logo-bg-green-vector.png');
    opacity: 0.4;
}

body::after {
    height: 333px;
    width: 843px;
    top: 0px;
    right: 0px;
    background-image: url('../images/logo-bg-vector.png');
    opacity: 0.5;
}

p {
    margin: 0 0 20px;
}

a { 
    text-decoration: none;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px; 
}

.wrapper {
    min-height: calc(100vh - 154px);
    padding: 60px 0;
    overflow-y: auto;
}

.page-content {
    width: 100%;
    float: left;
}

.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 100px;
    background-color:rgba(22, 22, 22, 1);
}

.select2-search--dropdown:after { background-image: url('../images/search-icon.svg'); background-size: cover; background-position: center center; background-repeat: no-repeat; content:""; height: 25px; width: 25px; }

/* Common style */
.main-title {
    margin-bottom: 34px;
}

.main-title h1 span {
    color: #00FD88;
    display: block;
}

.text-green { 
    color: #00FD88;
}

.btn {
    min-width: 170px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px; 
    border: none;
}

.btn-primary {
    background-color: rgba(0, 253, 136, 1);
    color: #000000;
}

.btn-primary:hover { 
    background-color:  rgba(61, 64, 75, 1);
}

.btn-white {
    background-color: rgba(255, 255, 255, 1);
    color: #000000;
}

.btn-white:hover {
    background-color:  rgba(61, 64, 75, 1);
}

.btn-disable {
    background-color: rgba(0, 253, 136, 0.7);
    color: #000000;
}

.btn-disable:hover {
    background-color:  rgba(61, 64, 75, 0.7);
}

.event-btn-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.table {
    background-color: transparent;
    border-color: rgba(255,255,255,0.5);
}

.table tr th, .table tr td {
    background-color: transparent;
    vertical-align: middle;
    padding: 24px 16px;
}

.table tr th {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 253, 136, 1);
}

.table tr td span {
    display: inline-block;
}

.table tr td p, .table tr td span {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.table tr td .slot-title {
    font-size: 20px;
}

.table tr td input.form-control {
    height: 54px;
    border-radius: 10px;
    background-color: #3D404B;
    color: #FFFFFF;
    border-color: transparent;
    position: relative;
}

.table tr td input::placeholder {
    color: #FFFFFF;
}

.table tr td span#quantity_error {
    position: absolute;
    left: 16px;
    bottom: -5px;
    font-size: 15px;
}

.table tr td .validation-invalid-label {
    position: absolute;
    left: 16px;
    bottom: 0px;
    font-size: 15px;
    color: #FF0000;
}

.table tr td input:focus {
    border-color: #00FD88;
    background-color: #3D404B;
    box-shadow: none;
    outline: none;
}

.table tr td .badge-style span {
    display: inline-block;
    border:1px solid #00FD88;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px;
}

/* Login page Style Start */
.login-page { 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-top: -100px;
}

.login-page form { 
    background: rgb(255,255,255);
    background: linear-gradient(-74deg, rgba(255,255,255,0.15) 0%, rgba(153,153,153,0.15) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 60px 60px 60px;
    width: 600px;
}

.login-page form img {
    margin-bottom: 36px;
}

.login-page form input {
    height: 64px;
    background-color: #3D404B;
    color: rgba(255,255,255,1);
    border-radius: 10px;
    border-color: transparent;
    font-size: 16px;
    padding-left: 50px;
}

.login-page form svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
}

.login-page form input::placeholder {
    color: rgba(255,255,255,0.2);
}

.login-page form input:focus {
    border-color: #00FD88;
    background-color: #3D404B;
    box-shadow: none;
    outline: none;
}

.login-page form .validation-invalid-label {
    padding-left: 0px;
    position: absolute;
    bottom: -25px;
    left: 15px;
    font-size: 12px;
}

.login-page form .validation-invalid-label:before {
    display: none;
} 

.login-page form .btn {  
    height: 64px;
}

.login-page form .form-check-input {
    height: 25px;
    width: 25px;
    padding-left: inherit;
}

.login-page form a {
    font-size: 18px;
}

.login-page form a:hover {
    color: #FFFFFF;

}

.login-page form p a svg {
    position: initial;
    transform: translateY(-2px);
    fill:#00FD88;
}

.login-page form p a:hover svg {
    position: initial;
    transform: translateY(-2px);
    fill: #FFFFFF;
}
/* Login page Style End */

/* Main Dashboard Style Start */
.event-item {
    margin-bottom: 24px;
}

.event-item-inner {
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(-74deg, rgba(255,255,255,0.15) 0%, rgba(153,153,153,0.15) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 16px;

}

.event-item-inner img {
    height: 305px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;   
    margin-bottom: 16px;
}

.event-item-inner .icon-box-style, .event-meta .event-info .icon-box-style, .kiosk-wrapper .icon-box-style {
    margin-bottom: 16px;
}
/* Main Dashboard Style End */


/* Event Meta SStyleStart */
.event-meta {
    background: rgb(255,255,255);
    background: linear-gradient(-74deg, rgba(255,255,255,0.15) 0%, rgba(153,153,153,0.15) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 16px;
    margin-bottom: 50px;
}

.event-meta .event-image img {
    border-radius: 10px;
}

.event-meta .event-info {
    padding-left: 30px;
}

.event-meta .event-info h2.event-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 22px;
}

.event-meta .event-info .icon-box-style span {
    margin-left: 10px;
}
/* Event Meta Style End */

/* Footer Style Start */
.footer {
    width: 100%;
    float:left;
    text-align: center;
    font-size: 14px;
    font-weight: 400; 
    background-color: #000000;
    border-top: 1px solid rgba(255,255,255,0.5);
    padding: 16px 0;
}

.footer p a {
    color: #FFFFFF;
}

.footer p a:hover {
    color: #00FD88;
}
/* Footer Style End */


/* Kiosk Wrapper Start */

.page-content .not-event-img img { 
    height: 450px;
}

.modal-dialog { 
    width: 700px; 
    max-width: 700px; 
}

.modal { 
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(2px);
 }

 .modal.model-box.show {  
    display: flex !important;
    align-items: center;
    justify-content: center;
 }

.modal-header {
    flex-direction: column;
    border: none;
    padding: 0px;
    margin-bottom: 40px;
}

.modal-header h5.modal-title { 
    color: #FFFFFF !important;
    text-align: center;
    font-size: 28px;
}

.modal-header .btn-close {  
    position: absolute;
    top: -30px;
    right: -30px;
}

.modal-content { 
    background: transparent;
    border: none;
    box-shadow: none;
}

.modal-body { 
    padding: 0px;
}

.modal-body .select2-selection--single { 
    height: 64px;
    font-size: 18px;
    color: #FFFFFF;
    background-color: #3D404B;
    display: flex;
    align-items: center;
    border:none;
}

.select2-results , .select2-results__message, .select2-results__option.select2-results__option--highlighted, .select2-results__option+.select2-results__option { color: #FFFFFF; }

.select2-dropdown { background-color: #3D404B; }
.select2-results__option[aria-selected=true] { background-color: #30333D !important; }
.select2-results__option.select2-results__option--highlighted { background-color: #30333D !important; }

.modal-footer {
    border: none;
    padding: 0px;
}

.modal-footer .btn {
    width: 100%;
    height: 64px;
    margin-top: 26px;
    margin-left: 0;
    margin-right: 0;
}

#modal-content { 
    background: rgb(255,255,255);
    background: linear-gradient(-74deg, rgba(255,255,255,0.15) 0%, rgba(153,153,153,0.15) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 40px;
}

.kiosk-wrapper { 
    background: rgb(255,255,255);
    background: linear-gradient(-74deg, rgba(255,255,255,0.15) 0%, rgba(153,153,153,0.15) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 20px;
    margin-bottom: 40px;
}

.kiosk-wrapper img {  
    height: 162px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.btn-close {  
    background: transparent url('../images/close-icon.svg') center / 1em auto no-repeat;
}

.pos-nav {
    background-color: #000000;
}

/* Kiosk Wrapper END */

/* Responsive Style START */

@media only screen and (max-width: 991px)  {
    h1 {
        font-size: 24px;
        line-height: 32px;
    }
    
    h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    
    .wrapper {
        padding: 30px 0;
    }

    .kiosk-wrapper {
        margin-bottom: 20px;
    }

    .kiosk-wrapper:last-child {
        margin-bottom: 0;
    }

    .kiosk-wrapper img { 
        margin-bottom: 20px;
    }

    .kiosk-wrapper .btn.kiosk-attend {
        width: 100%;
    }

    #modal-content {
         padding: 30px;
    }

    .modal-header { 
        margin-bottom: 20px;
    }

    .modal-header .btn-close {
        top: -15px;
        right: -15px;
    }

    .modal-dialog {
        margin: 0 15px;
    }

}


@media only screen and (max-width: 991px) {
    .modal-dialog { 
        width: 90%; 
        max-width: 90%; 
    }
}

/* Responsive Style END */
