@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --color-white: #fff;
    --color-black: #000;
    --color-gray-100: #f7f8fa;
    --color-gray-200: #f1f2f5;
    --color-gray-300: #e4e6eb;
    --color-gray-400: #bdbfc7;
    --color-gray-500: #8f94a2;
    --color-gray-600: #757a8a;
    --color-gray-650: #696e7c;
    --color-gray-700: #4f5461;
    --color-gray-800: #2c3242;
    --color-gray-900: #1b1f29;
    --color-blue-100: #ecf2ff;
    --color-blue-200: #d6e3ff;
    --color-blue-300: #bdd2ff;
    --color-blue-400: #175fff;
    --color-blue-500: #1043b2;
    --color-primary-400: #175fff;
    --color-gray-300: #e4e6eb;
    --color-button-background: var(--color-primary-400);
    --button-border-radius: 0.25rem;
    --font-weight-semi-bold: 600;
    --input-height : 3rem;
    --spacing-32: 2rem;
    --transition-duration: 0.2s;
    --font-size-smaller: 0.625rem;
    --font-size-small: 0.75rem;
    --font-size: 0.875rem;
    --font-size-big: 1rem;
    --font-size-bigger: 1.125rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --font-size-heading-1: 2rem;
    --font-size-heading-2: 1.5rem;
    --font-weight-medium: 500;
    --line-height-tight: 1.25;
        --transition-duration-long: 0.4s;
    --spacing-1: 0.0625rem;
    --spacing-2: 0.125rem;
    --spacing-4: 0.25rem;
    --spacing-8: 0.5rem;
    --spacing-12: 0.75rem;
    --spacing-16: 1rem;
    --spacing-24: 1.5rem;
    --spacing-32: 2rem;
    --spacing-40: 2.5rem;
    --spacing-48: 3rem;
    --spacing-64: 4rem;
    --spacing-80: 5rem;
    --spacing-96: 6rem;
    --spacing-128: 8rem;
    --spacing-160: 10rem;
    --color-text-dark: var(--color-gray-900);
    --color-text: var(--color-gray-800);
    --color-text-light: var(--color-gray-650);
    --color-text-disabled: var(--color-gray-400);
    --color-line: var(--color-gray-300);
}
.text.-right {
    text-align: right;
}
.text.-light {
    color: var(--color-text-light);
}
.text.-small {
    font-size: var(--font-size-small);
}
.text.-big {
    font-size: var(--font-size-big);
}
.text.-center {
    text-align: center;
}
.stack.-gap-16>*+* {
    margin-top: var(--spacing-16);
}
body
{
    font-family: 'Poppins', sans-serif;
}

ul, ol {
    list-style: none;
}
p, h1, h2, h3, h4, h5, h6, span, ul, ol, li {
    margin: 0;
    padding: 0;
}
.button {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--color-button-background);
    border-radius: var(--button-border-radius);
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semi-bold);
    height: var(--input-height);
    justify-content: center;
    line-height: var(--input-height);
    outline: none;
    padding: 0 var(--spacing-32);
    text-decoration: none;
    transition-duration: var(--transition-duration);
    transition-property: background-color, color;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.button.-full {
    width: 100%;
}
.btn {
    display: inline-block;
    font-weight: 500;
    color: #495057;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0.0625rem solid transparent;
    padding: 0.6875rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-primary {
    color: #fff !important;
    background-color: #175fff;
    border-color: #175fff;
}
.field>label:first-child {
    margin-bottom: var(--spacing-8);
}
label {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-tight);
}
a {
    color: var(--color-primary-400);
    text-decoration: none;
    transition: color var(--transition-duration);
}
hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 0;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
.nav-wrapper
{
    box-shadow: 0px 2px 2px #efefef;
    background: #dfeaff;
}
.logo
{
    max-width: 110px;
}


.content-wrapper{
    padding-top: 40px;
    padding-bottom: 100px;
}
.section-title{
  font-size: 35px;
    margin-bottom: 12px;
    color: #444;
    text-align: center;
}
.events-listing{
    margin-top: 60px;
}
.events-listing h2{
    font-size: 25px;
    margin-bottom: 12px;
    color: #5b5b5b;
}
/* event details card start */
.event-card {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 2px 2px #eee;
    margin-bottom: 30px;
}
.event-card .event-title-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-title-with-logo{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.event-logo {
    margin-right: 15px;
}
.event-logo img {
    width: 3.5rem;
    height: 2rem;
    border-radius: 4px;
}
.event-title h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: #5b5b5b;
}
.event-details-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
}

.event-details-area p{
    font-size: 15px;
    margin-bottom: 0;
    color: #808080;
}
.event-details-area h4{
    font-size: 16px;
    margin-bottom: 0;
    color: #5b5b5b;
    margin-top: 1px;
}
.event-details-item-wrapper{
    display: grid;
    row-gap: 10px;
}
.event-details-area .event-detail-item{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    
}
.event-details-area .icon-wrapper{
    margin-right: 15px;
}
.event-details-area .icon-wrapper .fa{
        font-size: 20px;
}
.event-details .fa-circle {
    font-size: 12px;
}
/* event details card end */
/* Dashboard */
.dashboard-main-wrapper{
    display: flex;
}

.side-nav{
    position: fixed;
    bottom: 0;
            background-color: var(--color-sidenav-background);
        box-shadow: 0.0625rem 0 0.125rem rgb(46 63 119 / 8%);
        position: fixed;
        z-index: var(--z-index-nav);
        padding: 0px 6px;
        gap: 20px;
}
.profile-pic-comp{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #1043b2;
}
.side-nav .brand-logo {
    text-decoration: none;
    height: auto;
    width: 5.25rem;
    border-radius: .5rem;
}
.side-nav .brand-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side-nav-item .nav-icon-wrapper{
    position: relative;
    display: -webkit-flex;
    display: flex;
    color: #696e7c;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0;
    border-radius: .5rem;
    height: 52px;
    width: 52px;
    background: #fff;
    margin: 0 auto;
}
.side-nav-button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}
.side-nav-button:hover .nav-icon-wrapper{
    background: #f1f2f5;
}
.side-nav-button.active .nav-icon-wrapper{
    color: #175fff;
    background: #f1f2f5;
}
.side-nav-button span{
    color: #2c3242;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: normal;
    word-wrap: break-word;
}
.side-nav-button.active span{
    color: #175fff;
}
.dashboard-content-area{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
    width: 100%;
}
.reception-event-details{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.event-banner img{
    width: 100%;
    height: auto;
}
.event-info-wrapper{
    margin-top: 20px;
}
.reception-event-details .event-date-and-time{
    list-style: none;
    float: left;
    width: 50%;
    margin-bottom: 8px;
    font-size: 14px;
    color: #808080;
}
.info-title{
    border-bottom: 2px solid rgb(248, 39, 39);
}
.event-info-details{
    margin-top: 20px;
}
/* ----Auth Screen---- */
.auth-wrapper{
    height: 100vh;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.container.-max-5 {
    max-width: 448px;
}
.input, .textarea {
    background-color: var(--color-white);
    border-radius: 0.25rem;
    border: 0.0625rem solid var(--color-gray-300);
    box-shadow: 0 0 0 0 transparent;
    color: var(--color-text);
    display: block;
    font-family: inherit;
    font-size: 0.875rem;
    height: 3rem;
    min-width: 0;
    outline: none;
    padding: 0 1rem;
    transition-duration: 0.2s;
    transition-property: border-color, box-shadow;
    width: 100%;
}
.input:hover, .textarea:hover {
    box-shadow: 0 0.0625rem 0.125rem rgba(46, 63, 119, 0.08);
}
.input:focus, .textarea:focus, .input.-focus, .-focus.textarea {
    border-color: #175fff;
    box-shadow: 0 0 0.125rem 0.125rem rgba(23, 95, 255, 0.15);
}
.auth-brand-logo img {
    margin: 0 auto;
    display: block;
    max-width: 200px;
}

.form-content {
    padding: 20px;
    border: 1px solid #eee;
}
.form-group{
    margin-bottom: 1rem;
}
.radio-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
}
.radio-box1 {
    width: 15px;
    margin-right: 5px;
}
.radio-box2 {
    width: 60%;
}
.form-head {
    margin: 0;
    font-size: 15px;
    color: #2c3248;
    font-weight: 400;
    margin-bottom: 4px;
}
.radio-box3 {
    width: 40%;
    text-align: right;
}
.status h3 {
    margin: 0;
    font-size: 11px;
    color: #2c3248;
}
.your-text {
    font-size: 18px;
    color: #2c3248;
}
.ticket h2 {
    margin: 0;
    font-size: 20px;
    color: #2c3248;
}
/* ----Thankyou page--- */

.thankyou-page .thanks-icon img{
    max-width: 50px;
    margin: 0 auto;
    display: block;
}
/* Footer */
.footer-section {
    background-color: #dfeaff;
    padding: 40px 0;
    text-align: center;
}
.footer-img {
    width: 100px;
    margin-bottom: 10px;
}
.footer-text p {
    margin: 0;
    font-size: 12px;
    color: #000;
}
/* Hide the arrow with !important */
.dropdown-toggle::after {
    display: none;
}
.dropdown-menu{
    box-shadow: 0px 0px 5px 3px #dedede;
    padding: 15px;
        border-radius: 0.73rem;
}
.dropdown-menu-title{
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin: 0px;
    line-height: 1.6;
}
.custom-dropdown-menu .dropdown-item{
    color: var(--color-text);
    font-size: 0.75rem;
}
.custom-dropdown-menu .dropdown-item svg {
    margin-right: var(--spacing-8);
    color: var(--color-gray-600);
}



/* Responsive */

@media (max-width:768px){
    .side-nav {
     display: flex;
     flex-direction: row;
     background: #fff;
      width: 100%;   
      justify-content: space-evenly;  
      padding: 5px 0px; 
             
    }
    .side-nav-item .nav-icon-wrapper{
        height: 40px;
        width: 40px;
    }
    .dashboard-content-area{
        margin-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .event-details-area .event-details-item-wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-rows: 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        width: 100%;
    }
    .event-detail-item{
        justify-content: center;
    }
    .event-details-area .event-detail-item:not(:last-child){
        border-right: 1px solid #dee2e6;
        padding-right: 20px;
        
    }

    .side-nav {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
        padding-top: .5rem;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        width: 96px;
    }

    .dashboard-content-area {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 40px;
        width: 100%;
        margin-left: 96px;
    }
    .dropdown-menu.custom-dropdown-menu.show{
        position: absolute;
        top: 136% !important;
        left: 71px !important;
        transform: translateY(-50%) !important;
    }
}

