/* *{
    border: 1px solid black!important
} */

/* Animation */
@keyframes spreadLine{
    from{
        width: 0%;
    }

    to{
        width: 100%;
    }
}

@keyframes LeftRight{
    from{
        left: 0;
    }

    to{
        left: 100%;
    }
}

@keyframes notificationLoading{
    0%{
        width: 0%;
    }

    50%{
        width: 100%;
        float: right!important;
        right: 0!important;
    }

    51%{
        width: 100%;
        float: left!important;
        right: 0!important;
    }

    100%{
        right: 0!important;
        float: left!important;
        width: 0%;
    }
}


body{
    overflow: scroll;
    width: 100%;
    background: black;
    /* position: fixed; */
}


/* Style the scrollbar thumb */
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* body{
    overflow: scroll!important;
    position: absolute;
    width: 100%;
} */

/* Style the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* default */
a{
    text-decoration: none!important;
}

.link-gray{
    color: var(--gray)!important;
}

p{
    font-size: 1.1rem;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600!important;
}

img{
    width: 100%;
}

.bg-black{background: #161616;} .bg-orange{ background: #4e86c2;}  .text-orange{color: #f98351 } .text-black{color: #161616}
.text-grey{color: #b3b3b3;} .text-gray{color: #5e5e5e!important;}

.text-small{
    font-size: 16px;
}

.text-tiny{
    font-size: 12px!important;
}

.section{
    min-height: 100vh;
    height: auto;
    padding-bottom: 70px 0;
}

/* Root */
:root{
    /* --primary: #161616!important;
    --secondary: #ff6600!important;
    --light: #fff!important;
    --success: #caffcd!important;
    --green: #0f6607!important;
    --danger: #ffcaca!important;
    --red: #660707!important;
    --grey: #b3b3b3;
    --gray: #5e5e5e; */

    --light-blue: #36cae8!important;
    --light-green: #78ead3!important;
    --orange: #f98351!important;
    --red_2: #dd0d03!important;
    --green_2: #00805d!important;

    --primary: #161616!important;
    --secondary: #000249!important;
    --secondary_2: #36cae8;
    --light: #fff!important;
    --success: #caffcd!important;
    --green: #0f6607!important;
    --danger: #ffcaca!important;
    --red: #660707!important;
    --grey: #b3b3b3;
    --gray: #5e5e5e;
    --light-gray: #f8f7fa;
    --primary-transparent: rgba(54, 202, 232, .9);
    --gradient: -moz-linear-gradient(-45deg, rgba(54, 202, 232, .9) 0%, rgba(120, 234, 211, .9) 100%)!important;
    --gradient_2: -webkit-linear-gradient(-45deg, rgba(54, 202, 232, .9) 0%, rgba(120, 234, 211, .9) 100%)!important;
    --gradient_3: linear-gradient(135deg, rgba(54, 202, 232, .9) 0%, rgba(0, 128, 93, .9) 100%)!important;
}

/* dialog box */
dialog{
  /* display: flex; */
  opacity: 0;
  width: 550px;
  border: none;
  pointer-events: none;
  transform: scale(0.9);
}

dialog[open]{
  display: flex;
  opacity: 1;
  transform: scale(1);
  pointer-events: inherit;
  transition: opacity .5s ease-in, transform .5s ease-in;
}

dialog::backdrop{
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
}

/* Notification Dialogue Box */
.notification-dialog{
    display: flex;
    flex-direction: column;
    width: 350px;
    border-radius: 12px;
    border:none;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    padding-bottom: 10px;
}

.notification-dialog .dialog-head{
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    font-size: 32px;
    padding: 10px 0;
    background: var(--danger);
    position: relative;
}

.head-body{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--red);
    bottom: 0;
    left: 0;
    animation: notificationLoading 2.5s ease-in alternate;
}

.notification-dialog .dialog-body{
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.notification-dialog .dialog-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.notification-dialog .dialog-button button{
    width: 150px;
    height: 45px;
    color: var(--light);
    border: none;
    outline: none;
    border-radius: 6px;
}


























/* Main body */
.tiny_info_text, .tiny_info_link{
    font-size: 16px;
}

.hero-bg{
    background: var(--gradient); 
    background: var(--gradient_2);
    background: var(--gradient_3);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d91e18', endColorstr='#ff6600',GradientType=1 ); 
}

.hero{
    display: flex;
    height: calc(100vh - 40px);
    background-image: url('../img/hero-img.jpg');
    background-size: cover;
}

.hero-container{
    height: 100%;
}

.hero-nav{
    height: 100px;
    border-bottom: 1px solid var(--light);
    transition: all .4s ease-out;
}

.nav-links .close-toggle{
    display: none;
}

.nav-links ul .list-item{
    margin: 0 12px
}

.nav-links ul li a{
    font-size: 16px!important;
    color: var(--light);
    font-weight: 600;
}

.hero-content{
    height: calc(100% - 100px);
}

.hero-container .search-form{
    height: 70px;
    border-radius: 50px;
    border: 1px solid var(--light);
    background: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    width: 45rem;
    overflow: hidden;
}

.hero-container .search-form input{
    height: 100%;
    background: transparent;
    width: calc(100% - 50px);
    padding: 0 25px;
    border: none;
    outline: none;
    color: var(--light);
    font-size: 18px;
}

.hero-container .search-form input::placeholder{
    font-weight: 600;
    color: var(--light);
}

.nav-fixed{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed!important;
    border:none;
    padding: 0 125px;
    margin: 0!important;
    width: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

@media (max-width: 991px) {
    .nav-links{
        display: none;
        /* display: flex!important; */
        flex-direction: column;
        justify-content: flex-start;
        position: absolute!important;
        top: 0;
        right:-100%;
        width: 50%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.92);
        transition: all .6s ease-in;
        z-index: 1000;
    }

    .nav-links-show{
        right: 0!important;
    }

    .nav-links .close-toggle{
        display: flex;
        flex-direction: column;
        height: 100px;
        justify-content: center;
        text-align: left;
        padding: 0 20px;
        width: 100%;
    }

    .nav-links ul{
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-links ul .list-item{
        margin: 20px 0;
    }

    .nav-links ul li a:hover{
        color: var(--secondary);
    }

    .hero-container .search-form{
        width: 35rem;
    }
}

@media (max-width: 590px){

    p{
        font-size: 16px!important;
    }

    .hero-container .search-form{
        width: 22rem;
    }

    .hero-container .search-form input{
        font-size: 16px;
    }

    .nav-fixed{
        padding: 0 25px;
    }

    .tiny_info_text{
        font-size: 12px!important;
    }
}

@media (max-width: 450px){
    .hero-container .search-form{
        width: 20rem;
    }
}

/* Today's Event */
.today-event{
    height: 200px;
    background: var(--primary);
}

.upcoming-event{
    min-height: 280px;
    height: auto;
}

.before::before{
    content: "";
    position: absolute;
    width: 5px;
    height: 25px;
    background: var(--orange);
    /* color: var(--secondary)!important; */
    left: -5px;
    top: 6px;
}

.link-btn{
    border:1px solid var(--red_2);
    border-radius: 40px;
    padding: 12px 16px;
    color: var(--red_2);
    font-weight: 600;
    transition: all .5s ease;
}

.link-btn:hover{
    background: var(--red_2);
    color: var(--light);
    border:none;
}

.event-card{
    overflow: hidden;
    border-radius: 16px!important;
    border: none!important;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.02);
}

.event-card:hover{
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1)!important;
}

.event-status{
    padding: 3px 15px;
    border-radius: 6px;
    text-align: center;
}

.event-success{
    background: var(--success);
    color: var(--green);
}

.event-danger{
    background: var(--danger);
    color: var(--red);
}

/* Categories */
.category-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    margin: 40px 0;
    overflow: scroll;
    overflow-y: hidden;
}

.category-container::-webkit-scrollbar {
  width: 6px!important;
  height: 3px!important;
}

.category-container::-webkit-scrollbar-track {
  background: var(--primary);
  border-radius: 10px;
}

.category-container::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

.category-container .category{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    width: 150px;
    height: 200px;
}

.category .category-icon{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--grey);
}

/* Stats */
.stats{
    background-image: url(../img/stats.jpg);
    background-size: cover;
    min-height: 300px;
    height: auto;
    overflow: hidden;
}

.stats .stat-content{
    background: rgba(0, 0, 0, 0.7);
    min-height: 300px;
    height: 100%;
}

.stats .stat-card-head{
    padding: 20px 0;
}

.stat-figures{
    font-size: 48px;
}

.stat-figures::after{
    content: '';
    position: absolute;
    height: 3px;
    width: 70px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background: var(--grey);
}

.stats .stat-card-text{
    padding: 15px 0;
}


/* Recent Video */
.recent-vid-link{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.recent-vid-card .card-head{
    width: 100%;
}

.recent-vid-card:hover::after{
    content: '';
    position:absolute;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    animation: spreadLine .5s ease forwards;
}


/* Get Started */
.get-started{
    min-height: 200px;
    height: auto;
    background-image: url('../img/share.jpg');
    background-size: cover;
}

.get-started .get-started-content{
    background: var(--primary-transparent);
    padding: 25px;
    min-height: 200px;
    height: auto;
}

.get-started-btn:hover{
    color: var(--light)!important;
    background: var(--red_2)!important;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

/* Live There */
.live-there{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../img/video.jpg');
    background-size: cover;
    background-position: center;
    min-height: 65vh;
    height: auto;
    background-attachment: fixed;
}

.live-there .live-there-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(31, 31, 31, .8);
    padding: 50px 0;
    min-height: 65vh;
    width: 100%;
    height: auto;
}

/* Partners */
.partner-card{
    height: 100px;
}

/* News Letter */
.email-subscription{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../img/newsletter.jpg');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    height: auto;
}

.email-subscription .subscription-content{
    min-height: 50vh;
    height: auto;
    background: var(--primary-transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.subscription-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}


.subscription-form form{
    width: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
}

.subscription-form form input{
    width: 100%;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 24px;
    padding: 0 20px;
    outline: none;
    background: transparent;
    font-size: 18px;
    color: var(--light);
    font-weight: 600;
}

.subscription-form form input::placeholder{
    color: var(--light);
}

.subscription-form .subscribe-btn{
    background: var(--light);
    color: var(--red_2);
    height: 50px;
    border-radius: 24px;
    border:none;
    font-size: 18px;
    font-weight: 700;
}

@media(max-width: 991px){
    .subscription-form form{
        width: 30rem;
    }
}

@media(max-width: 590px){
    .subscription-form form{
        width: 20rem;
    }
}

@media(max-width: 450px){
    .subscription-form form{
        width: 15rem!important;
    }
}

/* Footer */
.footer{
    background: var(--primary);
}

.footer .footer-top{
    border-bottom: 1px solid var(--gray);
}

.footer a{
    color: var(--grey)!important;
}



/* Login Page */
.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light);
    height: 100vh;
}

.wrapper .login-div{
    display: flex;
    width: 55rem;
    border-radius: 18px;
    background: var(--primary);
    min-height: 80vh;
    height: auto;
    overflow: hidden;
    padding: 10px;
}

.login-div .login-left{
    width:50%;
    background-image: url('../img/signup.jpg');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.login-left .login-left-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--primary-transparent);
    border-radius: 10px;
    padding: 20px 20px;
}

.login-left .login-content-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-content-body{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    height: 100%;
    font-weight: 700;
}

.login-content-top .login-link{
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--light);
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
}

.login-link::before{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    top: 0;
    position: absolute;
    animation: LeftRight 1s ease infinite backwards;
    animation-delay: 2.5s;
}

.login-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    height: 100%;
    width: 50%;
}

.login-right .form-input{
    background-color: rgba(255, 255, 255, .1);
    border-radius: 6px;
    border: none;
    height: 45px;
    width: 100%;
    padding: 0 15px;
    outline: none;
    color: var(--light);
}

.login-right .form-input::placeholder{
    color: var(--grey);
}

.password-container{
    position: relative;
}

.password-container span{
    position: absolute;
    right: 10px;
}


.login-right .form-input:focus, .form-input:focus-within{
    border: 1px solid var(--secondary_2)
}

.login-right .login-btn{
    background: var(--secondary_2);
    border: none;
    border-radius: 6px;
    height: 45px;
    font-weight: 600;
    position: relative;
    overflow-x: hidden;
}

.login-right .login-btn:hover{
    box-shadow: 1px 1px 6px rgba(15, 66, 145, .6);
}

.login-btn::before{
    content: '';
    width: 50px;
    height: 45px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    top: 0;
    position: absolute;
    animation: LeftRight 1.5s ease infinite backwards;
}

.or-register-with{
    padding: 5px 10px;
    z-index: 2;
}

.or-register-with::before{
    content: '';
    position: absolute;
    height: 1px;
    width: 30%;
    background: var(--gray);
    top: 50%;
    left: 0%;
    transform: translate(-0%, 0%);
    z-index: 0;
}

.or-register-with::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 30%;
    background: var(--gray);
    top: 50%;
    right: 0%;
    transform: translate(-0%, 0%);
    z-index: 0;
}

@media (max-width: 991px) {
    .wrapper{
        overflow: scroll;
        min-height: 100vh;
        height: auto;
    }

    .or-register-with::before{
        width: 20%;
    }

    .or-register-with::after{
        width: 20%;
    }

    .wrapper .login-div{
        width: 40rem;
        height: calc(100vh - 20px);
    }
}

@media (max-width: 912px){
    .wrapper .login-div{
        width: calc(100% - 20px);
        margin: 0 auto;
        position: relative;
        height: calc(100vh - 50px);
    }

    .login-left .login-content-top{
        z-index: 2;
    }

    .login-content-body h4{
        font-size: 16px!important;
    }

    .login-div .login-left{
        width:100%;
    }

    .login-content-body{
        justify-content: flex-start;
        padding-top: 20px;
    }

    .login-right{
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 40px);
        margin-top: 0px;
        background: var(--primary);
        margin-top: 250px;
        height: calc(100% - 180px);
        justify-content: flex-start;
        overflow: scroll;
        
        
        border-radius: 12px
    }

    .login-right::-webkit-scrollbar{
        width: 2px;
    }

    .login-right::-webkit-scrollbar-thumb{
        background: var(--light-green);
    }
}


/* Email Verification */
.verification-modal{
    max-width: 600px;
    width:calc(100% - 50px); 
    height: auto;
}


.form-input{
    background-color: rgba(255, 255, 255, .1);
    border-radius: 6px;
    border: 1px solid var(--gray);
    height: 45px;
    width: 100%;
    padding: 0 15px;
    outline: none;
    color: var(--primary);
    font-size: 18px;
}

.form-button{
    background: var(--red_2);
    border: none;
    border-radius: 6px;
    height: 45px;
    font-weight: 600;
    position: relative;
    overflow-x: hidden;
}

/*User Nav bar*/
.user-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.user-nav-option{
    position: absolute;
    width: 150px;
    height: auto;
    padding: 20px 0;
    display: none;
    flex-direction: column;
    right: 20px;
    background: var(--primary);
    top: 80px;
    border-radius: 12px;
    z-index: 1000;
}

.user-nav-option ul{
    display: flex!important;
    flex-direction: column;
}

.user-nav-option ul li{
    display: flex;
    flex-direction: column;
}

.user-nav-option ul li a{
    padding: 10px 20px;
    color: var(--light);
}

.user-nav-option ul li a:hover{
    background: var(--grey);
}

.show-user-nav{
    display: flex!important;
}


/* Inner CSS */
.create-event{
    padding: 0 100px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--light-gray);
}

.create-event a{
    outline: none;
}

.create-event .starter-card{
    border: 1px solid var(--grey);
    min-width: 220px;
    min-height: 220px;
    max-height: 220px;
    cursor: pointer;
}

.create-event .starter-card:hover{
    border: 2px solid var(--secondary_2);
}

.create-event .create-event-close{
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    font-size: 22px;
    cursor: pointer;

}







