:root {
    --primary-hs: 168, 83%;
    --primary-l: 38%;
    --primary-hsl: hsl(var(--primary-hs), var(--primary-l));
    --primary-hsl-darker: hsl(var(--primary-hs), calc(var(--primary-l) - 5%));
    --base-bg: #eff1f3;
    --primary: #454ade;
    --secondary: #27324c;
    --secondary-dark: #1c1e24;
    --login-base: #001720;
    --red: #fb202e;
    --red-background: #ffeded;
    --danger: #ff0000;
    --purple: #65108d;
    --light-purple: #a032d4;
    --base-font: "Inter";
    --form-font: "DM Sans";
    --field-radius: 0.8rem;
    --card-radius: 1.2rem;
    --form-border: #b1bac2;
    --checkbox-border: #8b99a5;
    --black: #000;
    --link-light: #dce3f4;
    --light-gray: #cccccc;
    --gray-700: #7a7a7a;
    --gray-800: #8b8b8b;
    --gray-900: #929292;
    --transition: 0.15s ease-in-out;
    --placeholder: #8b99a5;
    --table-hover: #f0f5fa;
}

html {
    font-size: 10px;
} /*1rem = 10px*/
html,
body {
    height: 100%;
}
html.open-navbar,
html.open-navbar body {
    overflow: hidden;
}
body {
    background-color: var(--base-bg);
    font-family: var(--base-font);
    font-size: 1.6rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
a,
a:hover {
    text-decoration: none;
}
a:hover {
    color: var(--primary);
}
u {
    text-decoration: none;
    border-bottom: 0.2rem solid currentColor;
}
[role="button"] {
    cursor: pointer;
}
.font-family-inter {
    font-family: var(--base-font);
}
.font-weight-semibold {
    font-weight: 600;
}
textarea {
    resize: none;
}
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1;
}

/*text-color*/
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-secondary-dark {
    color: var(--secondary-dark) !important;
}
.text-red {
    color: var(--red) !important;
}
.text-danger {
    color: var(--danger) !important;
}
.text-purple {
    color: var(--purple) !important;
}
.text-light-purple {
    color: var(--light-purple) !important;
}
.text-gray-700 {
    color: var(--gray-700) !important;
}
.text-gray-900 {
    color: var(--gray-900) !important;
}

/*btn*/
.btn {
    font-family: var(--form-font);
    border-radius: var(--field-radius);
    border-width: 0.2rem;
    min-width: 14rem;
    width: 100%;
    max-width: 30.2rem;
    font-size: 1.6rem;
    font-weight: 500;
    box-shadow: none !important;
}
.btn.rounded-pill {
    border-radius: 10rem;
}
.btn:not(.btn-link) {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.btn.btn-lg:not(.btn-link) {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
}
.btn.btn-sm:not(.btn-link) {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}
/* .btn-primary { background-color: var(--primary-hsl); border-color: var(--primary-hsl); } */
.btn-primary {
    border: 0px solid var(--Iris-Blue, #454ade);
    background: linear-gradient(141deg, #cfd0f2 -101.42%, #454ade 79.63%),
        linear-gradient(180deg, #455ade 0%, rgba(69, 74, 222, 0) 100%);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
    background: linear-gradient(141deg, #cfd0f2 -101.42%, #454ade 79.63%),
        linear-gradient(180deg, #455ade 0%, rgba(69, 74, 222, 0) 100%);
    border-color: var(--primary-hsl-darker);
}
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-red {
    background-color: var(--red);
    border-color: var(--red);
}
.btn-red:hover,
.btn-red:focus,
.btn-red:not(:disabled):not(.disabled):active {
    background-color: var(--red);
    border-color: var(--red);
}
.btn-purple {
    background-color: var(--purple);
    border-color: var(--purple);
}
.btn-purple:hover,
.btn-purple:focus,
.btn-purple:not(:disabled):not(.disabled):active {
    background-color: var(--purple);
    border-color: var(--purple);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.btn-outline-secondary  {
    color: #454ADE;
    background-color: transparent;
    border-color: #454ADE;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    background-color: #454ADE;
    border-color: #454ADE;
    color: var(--white);
}
.btn-outline-red {
    color: var(--red);
    background-color: transparent;
    border-color: var(--red);
}
.btn-outline-red:hover,
.btn-outline-red:focus,
.btn-outline-red:not(:disabled):not(.disabled):active {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.btn-outline-purple {
    color: var(--purple);
    background-color: transparent;
    border-color: var(--purple);
}
.btn-outline-purple:hover,
.btn-outline-purple:focus,
.btn-outline-purple:not(:disabled):not(.disabled):active {
    background-color: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.btn.btn-link {
    font-weight: normal;
}
.btn + .btn.btn-link {
    margin-top: 1.8rem;
    text-decoration: underline;
    display: inline-block;
    color: var(--secondary);
}
.btn.btn-link:hover {
    text-decoration: none;
}
.btn.btn-link.light {
    color: var(--link-light);
}
.btn-div {
    margin-top: 6.4rem;
    display: block;
}
.save-btn-div {
    margin-bottom: 5.4rem;
    display: block;
}
.save-btn-div .btn {
    width: 206px;
}
.save-notification-btn-div .btn {
    width: 304px;
}
.profile .btn {
    width: 186px;
}
.btn-div.mt-sm {
    margin-top: 4.3rem;
}
.btn-group-inline {
    display: inline-flex;
    flex-wrap: wrap;
}
.btn-group-inline .btn {
    margin: 0 0.8rem;
    width: 100%;
    max-width: 100%;
}
.btn img,
.btn svg {
    margin-top: -3px;
}
svg.fill {
    fill: currentColor;
}
svg.stroke {
    stroke: currentColor;
}

/*form*/
.form-group {
    margin-bottom: 2.3rem;
    font-family: var(--form-font);
}
/* .form-group .add-select {margin-bottom: 4.9rem;} */
.type-notification {
    margin-bottom: 4.9rem;
}

.form-control {
    height: calc(4.3rem + 0.2rem);
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: var(--field-radius);
    border-color: var(--form-border);
}
.form-group label,
.form-group .form-control {
    font-size: 1.6rem;
}
.form-group .notification {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.form-group label {
    color: var(--secondary-dark);
}
.form-group .text-danger {
    color: var(--danger) !important;
}
.form-group.form-check {
    position: relative;
    padding-left: 3.5rem;
}
.form-group.form-check .form-check-input {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}
.form-group.form-check .form-check-label::before {
    content: "";
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.2rem;
    border: 0.2rem solid var(--checkbox-border);
}
.form-group.form-check .form-check-input[checked] + .form-check-label::after {
    content: "";
    position: absolute;
    height: 0.6rem;
    width: 1.4rem;
    transform: rotate(-45deg);
    top: 0.75rem;
    left: 0.45rem;
    border-left: 0.2rem solid var(--black);
    border-bottom: 0.2rem solid var(--black);
}

.form-group.form-check
    .form-check-input:not(:checked)
    + .form-check-label::after {
    display: none !important;
}

.form-group.form-check.form-check-light .form-check-label::before,
.form-group.form-check.form-check-light .form-check-label::after {
    border-color: var(--white) !important;
}
.form-group.mx-275 {
    max-width: 27.5rem;
}
.form-group.mx-465 {
    max-width: 46.5rem;
}
.form-group.mx-325 {
    max-width: 32.5rem;
}

.form-group.form-radio {
    position: relative;
    padding-left: 3.5rem;
}
.form-group.form-radio .form-radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form-group.form-radio .form-radio-label::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.3rem solid var(--checkbox-border);
}
.form-group.form-radio .form-radio-input:checked + .form-radio-label::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    height: 1.1rem;
    width: 1.1rem;
    top: 0.65rem;
    left: 0.65rem;
    background-color: var(--blue);
}
.form-group.form-radio .form-radio-input:checked + .form-radio-label::before {
    border-color: var(--blue);
}
.form-group.form-radio.form-radio-light .form-radio-label::before {
    border-color: var(--white) !important;
}
.form-group.form-radio.form-radio-light .form-radio-label::after {
    background-color: var(--white);
}
.form-group.form-radio.form-radio-light .form-radio-label::before {
    border-color: var(--white) !important;
}
.form-group.form-radio.form-radio-light .form-radio-label::after {
    background-color: var(--white);
}
.form-group select.form-control {
    appearance: none;
    -webkit-appearance: none;
}
.form-group select.form-control::-ms-expand {
    display: none;
}
.form-group select.form-control {
    background-image: url(../images/arrow-down-dark.svg);
    background-repeat: no-repeat;
    background-size: 2rem auto;
    background-position: center right 1.2rem;
    padding-right: 4rem;
}

/*Login*/
.login {
    display: flex;
    position: absolute;
    padding: 0 2rem;
    inset: 0;
    isolation: isolate;
    align-items: center;
}
.login::before {
    position: fixed;
    content: "";
    inset: 0;
    background-color: var(--login-base);
    z-index: -2;
}
.login::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    max-width: 69.7rem;
    width: 35%;
    aspect-ratio: 69.7/40.1;
    background: url(../images/new_login_bg.svg) bottom left no-repeat;
    background-size: 100%;
    z-index: -1;
}
.login-box {
    max-width: 35.7rem;
    padding: 5% 0;
    width: 100%;
}
.login-box-logo {
    margin-bottom: 5.4rem;
}
.login-box-logo img {
    max-width: 80%;
}
.login-box .form-group label {
    color: var(--white);
}
.login-box .login-box-form .form-group label,
.login-box .login-box-form .form-group .form-control {
    font-size: 1.5rem;
}
.login-box .login-box-form .form-group .form-control {
    height: calc(4.2rem + 0.2rem);
}

/*sidebar*/
.sidebar {
    background-color: var(--secondary);
    transition: var(--transition);
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    max-height: 100svh;
    overflow: auto;
    left: -30.6rem;
    width: 30.6rem;
    padding: 5rem 1.8rem;
    flex-grow: 0;
    flex-shrink: 0;
}
.sidebar .sidebar-logo {
    margin-bottom: 3.5rem;
}
.sidebar .sidebar-logo img {
    max-width: 60%;
}
.nav.sidebar-nav .nav-link {
    padding: 1rem 2.4rem 1rem 6.6rem;
    border-radius: 1.2rem;
    font-weight: normal;
    font-size: 1.6rem;
    position: relative;
    transition: var(--transition);
}
.nav.sidebar-nav .nav-link .nav-link-icon {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.nav.sidebar-nav .nav-link .nav-link-icon img {
    width: 2.4rem;
}
.nav.sidebar-nav > .nav-item:not(:last-child) {
    margin-bottom: 0.5rem;
}
.nav.sidebar-nav > .nav-item > .nav-link {
    font-size: 1.8rem;
    font-weight: 500;
}
.nav.sidebar-nav > .nav-item > .nav-link:hover,
.nav.sidebar-nav > .nav-item.active > .nav-link,
.nav.sidebar-nav > .nav-item.dropdown.show > .nav-link {
    color: var(--white);
    border-radius: 12px;
    background: linear-gradient(141deg, #cfd0f2 -101.42%, #454ade 79.63%);
}
.nav.sidebar-nav > .nav-item > .nav-link:not(:hover) {
    color: var(--white);
}
.nav.sidebar-nav > .nav-item.dropdown .dropdown-icon {
    position: absolute;
    right: 1.5rem;
    z-index: 1;
    top: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav.sidebar-nav .dropdown-menu {
    position: relative !important;
    background: transparent;
    padding: 0;
    border-width: 0;
    clear: both;
    transform: translate3d(0, 0, 0) !important;
}
.nav.sidebar-nav .dropdown-menu .nav-link:not(:hover) {
    color: var(--light-gray);
}
.nav.sidebar-nav .dropdown-menu .nav-item.active > .nav-link {
    color: #9396ed;
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-toggle::before {
    content: "";
    width: 1.6rem;
    height: 0.9rem;
    background: url(../images/arrow-down.svg) center center no-repeat;
    background-size: contain;
    display: block;
}
.dropdown:not(.show) .dropdown-toggle::before {
    transform: rotate(180deg);
}

/*main-content*/
.wrapper {
    display: flex;
    min-height: 100%;
    padding-top: 1.7rem;
    transition: var(--transition);
}

.main-content {
    padding: 10rem 2.4rem 7rem;
    max-width: 100%;
    z-index: 1;
    flex-grow: 1;
    transition: var(--transition);
    background: var(--base-bg);
}
.main-content .page-title {
    margin-bottom: 2.3rem;
}
h1,
.h1 {
    font-size: 3.2rem !important;
    font-weight: bold !important;
    margin-right: 2.5rem;
    color: var(--secondary);
}
.main-content .page-title p {
    font-size: 1.6rem;
    font-family: var(--form-font);
    width: 100%;
    color: var(--gray-800);
}
.main-content .page-title h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.main-content .card {
    border-radius: var(--card-radius);
    background: var(--white);
    font-size: 1.6rem;
    border-width: 0;
}
.main-content .card .card-body {
    padding: 2.4rem 1.5rem 2.4rem;
    position: relative;
}
.main-content .card .card-title {
    display: block;
    margin-bottom: 3rem;
    font-size: 20px;
    font-family: var(--base-font);
    font-weight: 700;
    color: var(--secondary-dark);
}
.mb-lg {
    margin-bottom: 6.4rem;
}
.main-content .card .card-title.large {
    font-size: 2.4rem;
}

/*add-event-type*/
.form-group .field-file {
    position: relative;
    display: block;
    clear: both;
}
.form-group .field-file .form-control {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
}
.form-group .field-file .category-image {
    aspect-ratio: 30.6/22.2;
    text-align: center;
    pointer-events: none;
    background-color: #d9d9d9;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-group .field-file .category-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0.5rem;
}
.form-group .field-file .category-image .no-img p {
    font-size: 1.6rem;
    font-family: var(--form-font);
    color: var(--gray-800);
}
.form-group .field-file .category-image.featured {
    border-radius: var(--field-radius);
}

/*my-account*/
.main-content .card:not(.tab-content) .card-body + .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    width: calc(100% - 3rem);
    height: 1px;
    background: var(--form-border);
}
.main-content .card .card-body:first-child .extra-padding {
    padding-top: 2.5rem;
}
.main-content .card .card-body:last-child .extra-padding {
    padding-bottom: 2.2rem;
}
.main-content .card .card-body .user-card {
    display: flex;
    align-items: center;
    margin-bottom: 3.2rem;
}
.main-content .card .card-body .profile-card {
    display: flex;
    align-items: center;
}
.main-content .card .card-body .user-img {
    aspect-ratio: 1/1;
    width: 52px;
    border: 2px solid var(--form-border);
    border-radius: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 1.6rem;
}
.main-content .card .card-body .user-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content .card .card-body .profile-img {
    aspect-ratio: 1/1;
    width: 32px;
    border: 2px solid var(--form-border);
    border-radius: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 1.6rem;
}
.main-content .card .card-body .profile-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content .card .card-body .user-detail {
    flex-grow: 1;
    color: var(--secondary-dark);
}
.main-content .card .card-body .user-detail h2 {
    text-transform: capitalize;
    font-size: 2.4rem;
    font-family: var(--base-font);
    font-weight: 600;
    margin-bottom: 0;
}
.main-content .card .card-body .user-detail p {
    font-size: 1.6rem;
}
.main-content .card .card-body .detail-list .detail-list-item {
    display: flex;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}
.main-content .card .card-body .detail-list .detail-list-item label {
    display: block;
    font-weight: bold;
    min-width: max-content;
    white-space: nowrap;
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 1.5rem;
}
.main-content .card .card-body .detail-list .detail-list-item span {
    display: block;
}
.main-content .card .card-body .detail-list .event-detail-event {
    color: #11b393 !important;
    display: flex;
    margin-bottom: 0rem;
    flex-wrap: wrap;
}
.main-content .card .card-body .detail-list .event-detail-list-item {
    display: flex;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}
.main-content .card .card-body .detail-list .event-detail-list-item label {
    display: block;
    font-weight: bold;
    min-width: max-content;
    white-space: nowrap;
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 1.5rem;
}
.main-content .card .card-body .detail-list .event-detail-list-item span {
    display: block;
}

.main-content .card .event-detail {
    border-radius: var(--card-radius);
    background: var(--white);
    font-size: 14px;
    border-width: 0;
    color: #666;
}
.main-content .card .card-body .add-stripe {
    color: var(--gray-800);
}
.main-content .card .card-body .remove-stripe {
    position: absolute;
    transition: var(--transition);
    border-radius: 1.5rem;
    border: 0.15rem solid currentColor;
    color: currentColor;
    top: 3.6rem;
    right: -2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-content .card .card-body .remove-stripe:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}
.custom-pr-4 {
    padding-right: 4rem;
}

.event-title-col {
    color: #11b393 !important;
}

/*create event*/
.form-group .timemm {
    position: relative;
}
.form-group .timemm::before {
    content: ":";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
.form-group .form-radio.form-radio-time {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}
.form-group .form-radio.form-radio-time .form-radio-input {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}
.form-group .form-radio.form-radio-time .form-radio-label {
    position: absolute;
    cursor: pointer;
    color: var(--placeholder);
    margin: 0;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-group
    .form-radio.form-radio-time
    .form-radio-input:checked
    + .form-radio-label {
    background: var(--primary);
    color: var(--white);
}
.form-row.days {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
}
.form-group.form-check.form-check-days {
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 0;
}
.form-group.form-check.form-check-days .form-check-label {
    display: flex;
    cursor: pointer;
    border: 0;
    color: #1C1E24;
    border-radius: 50%;
    width: 5.4rem;
    height: 5.4rem;
    align-items: center;
    justify-content: center;
    background-color: #F1F1F1;
}
.form-group.form-check.form-check-days .form-check-label::before,
.form-group.form-check.form-check-days .form-check-label::after {
    display: none;
}
.form-group.form-check.form-check-days
    .form-check-input:checked
    + .form-check-label {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.form-group .price-text {
    font-size: 2.4rem;
    line-height: 1;
    color: var(--primary);
}
.form-group .price-text small {
    font-weight: normal;
    font-size: 1.6rem;
    display: inline-block;
}
.form-sections {
    border-bottom: 0.123rem solid var(--form-border);
}
.form-group.gallery-images {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}
.form-group.gallery-images .field-file {
    max-width: 100%;
}
.form-group.gallery-images .field-file .category-image.gallery {
    aspect-ratio: 1/1;
    border-radius: var(--field-radius);
    max-width: 100%;
    color: var(--gray-800);
}
.form-group.gallery-images .added-images {
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #d9d9d9;
    border-radius: var(--field-radius);
    max-width: 100%;
    color: var(--gray-800);
}
.form-group.gallery-images .added-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-group.form-check .form-check-input:checked + .form-check-label::after {
    content: "";
    position: absolute;
    height: 0.6rem;
    width: 1.4rem;
    transform: rotate(-45deg);
    top: 0.75rem;
    left: 0.45rem;
    border-left: 0.2rem solid var(--black);
    border-bottom: 0.2rem solid var(--black);
}
/*mobile sidebar*/
.navbar {
    position: fixed;
    top: 0;
    transition: var(--transition);
    z-index: 10;
    width: 100%;
    padding: 1rem 2.4rem;
    background-color: var(--secondary);
}
.navbar .menu-toggler {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--white);
}
html.open-navbar .navbar .menu-toggler {
    color: var(--primary);
    left: -45px;
    background: var(--secondary);
    border-radius: var(--field-radius);
}
html.open-navbar .navbar .menu-toggler .hamburger,
html:not(.open-navbar) .navbar .menu-toggler .cross {
    display: none;
}
html.open-navbar .wrapper,
html.open-navbar .navbar {
    transform: translate3d(30rem, 0, 0);
}
.sidebar-mob-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    height: 100svh;
    z-index: 9;
    cursor: pointer;
    background-color: var(--black);
    opacity: 0.5;
}
html.open-navbar .sidebar-mob-overlay {
    display: block;
}

/*my events*/
.form-group.filter-by.select {
    position: relative;
}
.form-group.filter-by.select::before {
    content: "Filter by ";
    pointer-events: none;
    position: absolute;
    color: var(--placeholder);
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}
.form-group.filter-by.select select.form-control {
    padding-left: 7.8rem;
    color: var(--placeholder);
}
.form-group.filter-by.select select.form-control {
    background-image: url(../images/filter-arrow-down.svg);
    background-size: 1.5rem auto;
}
.form-control.form-control-sm {
    height: 4rem;
}
.form-group.filter-btn .btn {
    min-width: inherit;
    height: 4rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.form-group.filter-by.search .form-control {
    padding-left: 5rem;
    background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    background-position: center left 1.2rem;
    background-size: 2.4rem auto;
}
.nav-tabs .nav-link {
    padding: 1.1rem 3.3rem;
    color: var(--gray-700);
    font-size: 1.4rem;
    border-width: 0;
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--secondary);
    color: var(--white);
}

/*tables*/
.table th,
.table td {
    font-size: 14px;
    font-weight: 700 !important;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}
.table thead th {
    border-width: 0;
    font-weight: 600;
    vertical-align: middle;
}
.table thead th {
    min-width: 12rem;
}
.table th {
    min-width: 10rem;
    padding-top: 0;
    color: var(--secondary-dark);
}

.table td {
    font-weight: 500;
    vertical-align: middle;
    color: var(--black);
}
.ticket_table .table td:first-child {
    padding-left: 2rem;
    width: 58px ;
}
.table-hover tbody tr:hover {
    background-color: var(--table-hover);
}
.table td span.event-time {
    font-size: 1.3rem;
}
.table td .event-action {
    display: inline-grid;
    align-items: center;
    width: max-content;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.7rem;
}
.table td .event-action .circle-btn {
    aspect-ratio: 1/1;
    transition: var(--transition);
    width: 3rem;
    padding-left: 0.2rem;
    background-color: #fff;
    padding-right: 0.2rem;
    border: 0.2rem solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table td .event-action .circle-btn.view {
    background-color: var(--gray-800);
    border-color: var(--gray-800);
    color: var(--white);
}
.table td .event-action .circle-btn.view:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.table td .event-action .circle-btn.edit {
    border-color: var(--secondary);
    color: var(--secondary);
}
.table td .event-action .circle-btn.edit:hover {
    background-color: var(--secondary);
    color: var(--white);
}
.table td .event-action .circle-btn.delete {
    border-color: #8b8b8b;
    color: var(--secondary);
}
.table td .event-action .circle-btn.delete:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1043;
    right: 0;
    bottom: 0;
    display: flex;
    background: rgb(0 0 0 / 30%);
}

.logout-modal .logout-modal-inner {
    margin: auto;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 18px 50px 0px rgba(0, 0, 0, 0.25);
    max-width: min(90%, 500px);
}

.logout-modal .logout-modal-inner .logout-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5rem;
}

.logout-modal .logout-modal-inner .logout-modal-body h3 {
    font-size: 20px;
}

.logout-modal .logout-modal-inner .btn-group-inline {
    justify-content: center;
}

.logout-modal .logout-modal-inner .btn-group-inline .btn {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/*responsive*/
@media (min-width: 375px) {
    html.open-navbar .navbar .menu-toggler {
        left: inherit;
    }
}
@media (min-width: 576px) {
    .w-sm-auto {
        width: auto !important;
    }
    .main-content .card.tab-content {
        border-top-left-radius: 0;
    }
    .main-content .card .card-body .extra-padding {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }
}
@media (min-width: 768px) {
    .main-content .card .card-body {
        padding: 3.3rem 2.6rem 2.4rem;
    }
    .main-content .card:not(.tab-content) .card-body + .card-body::before {
        width: calc(100% - 5.2rem);
    }
    .form-row.days {
        width: 161%;
    }
    .btn-group-inline .btn {
        width: auto;
    }
    .w-md-auto {
        width: auto !important;
    }
    .main-content
        .card
        .card-body
        .detail-list
        .detail-list-item
        span:not(.event-price-text) {
        width: calc(70% - 1.5rem);
    }
}
@media (min-width: 992px) {
    .w-lg-auto {
        width: auto !important;
    }

    /*gutters*/
    .login-box-logo img {
        max-width: 100%;
    }
    .gutters-24 {
        margin-right: -2rem;
        margin-left: -2rem;
    }
    .gutters-24 > .col,
    .gutters-24 > [class*="col-"] {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    .gutters-40 {
        margin-right: -3rem;
        margin-left: -3rem;
    }
    .gutters-40 > .col,
    .gutters-40 > [class*="col-"] {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    /*sidebar*/
    .navbar {
        display: none;
    }
    .wrapper {
        padding-top: 0;
    }
    .sidebar {
        position: relative;
        left: 0;
        max-height: inherit;
    }
    html.open-navbar,
    html.open-navbar body {
        overflow: initial !important;
    }
    html.open-navbar .sidebar-mob-overlay {
        display: none !important;
    }
    html.open-navbar .wrapper,
    html.open-navbar .navbar {
        transform: translate3d(0, 0, 0);
    }
    .nav.sidebar-nav .nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .nav.sidebar-nav .nav-link {
        font-size: 2rem;
    }
    .nav.sidebar-nav .nav-link .nav-link-icon img {
        width: 3rem;
    }
    .nav.sidebar-nav > .nav-item > .nav-link {
        font-size: 2.2rem;
    }
    .sidebar .sidebar-logo {
        margin-bottom: 6.4rem;
    }
    .sidebar .sidebar-logo img {
        max-width: 80%;
    }
    .nav.sidebar-nav > .nav-item.dropdown .dropdown-icon {
        top: 1.5rem;
    }
    .main-content {
        max-width: calc(100% - 30.6rem);
    }
}
@media (min-width: 1024px) {
    .main-content .card .card-body .detail-list .detail-list-item label {
        width: 30%;
    }
}
@media (min-width: 1200px) {
    .main-content .main-content-inner {
        width: 97%;
    }
    .gutters-24 {
        margin-right: -2.4rem;
        margin-left: -2.4rem;
    }
    .gutters-24 > .col,
    .gutters-24 > [class*="col-"] {
        padding-right: 2.4rem;
        padding-left: 2.4rem;
    }
    .gutters-40 {
        margin-right: -4rem;
        margin-left: -4rem;
    }
    .gutters-40 > .col,
    .gutters-40 > [class*="col-"] {
        padding-right: 4rem;
        padding-left: 4rem;
    }
    .gutters-55 {
        margin-right: -4rem;
        margin-left: -4rem;
    }
    .gutters-55 > .col,
    .gutters-55 > [class*="col-"] {
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .w-xl-auto {
        width: auto !important;
    }
}
@media (min-width: 1350px) {
    .gutters-55 {
        margin-right: -5.5rem;
        margin-left: -5.5rem;
    }
    .gutters-55 > .col,
    .gutters-55 > [class*="col-"] {
        padding-right: 5.5rem;
        padding-left: 5.5rem;
    }
}

@media (max-width: 767px) {
    /*tables*/
    .table.responsive thead,
    .table.responsive tr:not(:hover):nth-of-type(2n) {
        background-color: var(--base-bg);
    }
    .table.responsive th {
        display: none;
    }
    .table.responsive td {
        display: grid;
        grid-template-columns: 15ch auto;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        border-width: 0;
        padding-right: 5.5rem;
    }
    .table.responsive td:first-child {
        padding-top: 2rem;
    }
    .table.responsive td:last-child {
        padding-bottom: 2rem;
        grid-template-columns: 1fr;
    }
    .table.responsive tr {
        position: relative;
    }
    .table td .event-action {
        position: absolute;
        row-gap: 0.7rem;
        grid-template-columns: 1fr;
        right: 1.2rem;
        top: 1.2rem;
    }
    .table.responsive td:last-child::before {
        display: none;
    }
    .table.responsive td::before {
        content: attr(data-cell);
    }
    .table.responsive td:not(.text-primary)::before {
        color: var(--black);
    }
}
@media (max-width: 575px) {
    .nav.nav-tabs {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        margin-bottom: 1.5rem;
    }
    .nav.nav-tabs .nav-link {
        text-align: center;
        border-radius: var(--field-radius);
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .nav.nav-tabs .nav-link:not(.active) {
        background: #fff;
    }
}
@media (max-width: 374px) {
    .table.responsive td {
        grid-template-columns: 1fr;
    }
    .table.responsive td::before {
        border-bottom: 1px solid var(--form-border);
    }
}
.table td {
    border-bottom: 1px solid #dee2e6;
}
td.active.day {
    background-color: red !important;
    background-image: none !important;
}
.table td p {
    font-size: 14px;
    font-weight: normal;
}
p.text-name {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
}
p .text-email {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
}
label.text {
    color: #4a5968;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600 !important;
}
label.user-key {
    color: #27324c;
    font-family: DM Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
div#address-map {
    border-radius: 10px;
}
.login-text {
    color: #fff !important;
    font-family: DM Sans;
    font-size: 19.821px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.nav.sidebar-nav .dropdown-toggle::before {
    display: none;
}
.nav.sidebar-nav .dropdown-toggle + .dropdown-icon::before {
    content: "";
    width: 1.6rem;
    height: 0.9rem;
    background: url(../images/arrow-down.svg) center center no-repeat;
    background-size: contain;
    display: block;
}
.nav.sidebar-nav
    .dropdown:not(.show)
    .dropdown-toggle
    + .dropdown-icon::before {
    transform: rotate(180deg);
}
/*! 
 *  Multiple select dropdown with filter jQuery plugin.
 *  Copyright (C) 2022  Andrew Wagner  github.com/andreww1011
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 * 
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 * 
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 *  USA
 */
:root {
    --fms-badge-text-color: white;
    --fms-badge-color: var(--primary);
}

.filter-multi-select.dropup,
.filter-multi-select.dropdown {
    position: relative;
}

.filter-multi-select .dropdown-toggle::after {
    all: unset;
}

.filter-multi-select .dropdown-toggle:empty::after {
    all: unset;
}

.filter-multi-select > .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.filter-multi-select > .dropdown-toggle:empty::before {
    margin-right: 0.255em;
}

.filter-multi-select > .viewbar {
    white-space: normal;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
}

.filter-multi-select > .viewbar > .selected-items > .item {
    margin: 0.125rem 0.25rem 0.125rem 0;
    padding: 0px 0px 0px 0.5em;
    display: inline-flex;
    height: 1.875em;
    color: var(--fms-badge-text-color);
    background-color: var(--fms-badge-color);
    border-radius: 1.1em;
    align-items: center;
    vertical-align: baseline;
}

.filter-multi-select > .viewbar > .selected-items > .item > button {
    background-color: transparent;
    color: var(--fms-badge-text-color);
    border: 0;
    font-weight: 900;
    cursor: pointer;
}

.filter-multi-select > .viewbar > .selected-items > .item > button:hover {
    filter: contrast(50%);
}

.filter-multi-select > .viewbar > .selected-items > .item.disabled {
    display: inline-flex;
    padding: 0px 0.5em 0px 0.5em;
    filter: grayscale(80%) brightness(150%);
}

.filter-multi-select > .viewbar > .selected-items > .item.disabled > button {
    display: none;
}

.filter-multi-select > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    z-index: 1000;
    display: none;
    float: left;
    max-height: 50vh;
    min-width: 10rem;
    overflow-y: auto;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.875rem;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.filter-multi-select > .dropdown-menu.show {
    display: block;
}

.filter-multi-select > .dropdown-menu > .filter > input {
    font-size: 0.875rem;
}

.filter-multi-select > .dropdown-menu > .filter > button {
    position: absolute;
    border: 0;
    background-color: transparent;
    font-weight: 900;
    color: #ccc;
    right: 2rem;
    top: 1rem;
}

.filter-multi-select > .dropdown-menu > .filter > button:hover {
    color: #aaa;
}

.filter-multi-select .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.filter-multi-select .dropdown-item.disabled,
.filter-multi-select .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

.filter-multi-select .dropdown-item:hover,
.filter-multi-select .dropdown-item:focus {
    background-color: inherit;
}

.filter-multi-select .dropdown-item.active,
.filter-multi-select .dropdown-item:active {
    color: inherit;
}

.filter-multi-select .dropdown-item .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.filter-multi-select .dropdown-item .custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    display: inline-block;
}

.filter-multi-select .dropdown-item .custom-control-label::before {
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    position: absolute;
    top: 0.15625rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #ffffff;
    border: #adb5bd solid 1px;
}

.filter-multi-select .dropdown-item .custom-control-label::after {
    position: absolute;
    top: 0.15625rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%;
}

.filter-multi-select
    .dropdown-item
    .custom-checkbox:checked
    ~ .custom-control-label::before,
.filter-multi-select
    .dropdown-item
    .custom-checkbox:indeterminate
    ~ .custom-control-label::before {
    border-color: var(--fms-badge-color);
    background-color: var(--fms-badge-color);
}

.filter-multi-select
    .dropdown-item
    .custom-checkbox:checked:disabled
    ~ .custom-control-label::before,
.filter-multi-select
    .dropdown-item
    .custom-checkbox:indeterminate:disabled
    ~ .custom-control-label::before {
    border-color: var(--fms-badge-color);
    background-color: var(--fms-badge-color);
    filter: grayscale(80%) brightness(150%);
}

.filter-multi-select
    .dropdown-item
    .custom-checkbox:checked
    ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23FFFFFF' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.filter-multi-select
    .dropdown-item
    .custom-checkbox:indeterminate
    ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23FFFFFF' d='M0 2h4'/%3e%3c/svg%3e");
}
select.form-control:not([size]):not([multiple]) {
    height: calc(4.3rem + 0.2rem) !important;
}
.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
    font-size: 14px;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #fff !important;
    border-color: var(--form-border) !important;
}
button.btn.dropdown-toggle.btn-light {
    border-color: var(--form-border) !important;
    max-width: 100%;
}
.form-group.form-radio .form-radio-input:focus + .form-radio-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
    color: #000;
    font-weight: 100;
}
.search-close {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
option {
    color: #000;
}
button.btn.dropdown-toggle.btn-light {
    border-width: 1px;
    background: #fff;
    outline: 0;
}
button.btn.dropdown-toggle.bs-placeholder.btn-light:focus {
    border-color: #80bdff !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}
.bootstrap-select .dropdown-toggle::before {
    width: 1rem;
}
.bootstrap-select .dropdown-toggle::after {
    display: none !important;
}
.mx-325 {
    max-width: 32.5rem;
}
/* .edit_dropdown{padding-left: 0.8rem;}
.edit_dropdown::before{display: none;}
.dropdown-menu .dropdown-item{font-size: 14px;color:#000;}
.dropdown-item:hover{border-left: 2px solid #27324C;background: #EFF1F3;}
.dropdown-menu.text{box-shadow: 0 4px 18px 0 rgb(0 0 0 / 15%);border: none;}
.datepicker td,.datepicker th,.datepicker-days{padding: 7px 12px;}
.datepicker table tr td.active{ background: #F04D23 !important;border-radius: 50%; padding: 8px 6px;}
.datepicker th,dow{font-size: 10px;color:#B5BEC6;font-weight:semibold;}
.datepicker td.day{font-size:16px;color:#4A5660;font-weight:light;}
.datepicker .datepicker-switch{color:#4A5660;font-size: 14px;font-weight: semibold;}
.datepicker td.old,.datepicker td.new{display: none;}
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {border-radius: 50%;} */

.edit_dropdown {
    padding-left: 0.8rem;
}
.edit_dropdown::before {
    display: none;
}
.dropdown-menu .dropdown-item {
    font-size: 14px;
    color: #000;
}
.dropdown-item:hover {
    border-left: 2px solid #27324c;
    background: #eff1f3;
}
.dropdown-menu.text {
    box-shadow: 0 4px 18px 0 rgb(0 0 0 / 15%);
    border: none;
}
.datepicker td,
.datepicker th,
.datepicker-days {
    padding: 7px 12px;
}
.datepicker table tr td.active {
    background: #f04d23 !important;
    border-radius: 50%;
    padding: 8px 6px;
}
.datepicker th,
dow {
    font-size: 10px;
    color: #b5bec6;
    font-weight: semibold;
}
.datepicker td.day {
    font-size: 16px;
    color: #4a5660;
    font-weight: light;
}
.datepicker .datepicker-switch {
    color: #4a5660;
    font-size: 14px;
    font-weight: semibold;
}
.datepicker td.new {
    display: none;
}
.datepicker table tr td.day.focused,
.datepicker table tr td.day:hover {
    border-radius: 50%;
}
.datepicker td.old {
    font-size: 12px;
    color: #b5bec6;
}
.forgot-title {
    color: var(--Lighter-grey, #e3eaf2);
    font-family: DM Sans;
    font-size: 40px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 113.925%; /* 45.57px */
}
.forgot-text {
    color: var(--Columbia-Blue, #c3d0d8);
    font-family: DM Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 24px;
}
.user_name {
    color: #3983c7;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}
.user-profile {
    display: block !important;
}
.user-profile-label {
    color: #4a5968;

    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
}
.label-text {
    color: #4a5968;

    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.circle-btn.edit {
    border-color: var(--secondary);
    color: var(--secondary);
    background: var(--white);
}
.circle-btn {
    aspect-ratio: 1/1;
    transition: var(--transition);
    width: 3rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    border: 0.2rem solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader {
    background: rgba(0, 0, 0, 0.75) url(../images/loader.webp) no-repeat center
        center;
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: 10000;
}
.loader-section{
    background: rgba(0, 0, 0, 0.75) center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: 10000;
}
.loader-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.loader-overlay img{
    width: 50px;
}
.otp__digit,
.otp__digit:focus {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 15% !important;
    color: #fff;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input-fields {
    justify-content: center;
    align-items: flex-start;
}
.confirm-image::before {
    background: url(../images/bg.svg);
}
.myaccount_page .main-content .main-content-inner .card .card-body .gray_bg {
    background: #f0f5fa;
    border-radius: 8px;
    padding: 2.5rem;
    padding-right: 4rem;
}
.myaccount_page
    .main-content
    .main-content-inner
    .card
    .card-body:first-child
    .gray_bg {
    border: 1px solid #000;
}
.myaccount_page .main-content .card .card-body .user-card,
.myaccount_page .main-content .card .card-body .detail-list .detail-list-item {
    margin-bottom: 1rem;
}
.myaccount_page
    .main-content
    .card:not(.tab-content)
    .card-body
    + .card-body::before {
    display: none;
}
.myaccount_page .main-content .card .card-body:first-child {
    padding: 0rem 2.6rem 0;
}
.myaccount_page .main-content .card .card-body {
    padding: 1rem 2.6rem 0;
}
.myaccount_page .gutters-24 > .col,
.gutters-24 > [class*="col-"] {
    padding: 0px 0.5rem;
}
.myaccount_page .main-content .card {
    padding: 24px 15px;
}
.myaccount_page .main-content .card .card-title.large {
    color: #001720;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.8rem;
}
.myaccount_page .main-content .card .card-body .user-detail h2 {
    color: #001720;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.myaccount_page .main-content .card .card-body .user-detail p,
.myaccount_page
    .main-content
    .card
    .card-body
    .detail-list
    .detail-list-item
    label,
.myaccount_page
    .main-content
    .card
    .card-body
    .detail-list
    .detail-list-item
    span,
.myaccount_page .main-content .card .info_boxes p {
    color: #001720;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.myaccount_page
    .main-content
    .card
    .card-body
    .detail-list
    .detail-list-item
    label {
    width: 10%;
    color: #0f2630;
    font-weight: 600;
}
.myaccount_page
    .main-content
    .card
    .card-body
    .detail-list
    .detail-list-item
    span {
    color: #0f2630;
    font-weight: 400;
}
.myaccount_page .main-content .card .info_boxes .card-title {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #0f2630;
}
.myaccount_page .main-content .card .info_boxes p {
    color: #8b8b8b;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.myaccount_page .main-content .card .info_boxes .form-group label {
    color: #0f2630;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
}
.myaccount_page .main-content .card .info_boxes .form-group .form-control {
    background: transparent;
    margin-bottom: 1.8rem;
    color: #0f2630 !important;
}
.myaccount_page
    .main-content
    .card
    .info_boxes
    .form-group
    .form-control::placeholder {
    color: #495057 !important;
}
.myaccount_page .main-content .card .info_boxes .update_btn {
    display: flex;
    max-width: 200px;
    width: 100%;
    height: 45px;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: linear-gradient(141deg, #cfd0f2 -101.42%, #454ade 79.63%),
        linear-gradient(180deg, #455ade 0%, rgba(69, 74, 222, 0) 100%);
    color: #e3eaf2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    transition: all ease-in-out 3s;
}
.myaccount_page .main-content .card .info_boxes .update_btn:hover,
.myaccount_page .btn-gradient:hover {
    background: linear-gradient(180deg, #455ade 0%, rgba(69, 74, 222, 0) 100%),
        linear-gradient(141deg, #cfd0f2 -101.42%, #454ade 79.63%);
}

.myaccount_page .main-content .card .card-body.Stripe_card_body {
    padding: 0 2rem;
}
.myaccount_page .col-padding {
    margin-top: 1.4rem;
}
.myaccount_page .col-padding .col-6 {
    padding: 0 2.6rem;
    padding-right: 0px;
}
.myaccount_page .col-padding .col-6 .form-group input {
    max-width: 640px;
    width: 100%;
}
.myaccount_page .btn-gradient {
    background: linear-gradient(141deg, #cfd0f2 -101.42%, #454ade 79.63%),
        linear-gradient(180deg, #455ade 0%, rgba(69, 74, 222, 0) 100%);
    color: #e3eaf2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4.3rem;
}

#success-message {
    display: none;
}
.login-box-form .form-group.form-check .form-check-label {
    font-size: 1.6rem;
}
.login-box-form .form-group.form-check .form-check-label::before {
    width: 2.3rem;
    height: 2.3rem;
}
.login-box .login-box-form .form-group .form-control.otp__digit {
    width: 45px !important;
}
#set-password .login-box-logo {
    margin-bottom: 5rem;
}
#set-password .login-box-form .btn-primary {
    margin-top: 15px;
}
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: DM Sans;
}
.wrapper.login.confirm-image:after {
    background: url(../images/dark-vector.svg) bottom left no-repeat;
    background-size: 100%;
}
.sidebar {
    background: #001720;
}

/* new css */
.user_table .table td:first-child {
    padding-left: 1.2rem;
}
.main-content
    .card
    .card-body
    .detail-list.user_detail_section
    .detail-list-item
    label {
    padding-bottom: 1.6rem;
}
.m_10 {
    margin-bottom: 10px;
}

.nav.sidebar-nav > .nav-item {
    position: relative;
}
.nav.sidebar-nav > .nav-item .dropdown-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    transition: all 0.4s ease;
}
.nav.sidebar-nav > .nav-item.show .dropdown-toggle {
    transform: rotate(-180deg);
}
/*popup modal css*/
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1043;
    right: 0;
    bottom: 0;
    display: flex;
    background: rgb(0 0 0 / 30%);
}


.custom-modal .custom-modal-inner {
    margin: auto;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 18px 50px 0px rgba(0, 0, 0, 0.25);
    max-width: min(90%, 500px);
}

.custom-modal .custom-modal-inner .custom-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5rem;
}

.custom-modal .custom-modal-inner .custom-modal-body h3 {
    font-size: 20px;
}

.custom-modal .custom-modal-inner .btn-group-inline {
    justify-content: center;
}

.custom-modal .custom-modal-inner .btn-group-inline .btn {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.ticket_margin_right{margin-right: 37rem;}


/*create-event-single-event page css start*/
#regForm {
    margin: 100px auto;
  }
  /* .step{
      color: #9396ED;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal; 
      position: relative;
      width: 25%;
  }
  .step:before {
    content:'';
    height:20px;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: #9396ED;
    border-radius: 50%;
    border:1px solid #454ADE;
    margin: 0 auto 5px auto;
    position: absolute;
    left: 47%;
    top: 26px;
  }
  .step:after
  {
    content: '';
    width: 100%;
    height: 2px;
    background: #9396ED;
    position: absolute;
    left: -50%;
    top: 36px;
    z-index: -1;
  }
  .step.active {
      color: #454ADE;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal; 
  }
  .step:first-child:after {
     content: none;
  }
  .step.active:before,
  .step.active:after {
     background: #454ADE;
     color: #454ADE;
  }
  
  .step.finish {
     background-color: #454ADE;
  } */
  .tab {
     display: none;
  }
  .create-event.create_event_single_event .page-title h1,
  .create-event.create_event_single_event .card .card-title
  {
      color: #001720  ;
      font-family: Inter;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
  }
  .btn_secondary,
  #nextBtn, #prevBtn, #eventSaveBtn, .btn_primary
  {
      display: flex;
      min-width: 130px;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      border: 1px solid #626CBC;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      color: #454ADE;
      padding: 12px 16px;
      margin-right: 10px; 
      cursor: pointer;
      background: transparent;
  }

  .btn_primary:disabled, .btn_primary:disabled:hover {
    background: linear-gradient(141deg, #CFD0F2 -101.42%, #454ADE 79.63%), linear-gradient(180deg, #455ADE 0%, rgba(69, 74, 222, 0.00) 100%);
    opacity: 0.5;
    color: #fff;
    cursor: not-allowed;
  }


  #cancel_event_top
  {
      border: 1px solid #FC5959;
      color: #FC5959;
  }
  .btn_secondary:hover, .btn_primary,
  #nextBtn, #prevBtn, #eventSaveBtn
  {
      background: linear-gradient(141deg, #CFD0F2 -101.42%, #454ADE 79.63%), linear-gradient(180deg, #455ADE 0%, rgba(69, 74, 222, 0.00) 100%);
      color: #fff;
  }
  #nextBtn:hover, #prevBtn:hover, .btn_primary:hover
  {
      background: transparent;
      color: #454ADE;
  }
  #cancel_event_top:hover
  {
      background: #FC5959;
      color: #FFF;
  }
  #nextBtn{margin-right: 0px;}
  .create-event.create_event_single_event .card .right_content .card-title
  {
      color: #001720;
      font-family: Inter;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
  }
  .create-event.create_event_single_event .form-group
  {
      margin-bottom: 20px;
  }
  .create-event.create_event_single_event .form-group label,
  .create-event.create_event_single_event .form-group .form-control 
  {
      color:#001720;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
  }
  .create-event.create_event_single_event .form-group .form-control 
  {
      border: 1px solid #B1BAC2; 
      padding: 12px; 
      border-radius: 0.5rem; 
  }
  .create-event.create_event_single_event .form-group .form-control::placeholder,
  .event_details .search_row .form-group .form-control::placeholder,
  .notification_centre.my_events_page .form-group.filter-by.select select.Organization_filter option,
  .create-event.create_event_single_event .date::placeholder
  {
      color: #8B99A5;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
  }
  .create-event.create_event_single_event .form-group .form-control:focus
  {
      outline: none;
      border: 1px solid #454ADE;
      box-shadow: none;
  }
  .create-event.create_event_single_event .form-group #event-description
  {
      max-height: 128px;
  }
  .create-event.create_event_single_event .form-group #Important_Info
  {
      max-height: 88px;
  }
  .create-event.create_event_single_event .right_content .form-group .field-file .category-image {
      height: 220px;
      max-width: 220px;
  }
  .create-event.create_event_single_event .right_content .form-group .field-file .category-image.gallery,
  .create-event.create_event_single_event .right_content .form-group.gallery-images .added-images
  {
      max-height: 70px;
      min-width: 70px;
  }
  .create-event.create_event_single_event .card .advance_setting .card-title span
  {
      margin-left: 10px;
  }
  .create-event.create_event_single_event .card .advance_setting .card-title
  {
      color: #001720;
      font-family: Inter;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
  }
  .create-event.create_event_single_event .card .advance_setting .add_promter_btn_div .btn_secondary
  {
      max-width: 217px;
      width: 100%;
  }
  .create-event.create_event_single_event .btn_secondary span
  {
      margin-right: 10px;
  }
  .create-event.create_event_single_event .card .advance_setting .btn_secondary:hover span img,
  .create-event.create_event_single_event .add_date .gradient_btn span img,
  .create-event.create_event_single_event .add_more_ticket_btn:hover span img
  {
      filter: brightness(0) invert(1);
  }
  .create-event.create_event_single_event .card .category-btns .btn_secondary.full_bg
  {
      background: linear-gradient(141deg, #CFD0F2 -101.42%, #454ADE 79.63%), linear-gradient(180deg, #455ADE 0%, rgba(69, 74, 222, 0.00) 100%);
      color: #fff;
  }
  .create-event.create_event_single_event .card .category-btns .btn_secondary
  {
      max-width:98px;
      font-weight: 700;
  }
  .create-event.create_event_single_event .card  .grey_text
  {
      color: #8B8B8B;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
  }
  
  .create-event.create_event_single_event .mood_links ul
  {
      list-style: none;
      gap: 8px;
      padding: 0;
  }
  .create-event.create_event_single_event .mood_links ul li
  {
      list-style: none;
      margin-bottom: 10px;
  }
  .create-event.create_event_single_event .mood_links ul li a
  {
      padding: 4px 23px;
      gap: 10px;
      border-radius: 24px;
      border: 1px solid var(--Iris-Blue, #454ADE); 
      color: #454ADE;
      font-family: "DM Sans";
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }
  .create-event.create_event_single_event .mood_links ul li a span
  {
      margin-right: 10px;
  }
  .create-event.create_event_single_event .mood_links ul li a span img
  {
      margin-top: -3px;
  
  }
  .create-event.create_event_single_event #regForm .tab .form-group.gallery-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .create-event.create_event_single_event #regForm .tab .category-btns
  {
      gap: 1rem;
  }
  .create-event.create_event_single_event .date-container {
    position: relative;
  }
  .create-event.create_event_single_event .date-container .date-text {
    position: absolute;
    top: 10px;
    left: 12px;
    color: #aaa;
  }
  .create-event.create_event_single_event .date-container .date-icon {
    position: absolute;
    top: 12px;
    right: 14px;
    /* pointer-events: none; */
    cursor: pointer;
    color: #aaa;
  }
  .create-event.create_event_single_event .date {
    width: 100%;
    outline: none;
    cursor: pointer;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #B1BAC2;
    padding: 12px;
    border-radius: 6px;
    height: calc(4.3rem + 0.2rem);
    background: url(../images/calen.svg) 94% center no-repeat;
  }
  .create-event.create_event_single_event .disable_input .date {
    background: url(../images/gray.svg) 94% center no-repeat;
  }
  .create-event.create_event_single_event .date:focus {
    outline: none;
    border: 1px solid #454ADE;
    box-shadow: none;
  }
  .create-event.create_event_single_event .form-group.form-check {
    position: relative;
    padding-left: 0;
  }
  .create-event.create_event_single_event .form-group .Recurring_label,
  .create-event.create_event_single_event .form-group .free-ticket
  {
      position: relative;
      padding-left: 34px;
  }
  .create-event.create_event_single_event .form-group select#event-repeats-on {
    background-image: none;
  }
  .create-event.create_event_single_event .add_date .gradient_btn
  {
      background: linear-gradient(141deg, #CFD0F2 -101.42%, #454ADE 79.63%), linear-gradient(180deg, #455ADE 0%, rgba(69, 74, 222, 0.00) 100%);
      color: #fff;
  }
  .create-event.create_event_single_event .add_date .gradient_btn:hover
  {
      color: #454ADE;
      background: #fff;
  }
  .create-event.create_event_single_event .add_date .gradient_btn:hover span img
  {
    filter: brightness(1) invert(0);
  }
  .create-event.create_event_single_event .form-group .price-text {
    margin-top: 17px;
  }
  .create-event.create_event_single_event .card .card-title.form_inner_heading
  {
      color: #001720;
      font-family: Inter;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      margin-bottom: 1.5rem;
  }
  .create-event.create_event_single_event .form-group label span
  {
      color:#454ADE;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }
  #featured-image{max-width: 220px;}
  .save_btn .save_gradient_btn,
  .export_list_btn .gradient_btn
  {
      display: flex;
      max-width: 319px;
      padding: 12px 16px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 24px;
      color: #fff;
      border: 1px solid #454ADE;
      background: linear-gradient(141deg, #CFD0F2 -101.42%, #454ADE 79.63%), linear-gradient(180deg, #455ADE 0%, rgba(69, 74, 222, 0.00) 100%);
      cursor: pointer;
      width: 100%;
  }
  .save_btn .save_gradient_btn:hover
  {
      color: #454ADE;
      background: #fff;
  }
  .create-event.create_event_single_event .add_more_ticket_btn
  {
     max-width: 259px;
    margin-left: auto;
  }
  .light_green
  {
      border-radius: 6px;
      background: #D4EDDA;
      padding: 15px 16px; 
      position: relative;
  }
  .light_green span
  {
      position: absolute;
      top: 13px;
  }
  .light_green p
  {
      color: #155724;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      margin-left: 40px;
  }

  .label_img details[data-popover] {
    display: inline;
    position: relative;
  }
  .label_img details[data-popover] > summary:focus {
    outline: none;
  }
  .label_img details[data-popover] > summary::-webkit-details-marker {
    display: none;
  }
  .label_img details[data-popover] > summary {
    list-style: none;
    text-decoration: underline dotted teal;
  }
.label_img details[data-popover] > summary + * {
    position: absolute;
    display: block;
    z-index: 1;
    width: 290px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    background: #001720;
  }
  .label_img details[data-popover="right"] > summary + * {
    left: calc(1rem + 100%);
    bottom: 80%;
    transform: translateY(50%);
  }
  .label_img details div p
  {
    font-size: 1.2rem;
    color: #fff;
  }
  .ticket_table
{
    padding-bottom: 50px;
}
  .ticket_table .table 
  {
      margin-bottom: 0;
      border-collapse: separate;
      border-spacing: 0 15px;
  }
  .ticket_table .table tbody tr
  {
    background: #F0F5FA;
  }
  .ticket_table .table tbody tr td
  {
      border: none;
  }
  .ticket_table .table tbody tr td h2
  {
      color: #001720;
      font-family: Inter;
      font-size: 20px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      margin-bottom: 10px;
  }
  .ticket_table .table tbody tr td p,
  .ticket_table .table tbody tr td p span
  {
      color:#001720;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      position: relative;
      line-height: normal;
  }
  .ticket_table .table tbody tr td .waitingbox .ornge_circle
  {
    width: 13px;
    height: 13px;
    background: #F0811B;
    border-radius: 50%;
    position: relative;
    top: 3px;
    margin-right: 10px;
  }
  .ticket_table .table tbody tr td p .end_date
  {
      margin-left: 40px;
  }
  .ticket_table .table tbody tr td p .end_date::before
  {
      content: '';
      width: 5px;
      height: 5px;
      position: absolute;
      background: #001720;
      top: 50%;
      left: -25px;
      border-radius: 50%;
  }
  .ticket_table .table tbody tr td .dropdown-menu
  {
        border: none;
        border-radius: 4px;
        background: #FFF;
        box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.15);
  }
  
  /*create-event-single-event page css end*/
  
  /*event details*/
  .event_details .event-details_box .event-details_left,
  .event_details .fees_box,
  .event_details .event-details_box .total_ticket_sale
  {
      background: #fff;
      padding: 24px;
      border-radius: 12px;
  }
  .event_details .event-details_box .event-details_left h3
  {
      color: #000;
      font-family: Inter;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      padding-bottom: 16px;
  }
  .event_details .event-details_box .event-details_left h4
  {
      color: #000;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      padding-bottom: 12px;
  }
  .event_details .event-details_box .event-details_left p
  {
      color: #000;
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
  }
  .event_details .event-details_box .event-details_left .detail-list-item ,
  .event_details .fees_box .detail-list-item 
  {
      line-height: normal;
  }
  .event_details .event-details_box .event-details_left .detail-list-item label,
  .event_details .event-details_box .event-details_left .detail-list-item span
  {
      color: #000;
      font-family: Inter;
      font-size: 13px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      margin-bottom: 0;
  }
  .event_details .event-details_box .event-details_left .detail-list-item span
  {
      font-weight: 400;
  }
  .event_details .event-details_box .event-details_left .Payout p
  {
      color: #DE9845;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
  }
  
  .event_details .fees_box .detail-list-item label,
  .event_details .fees_box .detail-list-item span
  {
      color: #666;
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      margin-bottom: 0;
  }
  .event_details .fees_box .detail-list-item 
  {
      margin-bottom: 10px;
  }
  .event_details .fees_box .detail-list-item.toon_fees label,
  .event_details .fees_box .detail-list-item.toon_fees span
  {   
      color: #000; 
  }  
  .event_details .fees_box .detail-list-item.total_fee
  {
      border-top: 1px solid #A7A7A7;
      padding: 10px 0;
      margin-bottom: 0;
  }
  .event_details .fees_box .detail-list-item.total_fee label,
  .event_details .fees_box .detail-list-item.total_fee span
  {   
      color: #454ADE; 
  }  
  .event_details .total_ticket_sale .total_ticket_sale_box h4
  {
      color: #454ADE;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      padding-bottom: 14px;
  } 
  .event_details .total_ticket_sale .total_ticket_sale_box.dark_sale_text h4
  {
      color: #000;
      padding-bottom: 8px;
  }
  .event_details .total_ticket_sale .total_ticket_sale_box 
  {
      padding-bottom: 34px;
  }
  .event_details .total_ticket_sale .total_ticket_sale_box.dark_sale_text p,
  .event_details .total_ticket_sale .total_ticket_sale_box p,
  .event_details .total_ticket_sale .total_ticket_sale_box span,
  .event_details .total_ticket_sale .total_ticket_sale_box.dark_sale_text span
  {
      color:#001720;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }
  .event_details .total_ticket_sale .total_ticket_sale_box p,
  .event_details .total_ticket_sale .total_ticket_sale_box span
  {
      color: #454ADE;
  }
  .export_list_btn .gradient_btn
  {
      min-width:203px ;
  }
  .export_list_btn .gradient_btn:hover
  {
      background: transparent;
      color: #454ADE;
  }
  .export_list_btn .gradient_btn:hover span img
  {
      filter: invert(38%) sepia(95%) saturate(5464%) hue-rotate(234deg) brightness(89%) contrast(95%);
  }
  .event_details .table tbody tr td p .attendance-circle
  {
      height: 12px;
      width: 12px;
      background: #FC5959;
      border-radius: 50%;
      display: block;
  }
  .event_details .table tbody tr td p .attendance-circle.red_circle
  {
      background: #FC5959;
  }
  .event_details .table tbody tr td p .attendance-circle.green_circle
  {
      background: #0FB292;
  }
  
  .event_details .table thead tr th{
    padding-bottom: 2rem;
  }
  .event_details .table tbody tr td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .event_details .table tbody tr td p a
  {
      color: #3983C7;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      text-decoration-line: underline;
  }
  .event_details .table tbody tr td p
  {
      color: #000;
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }
  .event_details .see_more_btn .btn_secondary
  {
      max-width: 288px;
      width: 100%;
  }
  .add_artist .btn_secondary
  {
      max-width: 154px;
  }
  /*event details*/
  /*my_events_page start*/
  .notification_centre.my_events_page .form-group.filter-by.select select.Organization_filter
  {
      min-width: 232px;
      width: 100%;
      height: 40px !important;
      border-radius: 8px;
      
  }
  .notification_centre.my_events_page .form-group.my_events_filter .btn-outline-secondary
  {
      display: flex;
      width: 112px;
      height: 40px;
      padding: 12px 16px;
      justify-content: center;
      align-items: center;
      gap: 12px;
      color: #454ADE;
      font-family: "DM Sans";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      border-radius: 8px;
      border: 1.5px solid #454ADE;
      background: #F0F0F0;
  }
  .notification_centre.my_events_page .form-group.my_events_filter .btn-outline-secondary:hover
  {
      background: #454ADE;
      color: #fff;
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane
  {
      padding: 32px 12px;
  }
  
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td
  {
    border: 0px;
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td .main_text 
  {
      color:#001720;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td span
  {
      color: #000;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td span.text-green
  {
      color: #0FB292; 
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td span.text-purple
  {
      color: #454ADE; 
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td span.text-red
  {
      color: #FC5959; 
  }
  .notification_centre.my_events_page #eventTabContent .tab-pane .table td span.text-orange
  {
      color: #F0811B; 
  }
  
  /*my_events_page start*/
  
  /*date picker css*/
  .datepicker .prev,
  .datepicker .next
  {
      font-size: 0;
      position: relative;
  }
  .datepicker .prev:before,
  .datepicker .next:before
  {
     content: "\f104 ";
     font-size: 14px;
     font-family: 'FontAwesome';
     color: #B5BEC6;
  }
  .datepicker .next:before
  {
     content: "\f105 ";
  }
  .datepicker .next.disabled, .datepicker .prev.disabled {
    visibility: visible;
}
  .ui-icon-circle-triangle-e
  {
    background-position: -32px 0px;
  }
  .ui-icon-circle-triangle-w
  {
    background-position: -98px 0px;
  }
  .ui-widget-header
  {
      background: transparent;
      border: 0;
      color: #4A5660;
      text-align: center;
      font-feature-settings: 'clig' off, 'liga' off;
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 14px;
  }
  .ui-datepicker
  {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 2px 16px 19px 0px rgba(0, 0, 0, 0.09);
  }
  .ui-widget.ui-widget-content
  {
      border: 0px;
  }
  .ui-datepicker th
  {
      color:#B5BEC6;
      text-align: center;
      font-feature-settings: 'clig' off, 'liga' off;
      font-family: Inter;
      font-size: 10px;
      font-style: normal;
      font-weight: 600;
      line-height: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
  }
  .ui-state-default, .ui-widget-content .ui-state-default
  {
      color:#4A5660;
      text-align: center;
      font-feature-settings: 'clig' off, 'liga' off;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
      border: 0;
      background: transparent;
  }
  .ui-widget-content .ui-state-disabled
  {
      opacity: 1;
  }
  .ui-datepicker td
  {
    padding: 4px 1px;
  }
  .ui-widget-content .ui-datepicker-today
  {
      
      display: flex;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 30px;
      background:#F04D23;
  }
   .ui-widget-content .ui-datepicker-today .ui-state-default
  {
      color:#FFF;
      text-align: center;
      font-feature-settings: 'clig' off, 'liga' off;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
  }
  /*date picker css*/
  .form-group.date_custom_radio .form-radio-label::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    left: 0;
    top: 7px;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.3rem solid var(--checkbox-border);
} 
.form-group.date_custom_radio .form-radio-input:checked + .form-radio-label::before {
    border-color: var(--blue);
}
  .form-group.date_custom_radio .form-radio-input:checked + .form-radio-label::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    height: 1.1rem;
    width: 1.1rem;
    top: 14px;
    left: 7px;
    background-color: var(--blue);
  }
  .disable_input input,.disable_input select
  {
    background-color: #E1E1E1 !important;
    border-color: #E1E1E1 !important;
  }
  .disable_input input::placeholder
  {
    color: #000;
    opacity: 1;
  }
  .disable_input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: pink;
  }
  .disable_input input::-moz-placeholder { /* Firefox 19+ */
    color: pink;
  }
  .disable_input input:-ms-input-placeholder { /* IE 10+ */
    color: pink;
  }
  .disable_input input:-moz-placeholder { /* Firefox 18- */
    color: pink;
  }
  .grayscale
    {
        filter: grayscale(1);
    }
  
  
  
  
  /*new media query*/
  @media (max-width:1200px) {
      .create-event.create_event_single_event .card .right_content .card-title {
        margin-top: 30px;
      }
  }
  
  @media (max-width: 768px)
  {
      .event_details .event-details_box .event-details_left, .event_details .fees_box, .event_details .event-details_box .total_ticket_sale {
        padding: 14px;
        border-radius: 8px;
      }
      .event_details .table tbody tr td {
        padding: 2rem 1rem;
     }
     .table.responsive td:first-child {
          padding-bottom: 0;
      }
      .export_list_btn .gradient_btn {
        width: 100%;
        margin-top: 20px;
      }
      .main-content {
        padding: 10rem 1rem 7rem;
      }
      .step,.step.active {font-size: 14px;}
      .step::before { left: 40%;}
      .create-event.create_event_single_event .page-title h1,
      .create-event.create_event_single_event .card .card-title {
        font-size: 24px;
      }
      .main-content .card .card-title {
        margin-bottom: 1rem;}
        .create-event.create_event_single_event .add_more_ticket_btn {
        margin-left: 0;
        margin-bottom: 10px;
      }
      .ticket_table {
        padding: 16px 14px;
      }
      .ticket_table .table.responsive td::before {
         display: none;
        }
      .ticket_table .table.responsive td:first-child {
          padding-top: 0;
        }
      .ticket_table .table tbody tr td {
        padding: 10px 0;
      }
      .ticket_table .table tbody tr td p, .ticket_table .table tbody tr td p span {
        font-size: 14px;
      }
      .ticket_table .table.responsive td {
          grid-template-columns: auto;
        }
      .notification_centre.my_events_page #eventTabContent .tab-pane .table.responsive tr{
          display: flex;
          align-items: start;
          justify-content: space-between;
      }
      .notification_centre.my_events_page #eventTabContent .tab-pane .table.responsive td{
          display: inline-block;
          padding: 10px;
        }

    .label_img details[data-popover] > summary + * {
        width: 200px;
    }
    .label_img details[data-popover="right"] > summary + * {
    bottom: auto;
    transform: revert;
    left: 0;
    top: 28px;
    }
        
  }
  
  @media (max-width: 576px){
      .event_details .event-details_box .event-details_left .col-12:first-child h4
      {
          margin-top: 0px;
      }
      .event_details .event-details_box .event-details_left h4
      {
          margin-top: 30px;
      }
      .search_row {margin:20px -15px;}
      
      .event_details .total_ticket_sale .total_ticket_sale_box.dark_sale_text p, 
      .event_details .total_ticket_sale .total_ticket_sale_box p, 
      .event_details .total_ticket_sale .total_ticket_sale_box span, 
      .event_details .total_ticket_sale .total_ticket_sale_box.dark_sale_text span,
      .event_details .total_ticket_sale .total_ticket_sale_box h4
      {
        font-size: 14px;
      }
      .btn_secondary, #nextBtn, #prevBtn {min-width: 134px;}
      .step,.step.active {font-size: 12px;}
      .step::before {
        height: 16px;
        width: 16px;
        left: 36%;
        top: -20px;
      }
      .step::after {
        height: 1px;
        top: -13px;
      }
      #regForm {
        margin: 40px auto;
      }
      .create-event.create_event_single_event .form-group.form-check {
        margin-bottom: 10px;
      }
      .create-event.create_event_single_event .form-group .price-text {
        margin-top: 0;
      }
  }
  @media (max-width: 420px)
  {
      .notification_centre.my_events_page #eventTabContent .tab-pane .table.responsive tr{
          display: block;
      }
     /* .main-content.my_events_page #eventTabContent .tab-pane .table.responsive tr td{
          padding: 0px;
      }*/
  }

  .create-event.create_event_single_event .mood_links ul li.active_subcategory a
  {
    background: linear-gradient(141deg, #CFD0F2 -101.42%, #454ADE 79.63%), linear-gradient(180deg, #455ADE 0%, rgba(69, 74, 222, 0.00) 100%);
    color: #fff;
  }
  .create-event.create_event_single_event .mood_links ul li.active_subcategory a img
  {
    filter: brightness(0) invert(1);
  }

/* 05-02-2024 css */
.btn-group-inline .btn_custom_padding {
    padding: 0.5rem 3rem !important;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myaccount_page
    .main-content
    .main-content-inner
    .card
    .card-body
    .gray_bg
    .info_ol {
    padding: 0;
    padding-left: 16px;
}
.myaccount_page
    .main-content
    .main-content-inner
    .card
    .card-body
    .gray_bg
    .info_ol
    li {
    font-family: var(--base-font);
    font-size: 16px;
    font-weight: 400;
    color: #0f2630;
    margin-bottom: 14px;
}
.gap_custom {
    gap: 10px;
}
.event_date_container .col-md-4{max-width: 375px !important;     flex: inherit;}
.event_date_container .col-md-4 +  .col-md-4{max-width: 305px !important;   }
.start_time_div .col-sm-3{max-width: 265px !important;     flex: inherit;}

[x-cloak] { display: none !important; }