@charset "UTF-8";

@font-face {
    font-family: "SairaExtraCondensed-Regular";
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/SairaExtraCondensed-Regular.ttf?90074efc850439a17fd9fa0ec60883f6) format("truetype");
}

@font-face {
    font-family: "univers-next-arabic-regular";
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/univers-next-arabic-regular.ttf?12fa72c87000b397da34b8d77dc2d2e8) format("truetype");
}

@font-face {
    font-family: "Arial";
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/Arial.ttf?07d53b5b4d43b671764d7075be494019) format("truetype");
}

:root {
    --blue: #3490dc;
    --pur-blu: #85A9CC;
    --indigo: #6574cd;
    --purple: #9561e2;
    --dark-purple: #06051f;
    --pink: #f66d9b;
    --dark-pink: #BB2768;
    --dark-raspberry: #962657;
    --red: #e3342f;
    --orange: #f6993f;
    --yellow: #ffed4a;
    --green: #38c172;
    --teal: #4dc0b5;
    --cyan: #6cb2eb;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --black: #000;
    --primary: #3490dc;
    --secondary: #6c757d;
    --success: #38c172;
    --info: #6cb2eb;
    --warning: #ffed4a;
    --danger: #e3342f;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray-light: #EFEFEF;
}

.bg-green {
    background-color: green !important;
}

.bg-red {
    background-color: red !important;
}

.bg-purple {
    background-color: #78649c !important;
}

* {
    outline: 0 !important;
}

.all-event-container .streams {

    background-color: #210229 !important;
    background-image: none !important;
}


.main-header {
    width: 100%;
    height: 340px;
    background: linear-gradient(rgba(135, 117, 204, 0.75),
            #210229),
        url(/images/events-bg.png) no-repeat center;
    background-size: cover;

}

.main-header div:nth-of-type(1) {
    padding-top: 50px;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
}

.main-header h1 {
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-align: left;
}

.main-header p {
    font-family: var(--font-family-sans-serif);
    width: 30%;
    font-size: 25px;
}

.main-container {
    width: 90%;
    margin: auto;
    min-height: 200px;
    padding: 20px;
    display: grid;
    grid-template-areas:
        'filter-form filter-form  search-form'
        'events events events ';
    grid-template-columns: 1fr 1fr 250px;
    justify-content: start;
    row-gap: 20px;
}


/*----------filter form style------------ */
.filter-form {
    grid-area: filter-form;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.sm-filter-form {
    display: none;
}

.filter-form .form-group {
    display: flex;
    align-items: flex-start;
    margin-right: 25px;
    width: 150px;


}

.filter-form .form-group select {
    border-radius: 8px;
    margin-left: 7px;
    padding: 5px 10px;
    width: 100%;
}

.filter-form .form-group label {
    padding: 5px 5px;
    font-size: 1em;
    font-family: var(--font-family-sans-serif);
}

.gradient-btn {
    background: linear-gradient(146deg, #f266a8 0%, #ba1c7e 20%, #3e73cc 44%, #1a3ec9 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    border: none;
    padding: 5px 15px;
    cursor: pointer;

}

/*--------- search form style------------  */
.search-form {
    grid-area: search-form;
    display: flex;
    align-items: center;
    width: 90%;
    height: 30px;
    justify-self: end;
    color: var(--gray-light);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    margin-right: 5%;
}

#search-event-input {
    border: none;
    background: transparent;
    padding: 7px 8px;
    font-size: 14px;
    color: inherit;
    border: 1px solid transparent;
    border-radius: inherit;
}

#search-event-input::placeholder {
    color: var(--gray-light);
}

#search-event-input:active,
#search-event-input:focus {
    outline: none;
}

#search-btn {
    text-indent: -999px;
    overflow: hidden;
    width: 40px;
    border: 1px solid transparent;
    border-radius: inherit;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    cursor: pointer;
    opacity: 0.7;
    background-color: var(--gray-light);
    height: 100%;
}

#search-btn:hover {
    opacity: 1;
}

/*------- popup style-------  */
.popup-link {
    display: none;
}

/*----- event list style -------*/
.events-list,
.suggested-events-list {
    grid-area: events;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    min-height: 300px;
    margin-top: 20px;

}

.events-list a,
.suggested-events-list a {
    text-decoration: none;
    text-align: center;
}

.event-card {
    width: 23%;
    border-radius: 24px;
    height: 355px;
    background-color: var(--dark-purple);
    position: relative;
    padding-bottom: 5px;
    margin: 0 1% 25px 1%;
    overflow: hidden;
}

.event-poster {
    width: 100%;
    height: 40%;
    border-radius: 24px 24px 0 0;
    position: relative;
}

.poster-overlay {
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(#8775ccbf,
            #06051ebf)
}

.event-card .poster-overlay {
    height: 40%;
    border-radius: 24px 24px 0 0;
}

.event-logo {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    top: 85px;
    left: 18px;
}

.event-information {
    display: flex;
    flex-direction: column;
    margin: 30px;
    margin-top: 20px;
    font-size: 14px;
    position: relative;
}

.event-information div:nth-of-type(1) {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.event-information .event-name {
    font-size: 14px;
}

.category-icon {
    background-color: var(--dark-pink);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    text-align: center;
    line-height: 25px;
}

.event-status {
    color: white;
    border-radius: 7px;
    padding: 0 15px;
    letter-spacing: 1.2px;
    font-size: 16px;
    font-weight: 600;
}

.event-information div:nth-of-type(2) {
    display: flex;
}

.event-time {
    margin: 6px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    display: none;
}

.event-time span:nth-of-type(1) {
    margin-right: 15px;
    color: var(--pink);
}

.event-time div span {
    display: block;
}

.event-date {
    position: relative;
    width: 44px;
}

.event-date:after {
    content: "";
    background: var(--gray-light);
    position: absolute;
    left: 50px;
    height: 38px;
    top: 1px;
    width: 1px;
}

.event-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-link {
    background-color: var(--gray-light);
    width: 90%;
    border: none;
    border-radius: 7px;
    padding: 1px 10px;
    text-align: start;
    height: 25px;
    display: flex;
    align-items: center;
}

.copy-icon {
    color: var(--dark);
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0 2px;
}

.copy-icon:hover {
    border: 1px solid var(--gray-dark);
}

.link {
    background-color: transparent;
    border: none;
    padding: 2px;
    height: 100%;
    font-size: 14px;
    font-weight: bold;
    width: 85%;
}

.event-book-button {
    margin: 15px auto 0;
    height: 30px;
    background-color: var(--dark-pink);
    color: var(--white);
    border: none;
    text-transform: uppercase;
    padding: 8px;
    border-radius: 10px;
    font-weight: bold;
    transition: all .3s;
    transform: scale(.98);
}

.event-book-button:hover {
    transform: scale(1);

}



/*-------------------------------
-----SINGLE EVENT PAGE STYLE-----
------------------------------ */

.poster-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.poster-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;

}

.poster-container .poster-overlay {
    height: 100%;
}

.go-back-link {
    position: absolute;
    top: 125px;
    left: 50px;
    font-size: 18px;
    color: var(--white);
    text-decoration: underline;
    cursor: pointer;
}

.event-details {
    width: 65%;
    margin: auto;
    height: 280px;
    display: flex;
    font-family: var(--font-family-sans-serif);
    position: absolute;
    top: 145px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.details-container {
    width: 60%;
    padding: 20px;
    background-color: var(--dark-purple);
    border-radius: 24px;
    opacity: 0.8;
}

.details-container .event-location {
    margin-left: 10px;
}

.details-container h3 {
    margin-left: 10px;
}

.event-details-logo {
    width: 40%;
    height: 280px;
    border-radius: 20px;
    margin-right: 25px;
}

.event-details-logo img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.event-details-1 {
    width: 100%;
    font-size: 1.2em;
    margin-bottom: 10px;

}

.event-details-1 span {
    margin-right: 10px;
}

.event-details-1 span:nth-of-type(1) {
    display: inline-block;

}

.event-location {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px 0;
    height: 16px;

}

.event-details-1 span:nth-of-type(2) {
    border-right: 1px solid rgba(239, 239, 239, .5);
    padding-right: 10px;
    position: relative;
    font-weight: 600;
}

.event-price {
    background-color: var(--dark-pink);
    border-radius: 10px;
    font-size: 18px;
    padding: 4px 12px;
    margin-left: 5px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.event-details-2 {
    display: flex;
    margin: 15px 0;
    font-size: 1.1em;
    margin-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.event-details-2 .start-date {
    margin-right: 29px;
    position: relative;
    width: 160px;
}

.event-details-2 .start-date:after {
    content: "";
    background: var(--gray-light);
    position: absolute;
    left: 160px;
    height: 45px;
    top: 0px;
    width: 1px;
    opacity: .5;
}

.event-details-2 .start-date div:nth-of-type(1),
.end-date div:nth-of-type(1) {
    font-size: 14px;
    margin-bottom: 10px;
}

.event-details-2 .start-date div:nth-of-type(2),
.end-date div:nth-of-type(2) {
    color: var(--dark-pink);
    font-size: 16px;

    letter-spacing: 1.1px;
    font-weight: bold;
}

.details-container button {
    margin: 15px 10px;
    width: 96%;
}

.copy-link {
    color: var(--dark-pink);
    cursor: pointer;
    float: right;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {

    opacity: 0;

}

/* describtion section in event page  */
.event-container {
    width: 80%;
    margin: 40px auto;
    display: grid;
    grid-template-areas:
        'description creator';
    grid-template-columns: 45% 45%;
    justify-content: center;
    row-gap: 100px;
    column-gap: 200px;
    font-family: var(--font-family-sans-serif);
}

.event-container h2 {
    margin-bottom: 20px;
}

.description {
    grid-area: description;
}

.description p {
    font-size: 20px;
}

.event-creator {
    grid-area: creator;
    margin-bottom: 80px;
}

.event-creator div {
    width: 70%;
    grid-area: creator;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--dark-purple);
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid var(--dark-pink);
}

.suggested-events {
    width: 85%;
    margin: auto;
}

.suggested-events h2 {
    margin-bottom: 30px;
    font-family: var(--font-family-sans-serif);
}


/*-----------------------------
------- Book Popup Style-------
-------------------------------  */
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 55;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dark-purple);
    padding: 1rem 1.5rem;
    width: 30%;
    border-radius: 0.5rem;
}

.close-button {
    float: right;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #302D71;
    margin-bottom: 15px;
    align-items: center;
}

.close-button:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.model-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
}

.event-payment-detail {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin: auto;
    background-color: #0f0d33;
    padding: 13px 0;
    margin-bottom: 25px;
    border-radius: 8px;
}

.event-payment-detail p {
    font-size: 17px;
    font-weight: bold;
    font-family: 'Arial';
}

.event-payment-detail p span {
    font-size: 16px;
    font-weight: 400;
    margin-right: 2px;
}

/* .purchase-container {
    min-height: 350px;
    width: 38%;
    margin: auto 1%;
    text-align: center;

} */

.book-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.book-form-group {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 0 auto 22px;
    color: var(--white);

}

.expire-input-group,
.cvc-input-group {
    display: flex;
    width: 48%;
    flex-direction: column;
    margin-top: 7px;
}

.cvc-input-group input {
    width: 100%;
}

.expire-input-group div {
    display: flex;
}

.expire-input-group div input {
    width: 40%;
}

.expire-input-group div span {
    width: 15%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    display: inline-block;
    padding-top: 9px;
}

.book-form input {
    height: 30px;
    padding: 5px 0 5px 10px;
    background-color: #0f0d33;
    box-shadow: inset 1px 1px 0px 0px #000000;
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    margin-top: 13px;
}

.book-form input:focus {
    background-color: rgba(182, 38, 103, 0.5);
    outline-color: #B62667;
    color: var(--white);
}

.book-form button {
    padding: 17px 10px;
    width: 40%;
    margin: 22px auto 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(15, 13, 51, 1) 0%, rgba(187, 39, 104, 1) 75%);
    font-size: 18px;
    border: none;
}

.book-form label {
    padding-left: 4px;
}

.popup-title {
    display: flex;
}

.popup-title h2 {
    width: 94%;
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.mini-form-group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    width: 100%;

}

.book-form small {
    color: var(--red);
    font-size: 14px;
    margin-top: 5px;
    text-transform: capitalize;
}

#success-book-popup .modal-content div:nth-of-type(1),
#success-payment-popup .modal-content div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#success-book-popup .modal-content div:nth-of-type(1) h1,
#success-message-container h1 {
    margin: 10px auto;
}

#success-book-popup a,
#success-message-container a {
    font-size: 20px;
    margin: 20px auto 30px;
}

#message-container h1 {
    font-size: 33px;
    letter-spacing: 1px;
}

.creator-payment-container {
    position: relative;
}

#statistics-btns-wrapper {

    margin-left: 21px;

}

.watch-link {
    display: block;
    text-align: center;
    background-color: var(--dark-pink);
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Arial';
    padding: 8px 0;
    border-radius: 8px;
    margin: auto;
    letter-spacing: 1.1px;
    height: 20px;
    margin-top: 12px;
    width: 100%;
}

/*-------------------------
--- Creator Chart Style ---
---------------------------*/
.chart-container {
    width: 94%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.668);
    min-height: 200px;
    padding: 19px;
    border-radius: 10px;
    font-family: var(--font-family-sans-serif) !important;
    margin-bottom: 20px;
}

.chart-status-filter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.chart-title {
    color: var(--white);
    font-size: 30px;
    text-transform: uppercase;
}

.chart-filter-bnts {
    border: 2px solid var(--pur-blu);
    display: flex;
}

.inactive-filter {
    color: var(--pur-blu);
    background-color: var(--black);
}

.chart-filter-bnts button {
    border: none;
    padding: 5px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1.2px;
}

.active-filter {
    color: var(--black);
    background-color: var(--pur-blu);
}

.chart-time-filter {
    display: flex;
    align-items: center;

    margin-bottom: 3px;
    margin-top: 10px;
}

.chart-time-filter i {
    font-size: 18px;
}

.chart-time-filter p {
    font-size: 25px;

}

.chart-time-filter * {
    margin-right: 7px
}

.chart-time-filter span {
    text-align: center;
    margin-right: 3px;
}

.chart-time-filter button {
    padding: 5px;
    border-radius: 11px;
    font-weight: bold;
    border: 3px solid var(--pur-blu);
    letter-spacing: 1.2px;
}

.active-time-btn {
    color: var(--black);
    background-color: var(--pur-blu);
}

.inactive-time-btn {
    color: var(--pur-blu);
    background-color: transparent;
}

#bydate-follower {
    width: 100%;
}

canvas {
    height: 450px !important;
}

.exist-data {
    display: none;
}

.no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-chart-status img {
    margin: 20px auto;
}

.empty-chart-status h2 {
    font-size: 40px;
    letter-spacing: 1.2px;
    margin-top: 25px;
}

/* view and revenues style */
.revenues-wrapper,
.views-wrapper {
    display: flex;
    width: 100%;
}

.revenuesChart-wrapper,
.viewsChart-wrapper {
    width: 74%;
    margin-right: 1%;
}

#no-revenues-events,
#no-views-events {
    width: 25%;
}

#events-with-no-views,
#events-with-no-revenues {
    height: 381px;
    padding: 20px;
    overflow-y: scroll;
    background-color: var(--pur-blu);
    border-radius: 15px;
}

#events-with-no-views li,
#events-with-no-revenues li {
    color: var(--dark-purple);
    border-bottom: 1px solid var(--dark-purple);
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

#events-with-no-views li:first-of-type,
#events-with-no-revenues li:first-of-type {
    margin-top: 0;
}

#no-revenues-events h3,
#no-views-events h3 {
    font-size: 25px;
    text-transform: uppercase;
    color: var(--pur-blu);
    position: relative;
}

#dash {
    position: absolute;
    top: -10px;
    left: 2px;
    transform: rotate(25deg);
    font-size: 38px !important;
    font-weight: 300;
    color: var(--pur-blu);
}

.no-total-active {
    display: block;
}

.no-total-inactive {
    display: none;
}

/*-----------------------
----Ajax loader style----
-------------------------*/
.e-wrapper {
    position: relative;
}

body,
.all-event-container.event {
    position: relative;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

#load-more-overlay {
    top: 0;
    right: 0;
}

#buy-event-overlay {
    /* top: -150px; */
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

.is-hide {
    display: none;
}

.event-book-button a {
    color: white;
}

#load-more-btn {
    background: transparent;
    border: none;
    color: white;
    margin: 10px auto;
    font-size: 16px;
    text-decoration: underline;
}

.load-more-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}


/*-------------------------
----My Event Page style----
---------------------------*/
.event-custom-scrollbar {
    margin: 0 1%;
    width: 98%;
}

.myevents-filter-btns {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    line-height: 42px;
}

.myevents-filter-btns a {
    width: 175px;
    height: 43px;
}

.myevents-filter-btns a button {
    width: 171px;
    height: 42px;
    border-radius: 11px;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 18px;
    padding: 10px;
}

.myevents-filter-btns a:nth-of-type(1) {
    margin-right: 20px;
    text-align: center;


}

.myevents-active-btn {
    box-shadow: inset 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
    background-color: var(--dark-raspberry);
    border: 3px solid var(--dark-purple);
    color: var(--dark-purple);
}

.myevents-inactive-btn {
    box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.39);
    background-color: var(--dark-purple);
    border: 3px solid var(--dark-raspberry);
    color: var(--dark-raspberry);
}

#bought-events-btn {
    margin-right: 15px;
}

.box-header h2 {
    font-weight: 300;
    font-size: 35px;
}

.box-header i {
    color: var(--white);
}

.box-header a {
    font-size: 20px;
    margin-right: 33px;

}

.myevents-wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.myevent-card {
    width: 29%;
    background-color: var(--dark-purple);
    border-radius: 24px;
    display: flex;
    padding: 5px 20px;
    margin-right: 10px;
    color: var(--white) !important;
    height: 230px;
}

.myevent-data {
    width: 60%;
    display: flex;
    flex-direction: column;
    margin: auto 1%;
}

.myevent-card img {
    border-radius: 50%;
    margin: auto 1%;
    width: 46%;
    height: 76%;
}

.myevent-data div {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-left: 5%;
}

.myevent-card .event-name {
    font-weight: 300;
    /* color: #df2f76; */
    font-size: 26px;
    margin-left: 2%;
}

.myevent-card div i {
    font-size: 16px;
    margin-right: 10px;
    text-align: center;
}

.all-events-link {
    text-decoration: none;
    color: var(--white);
}

.myevent-card .myevent-location {
    width: 65%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.no-event-status {
    background-color: #06051ebf;
    height: 50px;
    width: 100%;
    text-align: center;
    padding: 10px;
    line-height: 50px;
    font-size: 35px;
    color: var(--dark-pink);
    border-radius: 10px;
    margin-bottom: 25px;
}

.myevent-single-category {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
}

.myevent-single-category .myevent-card {
    width: 21%;
    height: 200px;
    margin-bottom: 20px;
}

.myevent-single-category .myevent-card img {
    height: 150px;
}

#back-to-events {
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
}

#back-to-events i {
    font-size: 16px;

}

.no-result {
    margin-top: 100px;
}

.pagination-wrapper {
    margin-top: 24px;
}

span.page-link {
    font-size: 30px !important;
}

/*------- tooltip style ----------*/
.search {
    position: relative;
}

.search .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

/* .search .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
  } */

.search:hover .tooltiptext {
    visibility: visible;
}

/*--------------------scroll bar style----------------- */
.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    border-radius: 10px
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--gray);
    border-radius: 10px
}

/*-----------------------------------------
----------- watch event page style--------- 
-------------------------------------------*/
#course-event-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

#start-meeting {
    float: right;
    font-size: 20px;
    background-color: var(--dark-pink);
    border-radius: 30px;
    letter-spacing: 0;
    padding: 0 35px;
    font-size: 26px;
    border: none;
    color: var(--white);
    font-family: "SairaExtraCondensed-Regular";
}

.course-audience {
    margin-top: 55px;
}

/* ----------------------------------
------------create course page-------
----------------------------------- */
.course-record-option {
    margin-top: 55px
}

#success-message-container div.actions {
    flex-direction: row !important;
    justify-content: space-evenly !important;
    width: 75%;

}

#package_free_container,
#p_method_1 {
    margin: 0 0 41px 28px;
}


@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

/* timer */
#timer {
    display: flex;
    justify-content: center;
    margin: -25px 0 0;
}


#timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    padding: 0 20px;
    font-size: 40px;
    color: var(--dark-pink);
}

#timer span {
    display: block;
    font-size: 20px;
    color: white;
}

#days {
    font-size: 100px;
}

#hours {
    font-size: 100px;
}

#minutes {
    font-size: 100px;
}

#seconds {
    font-size: 50px;
}

@media (max-width: 1200px) {
    .main-header div {
        padding-top: 130px;
    }

    .main-header__p {
        width: 40%;
    }

    .main-container {
        grid-template-columns: 1fr 1fr 150px;
    }

    .filter-form .form-group {
        margin-right: 6px;
    }

    .gradient-btn {
        padding: 5px 15px;
    }

    .search-form {
        width: 100%;
    }

    .filter-form .form-group {
        width: 17%;
    }

    .form-group select {
        width: 100%;
    }

    .link {
        width: 80%;
    }

    .event-book-button a {
        font-size: 14px;
    }

    .modal-content {
        width: 50%;
    }

    .myevent-single-category .myevent-card {
        width: 28%;
    }

    .search {
        width: 93%;
    }

    .myevent-card-sm {
        width: 28.5%;
        flex-direction: column;
        padding: 15px 10px;
    }

    .myevent-card-sm .event-name {
        font-size: 21px;
    }

    .myevent-card-sm .myevent-data div {
        font-size: 16px;
        letter-spacing: 1.01px;
    }

    .myevent-card-sm img {
        margin: auto;
    }

    .myevent-card-sm .myevent-data {
        width: 96%;
        margin-top: 5px;
        display: flex;
        flex-direction: column;
        margin: 5px auto;
    }

    #no-revenues-events h3,
    #no-views-events h3 {
        font-size: 22px;
    }
}

@media (max-width: 1025px) {

    .main-container {
        grid-template-columns: 1fr 1fr 200px;
    }

    .event-details {
        width: 80%;
    }

    .modal-content {
        width: 70%;
    }

    .event-date:after {
        left: 43px;
    }

    .event-information {
        margin: 20px;

    }

    #no-revenues-events h3,
    #no-views-events h3 {
        font-size: 18px;
    }
}

@media(max-width:769px) {
    .main-container {
        grid-template-areas:
            'search-form search-form  search-form'
            'events events events ';
        justify-content: start;
        width: 98%;
        padding: 0;

    }

    .main-header div:nth-of-type(1) {
        padding-top: 72px;
        margin-left: 55px;
    }

    .main-header p {
        width: 60%;
    }

    .search-form {
        width: 90%;
        justify-self: center;
        margin-right: 0;
    }

    .filter-form {
        display: none
    }

    .sm-filter-form {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .sm-filter-form div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .sm-filter-form select {
        border-radius: 10px;
        padding: 3px;
        width: 100%;
    }

    .sm-filter-form label {
        font-size: 18px;
        font-family: var(--font-family-sans-serif);
        margin-bottom: 3px;
    }

    .sm-filter-form button {
        background-color: var(--dark-pink);
        font-family: var(--font-family-sans-serif);
        color: #ffffff;
        border-radius: 8px;
        font-size: 15px;
        border: none;
        padding: 3px;
        margin: 5px;
    }

    .popup-link {
        display: block;
        color: var(--white);
        cursor: pointer;
        width: 30px;
    }

    .popup-container {
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        transform: scale(1.3);
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(21, 17, 17, 0.61);
        display: flex;
        align-items: center;

    }

    .popup-content {
        background-color: var(--dark-purple);
        margin: auto;
        padding: 0 20px 20px;
        width: 50%;
        border-radius: 8px;

    }

    .popup-content a.close {
        color: #aaaaaa;
        /* float: right; */
        font-size: 28px;
        font-weight: bold;
        background: none;
        padding: 0;
        margin: 0;
        text-decoration: none;
        align-self: flex-end;
    }

    .popup-content a.close:hover {
        color: #333;
    }

    .popup-content span:hover,
    .popup-content span:focus {
        color: var(--black);
        text-decoration: none;
        cursor: pointer;
    }

    .popup-container:target {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }

    .popup-container h3 {
        margin: 10px;
    }

    /*End popup styles*/



    #search-event-input {
        width: 90%;
    }

    .main-header {
        height: 380px;
    }

    .event-card {
        width: 31%;
    }

    .event-location {
        font-size: 14px;
        margin: 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .event-container {
        width: 96%;
        padding: 0;
        grid-template-areas:
            'description creator';
        grid-template-columns: 47% 47%;
        justify-content: center;
        row-gap: 20px;
        column-gap: 10px;
    }

    .poster-container {
        height: 400px;
    }

    .all-event-container {
        padding-top: 69px;
    }

    .go-back-link {
        display: none;
    }

    .event-details {
        width: 95%;
        top: 140px;
    }

    .suggested-events {
        width: 91%;
    }

    #link {
        width: 83%;
    }

    .modal-content {
        width: 70%;
    }

}

@media (max-width: 425px) {
    .main-header h1 {
        font-size: 35px;
    }

    .main-header p {
        font-size: 18px;
    }

    .main-header {
        height: 290px;
    }

    .event-logo {
        width: 65px;
        height: 65px;
        left: 15px;
    }

    .event-information {
        margin: 15px;
        margin-top: 30px;
    }

    #link {
        width: 80%;
    }

    .main-container {
        width: 96%;
    }

    .main-header__h1 {
        font-size: 35px;
    }

    .main-header div {
        margin: auto;
        align-items: center;
    }

    .main-header__p {
        width: 90%;
        text-align: center;
    }

    .event-card {
        width: 48%;
        margin: 10px auto;
    }

    .main-header div:nth-of-type(1) {
        margin-left: 0;
        padding-top: 115px;
    }

    .main-header p {
        width: 90%;
    }

    .event-container {
        width: 96%;
        grid-template-areas: 'description description''creator creator';
        grid-template-columns: 49% 49%;
    }

    .suggested-events {
        width: 96%;
    }

    .all-event-container {
        padding-top: 69px;
    }

    .details-container {
        width: 85%;
    }

    .event-details {
        flex-direction: column;
        align-items: center;
        width: 100%;
        top: 95px;
        height: 400px;
    }

    .event-details-logo {
        width: 30%;
        height: 150px;
        margin: auto auto 10px;

    }

    .event-details-logo img {
        width: 100%;
        height: 88%;
        margin: auto;
    }

    .poster-container {
        height: 460px;
    }

    .event-details-2 .start-date {
        width: 140px;
    }

    .event-details-1 span {
        margin-right: 0px;
    }

    .event-details-1 {
        font-size: 1em;
    }

    .event-details-2 .start-date div:nth-of-type(2),
    .end-date div:nth-of-type(2) {
        font-size: 14px;
    }

    .details-container button {
        margin: 2px 10px;
    }

    .model-wrapper {

        flex-direction: column;
    }

    .purchase-container {
        width: 96%;
        margin: auto;
    }

    .book-form {
        width: 96%;
        margin-bottom: 30px;
    }

    .book-form-group {
        margin: 0 auto 15px;
    }

    .book-form button {
        padding: 10px;
        margin: 7px auto 0;
    }

    .book-form input {
        height: 23px;
    }

    .revenues-wrapper,
    .views-wrapper {
        flex-direction: column;
    }

    .revenues-wrapper,
    .views-wrapper {
        width: 100%;
    }

    #no-revenues-events,
    #no-views-events {
        margin-top: 20px;
        width: 100%;
    }

    .revenuesChart-wrapper,
    .viewsChart-wrapper {
        width: 100%;
    }

    canvas {
        height: auto !important;
    }

    #dash {
        top: -13px;
        left: 0px;
        font-size: 33px !important;
    }

}

@media(max-width: 376px) {
    .main-container {
        width: 98%;
        padding: 0;
    }

    .event-card {
        width: 85%;
        padding: 0;
    }

    .event-details-2 .start-date div:nth-of-type(2),
    .end-date div:nth-of-type(2) {
        font-size: 12px;
    }

    .event-details-2 .start-date:after {
        left: 123px;
    }

    .event-details-2 .start-date {
        width: 115px;
    }

    .event-price {
        font-size: 12px;
    }
}

.description p {
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-type {
    display: inline-block;
    color: white;
    border-radius: 7px;
    padding: 0 15px;
    letter-spacing: 1.2px;
    font-size: 16px;
    right: 0;
    font-weight: 600;
    right: 0;
    position: absolute;
    background: #0f03a8 !important;
}

.video-playlist ul {
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    list-style: none;
    display: inline-block;
    width: 20%;
    overflow-y: scroll;
    height: 500px;
}

.video-playlist ul li {
    padding: 9px 15px;
    margin: 0;
    cursor: pointer;
}

.video-playlist video {
    display: inline-block;
    width: 79%;
    height: 500px;
    vertical-align: top;
}
ul.video-list li.active {
    background-color: red;
}