.alert-notification{
    width: 20px;
    height: 20px;
    background-color: red;
    padding: 9px;
    position: absolute;
    right: -7px;
    top: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #Fff;
}
.close{
    background-color: #acff00;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: none;
    display: flex;
    font-size: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    right: 13px;
    position: absolute;
    cursor: pointer;
}
.hide{
    display: none!important;
}
.icon_admin_dash{
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.overlay-menu-mobile{
    display: none;
    position: absolute;
    background-color: #000000d1;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 9;
}

.btn-buy-ticket span{
    font-weight: 100;
    font-size: 14px;
}

.btn-buy-ticket{
    background-color: #acff00;
    color: #1a212a;
    font-weight: 800;
    font-size: 20px;
    height: 50px;
    margin: 4px;
    padding: 0px;
    border-radius: 0px 0px 10px 10px;
    display: inline-grid;
    line-height: normal;
    padding-top: 5px;
    padding-bottom: 5px;
}

.btn-buy-ticket:hover{
    background-color: #1a212a;
    color: #ffffff;
}

.sp-divider{
    height: 3px;
    position: relative;
    display: block;
    border-bottom: 2px dotted #1a212a;
}

.button-bar-nav-top{
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    margin: 5px 20px 5px 5px;
    position: absolute;
    right: 0;
}
.nav-top .col-nav-options ul{
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: center;
    height: 100%;
}

.nav-top .col-nav-options ul li{
    display: grid;
    text-align: center;
    align-items: center;
    margin: 0px;
    width: 150px;
    margin-left: 5px;
    height: 100%;
    background: linear-gradient(359deg, rgb(172 255 0 / 57%) -100%, rgb(3 69 100) 100%);
}


.nav-top .col-nav-options ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.nav-top .col-nav-options ul li:hover{
    background: #1a212a66;
    cursor: pointer;
}

.nav-top .col-nav-profile{
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-top .col-nav-profile p{
    margin-left: 10px;
    font-size: 14px;
    display: grid;
    color: #fff;
    padding-top: 15px;
    line-height: normal;
}

.nav-top .col-nav-profile .name-profile{
    font-weight: 800;
    font-size: 17px;
}

 .nav-top .col-nav-profile .image-profile{
    width: 45px;
    border-radius: 28px;
 }

.nav-top{
    background-color: #034564;
    width: 100% !important;
    height: 70px;
    max-width: 100% !important;
    display: flex;
    justify-content: space-between;
    border-bottom: 4px solid #acff00;
    padding: 0px;
  }
  

  body {
    box-sizing: border-box;
    font-family: sans-serif;
    background: #1a212a;
  }


  /* Main Ticket Style */
.ticketContainer{
 /*   display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;*/
}
.ticket{
    background-color: white;
    color: darkslategray;
    border-radius: 12px;
}
.ticketShadow{
    margin-top: 4px;
    width: 95%;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    filter: blur(12px);
}

/* Ticket Content */
.ticketTitle{
    font-size: 16px;
    font-weight: 700;
    padding: 12px 16px 4px;
}
hr{
    width: 90%;
    border: 1px solid #efefef;
}
.ticketDetail{
    font-size: 14px;
    font-weight: 500;
    padding: 4px 16px;
}
.ticketSubDetail{
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    position: relative;
}
.ticketSubDetail .code{
    margin-right: 24px;
}

/* Ticket Ripper */
.ticketRip{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.circleLeft{
    width: 12px;
    height: 24px;
    background-color: #1a212a;
    border-radius: 0 12px 12px 0;
}
.ripLine{
    width: 100%;
    border-top: 2px solid #1a212a;
    border-top-style: dashed ;
}
.circleRight{
    width: 12px;
    height: 24px;
    background-color: #1a212a;
    border-radius: 12px 0 0 12px;
}



@media only screen and (max-width: 767px) {


    .nav-top .col-nav-options ul{
        display: none;
        z-index: 999;
        margin-top: 70px;
        position: relative;
    }

    .nav-top .col-nav-options ul li{
        background: #034564;
        border-bottom: 3px solid #acff00;
        height: 50px;
        padding-left: 10px;
        text-align: start;
    }


    .button-bar-nav-top{
        display: block;
    }

}

