* {
    margin: 0;
    padding: 0;
}
:root {
    --primary-clr: #faba3d;
    --secondary-clr: #101010;
    --txt-clr: #666666;
    --txt-lgt-clr: rgb(108 108 108 / 89%);
    --white-clr: #fff;
    --black-clr: #000000;
    --black-12: #121212;
    --dark-grey: #101010;
    --blue-clr: #3085b0;
    --red-clr: #f50e0e;
    --ub-font: "Urbanist";
    --pp-font: "Poppins";
    --spacer: 35px;
}

::selection {
    background-color: var(--primary-clr);
    color: var(--black-clr);
}

/* Scrollbar css start */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1;
}

:is(
        .card-table-layout,
        .discount-main-detail-blk,
        .members-table-blk,
        .message-box
    )::-webkit-scrollbar-track {
    background: #393939;
}
:is(
        .card-table-layout,
        .discount-main-detail-blk,
        .members-table-blk,
        .message-box
    )::-webkit-scrollbar-thumb {
    background: var(--primary-clr);
}

/* Scrollbar css end */

.primary-text-clr {
    color: var(--primary-clr) !important;
}
.spacer-y {
    padding: 35px 0px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.p-relative {
    position: relative;
}
button:focus-visible,
button:hover {
    outline: none !important;
}

.full-body-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
}
span.error {
    font-size: 12px;
    font-weight: 300;
    font-family: var(--pp-font);
    color: #ff0000;
    margin-top: 3px;
    line-height: 16px !important;
}
span.required-text {
    color: var(--red-clr);
}
span.info-notes {
    font-size: 14px;
    color: var(--primary-clr);
    font-family: var(--ub-font);
    width: 100%;
    display: block;
}
.no-data-found {
    background: #222222;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--ub-font);
    color: var(--white-clr);
    border-radius: 10px;
}
body {
    background-color: #000;
}

.primary-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    text-transform: capitalize;
    background: var(--primary-clr);
    border: 0.5px solid var(--primary-clr);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    text-align: center;
}
.text-btn {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    border: 0px;
    background: transparent;
    transition: all 0.2s ease-in-out;
}

/* Credential CSS Start */

section.credential-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 0px 15px;
    position: relative;
    z-index: 1;
}
section.credential-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 88%);
    z-index: -1;
}
.credential-section .language-selector-blk {
    position: absolute;
    top: 30px;
    right: 80px;
}
.rtl .credential-section .language-selector-blk {
    position: absolute;
    right: auto;
    left: 80px;
}
.rtl .lang-list-blk {
    right: auto;
    left: 0;
}
.credential-wrapper {
    background: rgb(26 26 26 / 86%);
    border-radius: 24px;
    max-width: 516px;
    width: 100%;
    padding: 50px 40px 20px;
}

.credential-logo-blk {
    width: 194px;
    height: 74px;
    margin: 0px auto;
}
.credential-logo-blk img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.credential-heading {
    margin-top: 28px;
}
.credential-heading h1 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--ub-font);
    color: var(--white-clr);
    margin-bottom: 0px;
    text-align: center;
}

.credential-form-blk form {
    margin: 60px 0px 28px;
}
.form-field-blk:not(:last-child) {
    margin-bottom: 15px;
}
.form-field-blk label {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 8px;
}
.input-field {
    position: relative;
}
select#datepickerDOB option {
    color: var(--black-clr);
}
.input-field :is(.form-control, .form-select) {
    background-color: var(--black-clr);
    border: 0.5px solid #9794aa;
    color: var(--white-clr);
    font-size: 16px;
    font-family: var(--pp-font);
    border-radius: 40px;
    padding: 15px 24px;
}
.input-field :is(.form-control, .form-select)::placeholder {
    color: #9794aa;
    font-size: 12px;
}
.input-field :is(.form-control, .form-select):focus {
    box-shadow: none;
    background-color: var(--black-clr);
    border-color: #9794aa;
    color: var(--white-clr);
}
.input-field .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.credential-wrapper input[type="password"] {
    padding-right: 40px;
}
.rtl .credential-wrapper input[type="password"] {
    padding-left: 40px;
    padding-right: 0.75rem;
}
span.eye {
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
span.eye i {
    color: var(--primary-clr);
    font-size: 14px;
}
.input-field .form-control:focus + span.eye i {
    color: var(--white-clr);
}
.rtl section.credential-section .credential-wrapper .input-field span.eye {
    left: 15px;
    right: auto;
}
.forgot-psw {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}
a.forgotpsw-link {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    display: inline-block;
}
.gender-check-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    height: 38px;
}

.gender-check-wrapper .input-check-filed {
    margin-bottom: 0px !important;
}
.gender-check-wrapper .input-check-filed label {
    margin-bottom: 0px !important;
}
.gender-check-wrapper span.availabliy-icon {
    width: 18px;
    height: 18px;
    border-radius: 20px;
}
.gender-check-wrapper .input-check-filed .availabliy-icon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 10px !important;
    height: 10px !important;
    border: 0px !important;
    background: var(--primary-clr) !important;
    border-radius: 20px !important;
    transform: translate(-50%, -50%) !important;
    display: none;
}
.form-btn-blk {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}
.form-btn {
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    background: var(--primary-clr);
    border: 0.5px solid var(--primary-clr);
    border-radius: 40px;
    max-width: 100%;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: relative;
}
span.min-loader {
    width: 100%;
    height: 100%;
    background: #000000c7;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-radius: 40px;
    backdrop-filter: blur(2px);
    justify-content: center !important;
    align-items: center !important;
    z-index: 2;
}
span.min-loader img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.form-btn:hover {
    background: var(--black-clr);
    color: var(--primary-clr);
}
.form-content-blk :is(p, span) {
    color: var(--white-clr);
    font-weight: 400;
    font-family: var(--pp-font);
    text-align: center;
    display: block;
}
.form-content-blk p a {
    color: var(--primary-clr);
}
.form-content-blk span.crf-info {
    font-size: 10px;
}

.credential-heading-blk h1 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-align: center;
    margin-bottom: 0px;
}
white .otp-form-blk form {
    margin: 30px 0px 28px !important;
}
.otp-field-blk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.otp-field-blk .input-field .form-control {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    text-align: center;
    border-color: #9794aa !important;
}
input.form-control.otp-input:invalid {
    border-color: red;
}
.form-resendbtn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    background: transparent;
    border: 0px;
    transition: all 0.2s ease-in-out;
}
button.form-resendbtn:disabled {
    opacity: 0.4;
}

.credential-wrapper.signup-wrapper {
    max-width: 912px;
}
section.credential-section.signup-section {
    min-height: 480px;
    height: 100%;
    padding: 40px 15px;
}
.signup-wrapper .form-fields-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px 20px;
}
.signup-wrapper .form-field-blk {
    width: 48%;
}

.sign-upload-file label {
    border: 1px dashed var(--primary-clr);
    width: 100%;
    border-radius: 40px;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}
.sign-upload-file label span.upload-icon {
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

/* new login css start */

.newlogin .credential-logo {
    width: 140px;
    margin: 0 auto 80px;
}
.newlogin .credential-form-blk .credential-logo {
    margin: 0px auto;
    position: absolute;
    content: "";
    top: 90px;
}
.newlogin .credential-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newlogin .credential-content-blk {
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background-image: url("../images/login-bg-02.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    padding: 80px 66px;
}
.primary-text {
    color: var(--primary-clr);
}

.newlogin .credential-content-blk::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, #000, #00000054);
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}
.newlogin .credential-content-blk .credential-content {
    max-width: 670px;
    position: relative;
}
.credential-btn-blk {
    margin-top: 70px;
    position: absolute;
    bottom: -132px;
}
.newlogin .credential-content-blk .credential-content h1 {
    font-size: 32px;
    color: var(--white-clr);
    font-weight: 700;
    font-family: var(--ub-font);
}
.newlogin .credential-content-blk .credential-content h1 span {
    color: var(--primary-clr);
}
.newlogin .credential-content-blk .credential-content p {
    color: #e0e0e0;
    font-size: 20px;
    font-family: var(--ub-font);
    line-height: 32px;
    margin-bottom: 0px;
}

.newlogin .credential-btn-blk a.primary-btn {
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--ub-font);
    color: var(--black-clr);
    background: var(--primary-clr);
    border: 0.5px solid var(--primary-clr);
    border-radius: 40px;
    transition: all 0.2s ease-in-out;
}

.newlogin .credential-form-blk {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}
.newlogin .credential-form-blk .credential-inner,
.newlogin form {
    width: 100%;
    max-width: 592px;
}
.newlogin .credential-form-blk .credential-inner .credential-heading h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-clr);
    font-family: var(--pp-font);
    margin-bottom: 0px;
}
.newlogin .credential-form-blk .credential-inner .form-fields-wrapper {
    margin-top: 58px;
}
.newlogin .form-fields-wrapper .form-field-blk label {
    font-size: 18px !important;
    font-weight: 500 !important;
    font-family: var(--pp-font);
    color: var(--white-clr) !important;
    margin-bottom: 10px !important;
}
.newlogin .form-fields-wrapper .form-field-blk .input-field .form-control {
    background-color: var(--black-clr);
    border: 0.5px solid #9794aa !important;
    color: var(--white-clr);
    font-size: 18px;
    font-family: var(--pp-font);
    border-radius: 40px;
    padding: 18px 34px 18px 24px !important;
}
.credential-wrapper.signup-wrapper .input-field .form-select {
    background-color: var(--black-clr);
    color: var(--white-clr);
}

.newlogin
    .form-fields-wrapper
    .form-field-blk
    .input-field
    .form-control::placeholder {
    color: #9794aa;
    font-size: 18px !important;
    font-weight: 500 !important;
    font-family: var(--pp-font);
}
.newlogin
    .credential-form-blk
    .credential-inner
    .form-fields-wrapper
    .forgot-psw {
    display: flex;
    justify-content: center !important;
    margin-top: 8px;
}
.newlogin
    .credential-form-blk
    .credential-inner
    .form-fields-wrapper
    a.forgotpsw-link {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--ub-font);
    color: var(--primary-clr) !important;
    display: inline-block;
}
.newlogin .form-field-blk .input-field span.eye i {
    color: #cbcad7 !important;
    font-size: 14px;
}
.newlogin .form-btn-blk .form-btn-login {
    padding: 15px 24px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    background: var(--primary-clr);
    border: 0.5px solid var(--primary-clr);
    border-radius: 40px;
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.terms-agree-check {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}
.terms-agree-check p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #cbcad7;
    margin-bottom: 0px;
}
.checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}
.checkbox input + label {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #cbcad7;
    position: relative;
    cursor: pointer;
}
.checkbox input + label::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 8px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}
.checkbox input:checked + label::before {
    background: url(../images/login-check.svg);
}
.checkbox input {
    display: none;
}
.checkbox input:checked + label {
    background: var(--primary-clr);
    border-color: var(--primary-clr);
}

/* new login css end */

/* input#mobileNumber {
  padding-left: 65px;
  }
  .view-country-code {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  width: 50px;
  background: #29282800;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: var(--pp-font);
  color: #fff;
  border-right: 1px solid #646464;
  } */
/* Credential CSS End */

/* Header css Start */
/* header {
  background-color: var(--black-clr);
  padding: 23px 0px 4px;
  height: 92px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.2s ease-in-out;
  z-index: 100;
  } */
header {
    padding: 23px 0px 4px;
    position: relative;
    z-index: 2;
}
header::before {
    position: absolute;
    content: "";
    bottom: 4px;
    left: 50%;
    max-width: 1296px;
    width: 100%;
    height: 0.6px;
    background-image: radial-gradient(#ffffff8c 4%, #ffffff1c 80%);
    background-image: -webkit-radial-gradient(#ffffff8c 4%, #ffffff1c 80%);
    background-image: -moz-radial-gradient(#ffffff8c 4%, #ffffff1c 80%);
    transform: translateX(-50%);
}
.header-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 38px;
}
.logo-blk {
    width: 140px;
    height: 54px;
}
a.logo {
    width: 100%;
    height: 100%;
    display: block;
}
ul.menu-list-blk {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 43px;
}
a.menu-link {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--ub-font);
    color: var(--white-clr);
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
a.menu-link.active,
a.menu-link:hover {
    color: var(--primary-clr);
}
ul.menu-btn-list-blk {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
button.lang-btn {
    width: 60px;
    height: 38px;
    border: 1px solid #1c1c1c;
    border-radius: 40px;
    background: linear-gradient(180deg, #111111, #000000);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--ub-font);
    color: var(--white-clr);
    text-transform: capitalize;
    position: relative;
}
.language-selector-blk {
    position: relative;
}
.lang-list-blk {
    position: absolute;
    content: "";
    top: calc(100% + 5px);
    right: 0;
    width: 180px;
    max-height: 295px;
    overflow-y: auto;
    border: 1px solid #1c1c1c;
    border-radius: 15px;
    background: linear-gradient(180deg, #111111, #000000);
    box-shadow: 0px 0px 6px rgb(0 0 0 / 15%);
    padding: 15px 10px;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.lang-drop {
    transform: scaleY(1);
    opacity: 1;
}
.lang-item {
    padding: 4px 0px;
    border-bottom: 1px solid #1a1a1a;
}
.lang-item:first-child {
    padding: 0px 0px 4px 0px;
    border-bottom: 1px solid #1a1a1a;
}
.lang-item:last-child {
    padding: 4px 0px 0px;
    border-width: 0px;
}
.language-btn {
    width: 100%;
    border: 0px;
    background: transparent;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--ub-font);
    color: #fff;
    text-align: left;
    padding: 4px 10px;
    position: relative;
    letter-spacing: 0.5px;
}
.language-btn.active {
    font-weight: 600;
    color: var(--primary-clr);
}
.language-btn:hover {
    background: #161616;
}
.language-btn.active::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 10px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: url(../images/tick-mark-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.notification-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1c1c1c;
    border-radius: 40px;
    background: linear-gradient(180deg, #111111, #000000);
    position: relative;
}
span.notify-badge {
    position: absolute;
    content: "";
    top: 7px;
    right: 10px;
    font-size: 8px;
    font-weight: 600;
    background: red;
    color: #fff;
    border-radius: 20px;
    width: 8px;
    height: 8px;
    line-height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.notification-btn.active svg path {
    fill: var(--primary-clr);
}
.profile-nav {
    position: relative;
}
.profile-btn {
    width: 38px;
    height: 38px;
    background: linear-gradient(180deg, #111111, #000000);
    border: 1px solid #1c1c1c;
    border-radius: 40px;
}
.profile-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.menu-dropdowm-card {
    position: absolute;
    content: "";
    top: 50px;
    right: 0;
    width: 252px;
    height: auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 5px 31px 0px rgba(66, 79, 125, 0.11);
    transform: scale(0);
    transform-origin: right top;
    transition: all 0.5s ease-in-out;
    z-index: 5;
    opacity: 0;
}
.menu-dropdowm-card.transform-scale {
    transform: scale(1);
    opacity: 1;
}

.menu-dropdown-links ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.menu-dropdown-links ul li:not(:last-child) {
    border-bottom: 0.2px solid rgb(0 0 0 / 20%);
}
.drop-menu-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    padding: 10px 16px;
}
.drop-menu-links:hover {
    background: var(--primary-clr);
    color: var(--black-clr);
}
.menu-dropdown-links ul li:first-child a:hover {
    border-radius: 5px 5px 0px 0px;
}
.menu-dropdown-links ul li:last-child a:hover {
    border-radius: 0px 0px 5px 5px;
}

.btn-box {
    cursor: pointer;
    display: none;
    flex-direction: column;
    width: 30px;
    height: 25px;
    background: transparent;
    border: 0px;
    justify-content: space-between;
    transition: transform 0.33s ease-out;
}

.btn_bar {
    background-color: #fff;
    border-radius: 10px;
    height: 3px;
    width: 100%;
}

.btn_bar.btn_width {
    width: 50%;
}

.btn_bar.top {
    transform-origin: right;
    transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn_bar.bottom {
    align-self: flex-end;
    transform-origin: left;
    transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn-box.active {
    transform: rotate(-45deg);
}

.active .btn_bar.top {
    background-color: #fff;
    transform: rotate(-90deg) translateX(4px);
}

.active .btn_bar.bottom {
    background-color: #fff;
    transform: rotate(-90deg) translateX(-4px);
}

.menu-wrapper.show {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--black-clr);
    z-index: -1;
}
.menu-wrapper.show ul.menu-list-blk {
    flex-direction: column;
}

/* Header css End */

/* Footer css Start */

footer {
    padding-top: 30px;
    border-top: 1px solid #494949;
}
.footer-flex-blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-logo-blk {
    width: 185px;
    height: 70px;
}
.footer-logo-blk a {
    width: 100%;
    height: 100%;
    display: block;
}
.footer-logo-blk a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.app-link-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.app-link-blk a {
    width: 203px;
    height: 60px;
    display: block;
}
.footer-navigation {
    padding: 45px 0px 35px;
}
.footer-navigation ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px 72px;
}
a.footer-link {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--pp-font);
    letter-spacing: 4.2px;
    text-transform: uppercase;
    color: var(--white-clr);
    transition: all 0.1s ease-in-out;
}
a.footer-link:hover {
    color: var(--primary-clr);
}

.copyright-blk {
    padding: 20px 0px 25px;
    border-top: 1px solid #494949;
}
.copyright-content p {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--ub-font);
    text-align: center;
    color: var(--white-clr);
    margin-bottom: 0px;
    letter-spacing: 4px;
}
/* Footer css End */

/* Homepage css Start */

section.hero-section {
    height: 87vh;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
section.common-hero-section {
    height: 373px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
section.hero-section::before,
.common-hero-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: -1;
}
.hero-wrapper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 12px;
}
.hero-wrapper h1 {
    font-size: 65px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-align: center;
    margin-bottom: 15px;
}
section.common-hero-section .hero-wrapper h1 {
    font-size: 30px;
}
.hero-wrapper p {
    width: 72%;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--white-clr);
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto;
}

.heading-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}
.sub-heading h2 {
    font-size: 40px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.common-sub-heading h2 {
    font-size: 22px;
}
.side-content-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

a.category-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}
span.category-img {
    width: 143px;
    height: 143px;
    background: var(--black-12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
span.category-img img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}
span.category-title {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--ub-font);
    color: var(--white-clr);
}

/* rejected--cancel */

.rcb-wrapper {
    max-height: 320px;
    overflow-y: auto;
    margin-right: 0px;
    padding-right: 10px;
}
.rcb-common-card {
    background: var(--dark-grey);
    padding: 20px;
    border-radius: 10px;
}
.rcb-common-card:not(:last-child) {
    margin-bottom: 10px;
}
.rcb-common-card h2 {
    font-size: 16px;
    font-family: var(--ub-font);
    font-weight: 600;
    color: var(--white-clr);
    padding-bottom: 10px;
    position: relative;
}
.rcb-common-card h2::before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 50%;
    max-width: 1296px;
    width: 100%;
    height: 1.6px;
    background-image: radial-gradient(#ffbc008c 4%, #ffbc0000 80%);
    background-image: -webkit-radial-gradient(#ffbc008c 4%, #ffbc0000 80%);
    background-image: -moz-radial-gradient(#ffbc008c 4%, #ffbc0000 80%);
    transform: translateX(-50%);
}
.rcb-common-card p {
    font-size: 13px;
    font-family: var(--pp-font);
    color: #cdcdcd;
}
.rcb-common-card p:last-child {
    margin-bottom: 0px;
}

.r-reason {
    background: linear-gradient(181deg, #d90808, #1e0101) !important;
    outline: 2px solid red;
    outline-offset: 10px !important;
    padding: 15px 20px !important;
    margin: 20px !important;
}

.rejected {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: #ffffff85;
    backdrop-filter: blur(3px);
}
.rejected img {
    width: 70% !important;
    height: 70% !important;
    object-fit: contain !important;
    transition: all 0.3s ease-in-out;
}

.event-static-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}
.event-static-card {
    width: 252px;
    flex-grow: 1;
    padding: 36px 24px 20px;
    background: var(--black-12);
    border-radius: 6px;
}
.event-static-card span {
    font-size: 27px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-align: center;
    display: block;
}
.event-static-card h3 {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 0px;
}

.selection-btn {
    padding: 15px 18px;
    border: 0.5px solid #8b8b8b;
    border-radius: 50px;
    background: var(--black-clr);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--ub-font);
    color: var(--white-clr);
    width: 196px;
    text-align: left;
    position: relative;
}
span.selection-arrow {
    position: absolute;
    content: "";
    top: 50%;
    right: 18px;
    width: 11px;
    transform: translateY(-50%) rotate(0deg);
}
.selection-arrow svg {
    width: 11px;
    height: 14px;
}
.sm-sel-btn {
    padding: 9px 15px;
    width: 128px;
    font-size: 12px;
    background: var(--dark-grey);
    border-color: var(--dark-grey);
    letter-spacing: 0.6px;
}

.events-card-img-blk {
    width: 100%;
    height: 444px;
    border-radius: 12px;
    overflow: hidden;
}
.events-card-img-blk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}
a.events-card:hover img {
    transform: scale(1.1);
}
.events-card-details {
    padding: 10px 0px;
}
.events-card-details h3 {
    font-size: 19px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 2px;
}
.events-card-details p {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #a5a5a5;
    margin-bottom: 0px;
}
span.event-values {
    display: block;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    margin-top: 15px;
}

section.follow-updates-section {
    margin-bottom: 10px;
}
a.follow-updates-blk {
    padding: 48px 56px 48px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}
a.follow-updates-blk::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 64%);
    border-radius: 8px;
    z-index: -1;
}
a.follow-updates-blk h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
a.follow-updates-blk h2 span {
    font-weight: 700;
}
span.follow-social-icon {
    width: 27px;
    height: 27px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
span.follow-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Homepage css End */

/* Event page css Start */

.tab-buttons-blk {
    list-style: none;
    padding: 7px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
    margin-bottom: 60px;
    background: var(--black-12);
    border-radius: 50px;
}
button.navtab-link {
    padding: 8px 30px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: #787878;
    letter-spacing: 1px;
    text-transform: capitalize;
    background: var(--black-12);
    border: 0.5px solid var(--black-12);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
button.navtab-link.active {
    color: var(--black-clr);
    background: var(--primary-clr);
    border-color: var(--primary-clr);
}
.eventcard-listing .events-card-img-blk {
    height: 317px;
}
.eventcard-listing .events-card-details p {
    font-size: 14px;
}
.eventcard-listing span.event-values {
    display: block;
    font-size: 16px;
    margin-top: 8px;
}
span.actual-value {
    font-weight: 400;
    color: #a5a5a5;
    text-decoration: line-through;
    margin: 0px 15px 0px 5px;
}
.loadmore-blk {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.load-more {
    display: inline-block;
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    text-transform: capitalize;
    background: #212121;
    border: 0.5px solid var(--primary-clr);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    text-align: center;
}
/* Event page css End */

/* Event Detail css Start */
.breadcrumb-blk li.breadcrumb-item a {
    color: var(--primary-clr);
    font-size: 14px;
}
.breadcrumb-blk li.breadcrumb-item.active {
    font-size: 14px;
    color: #dedede !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eventdetail-hero-section {
    padding: 20px 0px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    z-index: 1;
}
.eventdetail-hero-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: -1;
}
.event-detail-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 40px;
}
.event-thumbnail-blk {
    width: 375px;
    height: 335px;
    border-radius: 12px;
}
.event-thumbnail-blk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.event-info-blk {
    width: calc(100% - 415px);
}
.event-info-blk h1 {
    font-size: 24px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-align: left;
    margin-bottom: 15px;
}
.event-info-blk p {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    letter-spacing: 1px;
    line-height: 26px;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
span.readmore {
    color: var(--primary-clr);
    font-size: 13px;
    font-family: var(--pp-font);
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}
p.maxlength {
    -webkit-line-clamp: initial !important;
}
video.videopreview {
    width: 100%;
    height: 350px;
}
.event-location-info strong {
    color: var(--white-clr);
}
.event-location-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
span.location-icon {
    width: 12px;
    height: 18px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
span.location-detail {
    width: calc(100% - 20px);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    letter-spacing: 1px;
}
.event-schedule-list {
    display: inline-flex;
    flex-direction: column;
    margin-top: 12px;
}
.event-schedule-item {
    padding: 8px 10px;
    background: var(--dark-grey);
    border-radius: 6px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.event-schedule-item:not(:last-child) {
    margin-bottom: 8px;
}
.event-schedule-title,
.event-schedule-info {
    font-size: 12px;
    font-weight: 300;
    font-family: var(--pp-font);
}
.event-schedule-title {
    color: var(--white-clr);
}
.event-schedule-info {
    color: #b8b8b8;
}
.availablity-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 100px;
    margin-top: 20px;
}
.availablity-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 34px;
}
.availabliy-info-blk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}
.availabliy-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.availabliy-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.availablity-title,
.availabliy-info {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    letter-spacing: 1px;
}
.card-wrapper {
    padding: 30px 32px;
    border-radius: 20px;
    background: var(--dark-grey);
}
.card-table-tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}
.card-table-tr div {
    flex-basis: 20%;
}
.card-table-tr div:not(:is(:first-child, :last-child)) {
    text-align: center;
}
.card-table-tr div:last-child {
    text-align: end;
}
.card-table-thead .card-table-tr,
.card-table-tr:not(:last-child) {
    border-bottom: 0.5px solid #2f323a;
}
.card-table-tr .card-table-th span {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #949494;
}
.card-table-tr .card-table-td span {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
}
.text-blk h3 {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.card-text-layout p {
    font-size: 13px;
    font-weight: 300;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
/* .card-member-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  } */
.card-member-list {
    border-radius: 12px !important;
}

.card-member-item {
    padding: 22px 15px;
    border-radius: 12px;
    background: #242424;
    display: inline-flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.card-member-profile {
    width: 76px;
    height: 76px;
    border-radius: 50%;
}
.card-member-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.card-member-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 196px);
}
h3.card-member-name {
    font-size: 15px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 8px;
    white-space: nowrap;
}
.card-member-info p {
    font-size: 11px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: rgba(255, 255, 255, 60%);
    margin-bottom: 5px;
    white-space: nowrap;
}
.card-member-info p:last-child {
    margin-bottom: 0px;
}
.remove-member-blk {
    width: 80px;
    display: flex;
    align-self: end;
}
.remove-member-btn {
    padding: 6px 15px;
    font-size: 11px;
}
:is(.member-slider, .cc-slider) .slick-slide:not(:last-child) {
    margin-right: 16px;
}
:is(.category-slider) .slick-slide:not(:last-child) {
    margin-right: 85px;
}
:is(.category-slider, .member-slider, .cc-slider) .slick-disabled {
    display: none !important;
}
:is(.category-slider, .member-slider, .cc-slider) .slick-arrow {
    position: absolute;
    content: "";
    top: 50%;
    width: 90px;
    height: 100%;
    transform: translateY(-50%);
    border: 0px;
    backdrop-filter: blur(2px);
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    letter-spacing: 1px;
    opacity: 0;
}
:is(.category-slider, .member-slider, .cc-slider):hover .slick-arrow {
    opacity: 1;
}
:is(.category-slider, .member-slider, .cc-slider) .slick-prev.slick-arrow {
    left: 0;
    border-radius: 12px 0px 0px 12px;
    background: linear-gradient(90deg, #faba3d, transparent);
}
:is(.category-slider, .member-slider, .cc-slider) .slick-next.slick-arrow {
    right: 0;
    border-radius: 0px 12px 12px 0px;
    background: linear-gradient(-90deg, #faba3d, transparent);
}
ul.slick-dots {
    position: absolute;
    content: "";
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px 10px;
    gap: 10px;
}

span.dot {
    width: 12px;
    height: 5px;
    background: rgb(250 186 61 / 17%);
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}
li.slick-active span.dot {
    width: 30px;
    background: var(--primary-clr);
}

/* .ticket-scan-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 64px;
  padding: 12px 25px;
  }
  .ticket-scan-wrapper h2 {
  font-size: 12px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
  }
  .ticket-scan-field-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  }
  .ticket-scan-field input {
  padding: 8px 10px;
  background: var(--dark-grey);
  border: 0px;
  font-size: 12px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: var(--white-clr);
  box-shadow: none;
  }
  .ticket-scan-field input::placeholder {
  color: var(--white-clr);
  }
  .ticket-scan-field input:focus {
  box-shadow: none !important;
  } */
.ticket-scan-submit-btn {
    font-size: 12px;
    padding: 6px 18px;
}
/* .scan-differ-text span {
  font-size: 13px;
  font-weight: 300;
    font-family: var(--pp-font);
    color: var(--white-clr);
  } */

/* Slot css start */

.ticket-slot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    padding: 25px 20px;
    background: #000;
    border-radius: 15px;
}
.ticket-slot-item:not(:last-child) {
    margin-bottom: 8px;
}

.slot-title h3 {
    font-size: 22px;
    font-family: var(--pp-font);
    font-weight: 600;
    color: var(--white-clr);
    margin-bottom: 0px;
}

.slot-title {
    position: relative;
}

.ticket-slot-item::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 3px;
    height: 70%;
    background: var(--primary-clr);
    transform: translateY(-50%);
    border-radius: 8px;
}

.slot-event-start h4 {
    font-size: 13px;
    font-family: var(--pp-font);
    font-weight: 400;
    color: var(--white-clr);
    margin-bottom: 0px;
    text-align: center;
}

.slot-content {
    margin-top: 8px;
}

.slot-content p {
    font-size: 16px;
    font-family: var(--pp-font);
    font-weight: 600;
    color: var(--primary-clr);
    margin-bottom: 0px;
    text-align: center;
}

.slot-title p {
    font-size: 13px;
    font-family: var(--ub-font);
    font-weight: 500;
    color: #838383;
    margin-bottom: 0px;
}

/* Slot css end */

.addmember-modal .modal-dialog {
    max-width: 1320px;
}
.addmember-modal .modal-content,
.modal-content {
    border-radius: 26px;
}
.modal-header {
    padding: 25px 35px;
    border: 0px;
}
.addmember-modal .modal-title,
.modal-title {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: #333333;
    line-height: normal;
}
.addmember-wrapper {
    padding: 10px 35px 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
}
.add-member-item {
    width: 235px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.add-member-profile {
    width: 76px;
    height: 76px;
    border-radius: 50%;
}
.add-member-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.add-member-info {
    margin: 10px 0px 15px;
}
h3.add-member-name {
    font-size: 15px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: #333333;
    text-align: center;
    margin-bottom: 8px;
    white-space: nowrap;
}
.add-member-info select {
    padding: 5px 30px 6px 10px;
    background-color: #ededed;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    cursor: pointer;
    color: #333333;
}
.add-member-info p {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #333333;
    text-align: center;
    margin-bottom: 5px;
    white-space: nowrap;
}
.add-member-info p:last-child {
    margin-bottom: 0px;
}
.add-member-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    text-transform: capitalize;
    background: #f8f8f8;
    border: 0.5px solid var(--primary-clr);
    border-radius: 7px;
    transition: all 0.2s ease-in-out;
}
.add-member-btn.added-mem {
    background: var(--primary-clr);
    color: var(--white-clr);
}
div#map {
    width: 100%;
}
.phoneiti input.form-control {
    padding-left: 98px !important;
}
.phoneiti .iti__flag-container {
    width: auto;
    height: 54px;
}
.phoneiti .iti.iti--allow-dropdown {
    height: 54px;
    border: 0px;
}
.phoneiti .iti__selected-flag {
    border-radius: 10px 0px 0px 10px;
}
.datefilter select {
    padding: 10px 18px;
    border: 0.5px solid #8b8b8b;
    border-radius: 50px;
    background-color: var(--black-clr);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--ub-font);
    color: var(--white-clr);
    width: 170px;
}
/* Event Detail css End */

/* Transaction css Start */

.transaction-blk:not(:last-child) {
    margin-bottom: 30px;
}
.transaction-date-blk {
    margin-bottom: 10px;
}
span.transaction-date {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #7e7e7e;
    letter-spacing: 2px;
}
.transaction-list-item {
    padding: 18px 26px;
    background: var(--dark-grey);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.transaction-list-item:not(:last-child) {
    margin-bottom: 10px;
}
.transaction-detail h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
}
.transaction-detail p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #b7b7b7;
    margin-bottom: 0px;
}
span.trsn-amount {
    font-size: 18px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--primary-clr);
}
span.ticket-lgbt {
    color: #ff8500;
}
span.ticket-event-lgbt {
    color: #008000;
}
.selection-blk.selectevent select {
    padding: 15px 30px 15px 18px;
    border: 0.5px solid #8b8b8b;
    border-radius: 50px;
    background-color: var(--black-clr);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--ub-font);
    color: var(--white-clr);
    max-width: 700px;
    text-align: left;
}

/* Transaction css End */

/* Create event css Start */

.choose-action-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.check-label {
    margin-right: auto;
}
.check-label h2 {
    font-size: 22px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.choose-action input {
    display: none;
}
.choose-action input + label {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    cursor: pointer;
}
.choose-action input:checked + label {
    border: 1px solid var(--primary-clr);
    border-radius: 6px 6px;
}
.choose-label-blk {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.choose-label-circle {
    width: 18px;
    height: 18px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    margin-right: 8px;
    position: relative;
}
.choose-action input:checked + label .choose-label-circle {
    border-width: 1px;
    border-color: var(--primary-clr);
    box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
}
.choose-action input:checked + label .choose-label-circle::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-29%, -100%) rotate(-45deg);
    width: 18px;
    height: 8px;
    border: 3px solid #fff;
    border-width: 0px 0px 3px 3px;
}
.choose-label-content {
    width: calc(100% - 26px);
}
.choose-label-content span {
    display: block;
}
.choose-label-head {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    font-family: var(--pp-font);
}

.upload-file-blk label {
    width: 100%;
    height: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    background: var(--dark-grey);
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    cursor: pointer;
}
span.upload-title {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--white-clr);
}

.upload-file-preview {
    width: 100%;
    height: 215px;
    background: var(--dark-grey);
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    position: relative;
    display: none;
}
.upload-file-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.upload-file-preview video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.removefilebtn {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    border: 0px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--pp-font);
    background: var(--primary-clr);
    border-radius: 4px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(10px);
    transform-origin: bottom;
    opacity: 0;
    transition: all 0.2s ease-in;
}
.upload-file-preview:hover .removefilebtn {
    transform: translateY(0px);
    opacity: 1;
}

.common-field-blk label {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #b7b7b7;
    margin-bottom: 5px;
}
.info-text {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 10px;
}
.i-text {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-clr);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    border: 1px solid var(--black-clr);
    cursor: pointer;
}
.tooltip-inner {
    background: #fff;
    color: #000;
    opacity: 1;
    line-height: 18px;
}

.tooltip .tooltip-arrow::before {
    border-right-color: #fff !important;
}
span.i-content {
    width: auto;
    max-width: 550px;
    min-width: 155px;
    display: inline-flex;
    background: var(--white-clr);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--black-clr);
    line-height: 16px;
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #252525;
    position: absolute;
    content: "";
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    box-shadow: 0px 4px 17px rgb(0 0 0);
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    visibility: hidden;
}
span.info-text:hover span.i-content {
    left: 25px;
    opacity: 1;
    visibility: visible;
}

.common-field {
    position: relative;
}
.color-info {
    position: absolute;
    content: "";
    top: 50%;
    right: 10px;
    width: 13px;
    height: 13px;
    border-radius: 30px;
    transform: translateY(-50%);
}
.common-field :is(.form-control, .form-select) {
    background-color: var(--dark-grey);
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--white-clr) !important;
}
.common-field .form-control::placeholder {
    color: var(--white-clr);
}
.common-field .form-control:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: none;
}
.common-field .form-select,
.datefilter select.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.common-field-select-blk {
    background-color: var(--dark-grey);
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    padding: 40px 20px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
}
.category_view {
    width: calc(100% - 50px);
    margin-left: auto;
    position: relative;
}

.category_view::before {
    position: absolute;
    content: "";
    top: -15px;
    left: -30px;
    width: 30px;
    height: 80%;
    background: var(--dark-grey);
    border: 1px solid #615e5e;
    border-width: 0px 0px 1px 1px;
}
.category_view:nth-child(3) {
    width: calc(100% - 50px * 2);
}
.category_view:nth-child(4) {
    width: calc(100% - 50px * 3);
}
.category_view:nth-child(5) {
    width: calc(100% - 50px * 4);
}
.category_view:nth-child(6) {
    width: calc(100% - 50px * 5);
}
.category_view:nth-child(7) {
    width: calc(100% - 50px * 6);
}
.category_view:nth-child(8) {
    width: calc(100% - 50px * 7);
}
.category_view:nth-child(9) {
    width: calc(100% - 50px * 8);
}
.category_view:nth-child(10) {
    width: calc(100% - 50px * 9);
}
.category_view:nth-child(11) {
    width: calc(100% - 50px * 10);
}
.category_view:nth-child(12) {
    width: calc(100% - 50px * 11);
}
.category_view:nth-child(13) {
    width: calc(100% - 50px * 12);
}
.category_view:nth-child(14) {
    width: calc(100% - 50px * 13);
}
.category_view:nth-child(15) {
    width: calc(100% - 50px * 14);
}
.add-loaction-field .location-icon {
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.add-loaction-field input {
    padding-right: 40px !important;
}

.cc-member-item {
    min-width: 185px;
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    background: var(--dark-grey);
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.cc-member-profile {
    width: 108px;
    height: 108px;
    border-radius: 50%;
}
.cc-member-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.cc-member-info {
    margin-top: 12px;
}
h3.cc-member-name {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 2px;
    text-align: center;
}
p.cc-member-profession {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
    text-align: center;
}
button.remove-cc-member-btn {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    border: 0px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-grey);
    color: var(--white-clr);
    transition: all 0.2s ease-in-out;
}
button.remove-cc-member-btn:hover {
    background: var(--white-clr);
    color: var(--dark-grey);
}

.availablity-check-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0px;
}
.availablity-check-wrapper .availablity-item {
    align-items: flex-start;
}
.input-check-filed:not(:last-child) {
    margin-bottom: 8px;
}
.input-check-filed label {
    cursor: pointer;
}
.input-check-filed .availabliy-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-clr);
    border-radius: 3px;
    position: relative;
}
.input-check-filed .availabliy-icon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 6.5px;
    height: 3px;
    border-left: 1px solid var(--primary-clr);
    border-bottom: 1px solid var(--primary-clr);
    border-top: 0px;
    border-right: 0px;
    transform: translate(-50%, -50%) rotate(-37deg);
    display: none;
}
.input-check-filed
    input[type="radio"]:checked
    + label
    .availabliy-icon::before {
    display: block;
}
.common-btn-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}
.cancel-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: #909090;
    text-transform: capitalize;
    background: var(--dark-grey);
    border: 0.5px solid var(--dark-grey);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
.draft-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: #909090;
    text-transform: capitalize;
    background: var(--dark-grey);
    border: 0.5px solid var(--dark-grey);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}

.edit_draft_btn {
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    color: var(--black-clr);
    padding: 5px 15px;
    font-size: 12px;
}
#addCC p.cc-member-profession {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #333333;
    text-align: center;
    margin-bottom: 5px;
    white-space: nowrap;
}
.crew-info {
    padding: 10px 35px 10px;
}
.crew-info span {
    font-size: 15px !important;
    font-weight: 500;
    text-align: left;
    display: block;
    color: #000;
    font-family: var(--pp-font);
}
.extra-class {
    font-size: 14px;
    font-weight: 600;
    color: #c3810c;
    font-family: var(--pp-font);
}
.nodata-blk {
    padding: 24px;
    background: var(--secondary-clr);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-clr);
    font-family: var(--pp-font);
}

.total-card-blk {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.total-card-item {
    background: var(--secondary-clr);
    padding: 30px 32px;
    border-radius: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px 32px;
    flex-grow: 1;
}
.total-card-img {
    width: 50px;
    height: 75px;
}
.total-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.total-card-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: calc(100% - 82px);
}
.total-card-detail p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--pp-font);
    margin-bottom: 5px;
    color: var(--white-clr);
}
.total-card-detail h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--ub-font);
    margin-bottom: 0px;
    color: var(--white-clr);
}
pre {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    line-height: 30px;
    white-space: break-spaces;
}
div#imagePreviewContainer {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: var(--dark-grey);
    border-radius: 8px;
}
#imgPreviewContainer {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: var(--dark-grey);
    border-radius: 8px;
}

div#imagePreviewContainer img,
#imgPreviewContainer img {
    width: 45%;
    height: 90%;
    object-fit: contain;
}
.event_start_time_row {
    margin-bottom: 8px;
}
.remove-blk-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #fff;
    text-transform: capitalize;
    background: #bd1111;
    border: 0.5px solid #ffe1e1;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    letter-spacing: 0.5px;
}
.remove-blk-btn.disabled {
    opacity: 0.3;
    cursor: no-drop;
}
.add-time-btn.disabled {
    opacity: 0.5;
    cursor: no-drop;
}
/* Create event css End */

/* Select venue css Start */
.venuesection {
    min-height: 500px;
}
.venuesection .common-field .form-select {
    padding-right: 35px;
}
.chart {
    width: 100%;
    height: 740px;
}
.chart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.venue-wrapper .heading-flex-box {
    margin-bottom: 0px;
}
.venue-wrapper .common-sub-heading h2 {
    font-weight: 500;
}
.add-blk,
.next-btn-blk {
    display: flex;
    justify-content: flex-end;
}
.add-blk .text-btn {
    font-weight: 500;
}
.remove-btn-blk {
    width: 150px;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}
.edit-type-btn {
    display: inline-block;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--ub-font);
    color: var(--white-clr);
    text-transform: capitalize;
    background: var(--balck-clr);
    border: 0.5px solid var(--white-clr);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
.remove-btn {
    display: inline-block;
    width: 100%;
    padding: 11px 12px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--ub-font);
    color: var(--red-clr);
    text-transform: capitalize;
    background: var(--balck-clr);
    border: 0.5px solid var(--red-clr);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
span.btnicon {
    display: none;
}

.select-venue-field-title {
    width: calc(100% - 160px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.select-venue-field-title .common-field-blk {
    width: 50%;
}
.select-venue-field-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.select-venue-field-item:not(:last-child) {
    margin-bottom: 10px;
}
.select-venue-field {
    width: calc(100% - 160px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.select-venue-field .common-field {
    width: 50%;
}
.select-venue-text-field {
    margin-bottom: 30px;
}
.select-venue-text-field .common-field-blk:not(:last-child) {
    margin-bottom: 15px;
}

.common-modal .modal-dialog {
    max-width: 614px;
}
.common-modal :is(.modal-header, .common-modal-body) {
    padding: 20px 24px;
    border: 0px;
}
.btn-close {
    opacity: 0.2;
}
.btn-close:focus {
    box-shadow: none;
}
.common-modal-input-field {
    position: relative;
}
.common-modal-field-item:not(:last-child) {
    margin-bottom: 10px;
}
.common-modal-label-blk label {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: #333333;
}
.common-modal-input-field :is(.form-control, .form-select) {
    padding: 14px;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #333333;
    border-radius: 15px;
    background-color: var(--white-clr);
    border: 2px solid rgb(203 210 220 / 50%);
}
.common-modal-input-field input[type="password"] {
    padding-right: 35px;
}
input.colorfield {
    height: 54.5px;
    /* padding: 5px 14px !important; */
}
input[type="color"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    padding: 5px !important;
}
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0px;
    border-radius: 10px !important;
}
input[type="color"]::-moz-color-swatch-wrapper {
    padding: 0px;
    border-radius: 10px !important;
}
input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 10px !important;
}
input[type="color"]::-moz-color-swatch {
    border: none;
    border-radius: 10px !important;
}
.common-modal-form-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.form-submit-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    text-transform: capitalize;
    background: var(--primary-clr);
    border: 0.5px solid var(--primary-clr);
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

/* Select venue css End */

/* Notification css Start */

.notification-card {
    width: 100%;
    background: var(--dark-grey);
    padding: 30px 24px;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.notification-card:not(:last-child) {
    margin-bottom: 10px;
}
.notification-card.new-ntf::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 4px;
    height: 70%;
    border-radius: 10px;
    background: var(--primary-clr);
    transform: translateY(-50%);
}
.ntf-user-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 25px;
}
.ntf-user-profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.ntf-details {
    width: calc(100% - 170px);
    padding-right: 150px;
}
.ntf-details .h4 {
    font-size: 17px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-transform: capitalize;
}
.ntf-details p {
    font-size: 13px;
    font-family: var(--pp-font);
    color: #979797;
    margin-bottom: 5px;
}
span.ntf-time {
    width: 85px;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #979797;
    margin-left: 10px;
}

/* Notification css End */

/* Discount css Start */

.discount-card {
    padding: 13px;
    background: var(--dark-grey);
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px 25px;
}
.discount-card:not(:last-child) {
    margin-bottom: 28px;
}
.discount-card-img-blk {
    width: 324px;
    height: 207px;
    border-radius: 12px;
}
.discount-card-img-blk img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.discount-card-detail-blk {
    width: calc(100% - 349px);
}
.discount-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-right: 50px;
}
.discount-card-header h2 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.discount-action-blk .text-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
p.d-time-info {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 2px;
}
p.d-time-info span {
    color: var(--primary-clr);
}
p.d-location-info {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.discount-main-detail-blk {
    margin-top: 5px;
}
.discount-main-detail-blk .card-table-tr {
    justify-content: space-between;
    border: 0px;
}

.discount-main-detail-blk .card-table-tr div {
    width: 160px;
    flex-basis: auto;
}
.discount-main-detail-blk .card-table-tr div {
    text-align: left;
}
.discount-main-detail-blk .card-table-thead {
    border: 0px;
}
.discount-main-detail-blk .card-table-tr {
    padding: 3px 0px;
}

/* Discount css End */

/* Member css Start */

.members-table-blk {
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.member-list-item {
    padding: 18px 15px;
    background: var(--dark-grey);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px 30px;
}
.member-list-item:not(:last-child) {
    margin-bottom: 8px;
}
.member-item-details {
    width: calc(100% - 180px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px 80px;
}
.member-list-item .member-item-details div.mid-blk:first-child {
    width: 186px !important;
}
.member-list-item .member-item-details div.mid-blk:nth-child(2) {
    width: 208px !important;
}
.member-list-item .member-item-details div.mid-blk:nth-child(3) {
    width: 130px !important;
}
.member-list-item .member-item-details div.mid-blk:nth-child(4) {
    width: 140px !important;
}
.member-list-item .member-item-details div.mid-blk:nth-child(5) {
    width: 100px !important;
}
.member-detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.member-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.member-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.member-detail h3 {
    font-size: 15px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.member-other-info p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: rgb(255 255 255 / 60%);
    margin-bottom: 0px;
}

span.m-status {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #979797;
    padding-left: 12px;
    position: relative;
}
span.m-status::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 20px;
    transform: translateY(-50%);
}
.st-approved {
    color: #00ff1a !important;
}
.st-approved::before {
    background-color: #00ff1a;
}
.st-pending {
    color: #ff0000 !important;
}
.st-pending:before {
    background-color: #ff0000;
}
.member-item-action {
    width: 150px;
    display: flex;
    justify-content: flex-end;
}
span.table-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    line-height: 0px;
}
span.table-check {
    line-height: 0px;
}
.table-check input[type="checkbox"] {
    display: none;
}
.table-check input + label {
    width: 30px;
    height: 16px;
    background: #8f8f8f;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
}
.table-check input + label::before {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: var(--white-clr);
    border-radius: 20px;
    transition: all 0.5s ease;
}
.table-check input:checked + label {
    background: var(--primary-clr);
}
.table-check input:checked + label::before {
    left: calc(100% - 13px);
    background: var(--black-clr);
}
.table-check input + label::after {
    position: absolute;
    content: "off";
    top: 50%;
    right: 3px;
    font-size: 5px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #fff;
    transform: translateY(-50%);
    text-transform: uppercase;
    line-height: normal;
}
.table-check input:checked + label::after {
    content: "on";
    right: calc(100% - 13px);
}
.table-edit,
.table-trash {
    border: 0px;
    background: transparent;
    padding: 0px;
    line-height: 0px;
    cursor: pointer;
}

.common-pagination-blk {
    margin-top: 60px;
}
.common-pagination-blk ul.pagination {
    margin-bottom: 0px;
    align-items: center;
    gap: 5px;
}
.common-pagination-blk ul.pagination,
.common-pagination-blk .page-link {
    background-color: var(--black-clr);
    border: 0px;
}
.common-pagination-blk ul li.page-item.disabled .page-link i {
    color: #6d6d6d;
    font-size: 15px;
}
.common-pagination-blk .page-link {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--white-clr);
    width: 46px;
    height: 46px;
    background: var(--black-clr);
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.common-pagination-blk .page-item.active .page-link {
    width: 56px;
    height: 56px;
    background: var(--primary-clr);
    box-shadow: 0px 4px 22px rgb(176 176 176 / 25%);
}
.common-pagination-blk .page-link:hover {
    background: var(--dark-grey);
}
.common-pagination-blk .page-item .page-link:focus {
    box-shadow: none;
}
.common-pagination-blk .page-item.active .page-link:focus {
    box-shadow: 0px 4px 22px rgb(176 176 176 / 25%);
}

.member-profile-wrapper {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    position: relative;
}
.member-profile-upload {
    width: 82px;
    height: 82px;
    border-radius: 50%;
}
.member-profile-upload img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.upload-member-file {
    position: absolute;
    content: "";
    bottom: -3px;
    right: -3px;
    width: 24px;
    height: 24px;
}
.upload-member-file label {
    width: 24px;
    height: 24px;
    border-radius: 50px;
    background: #cc9a34;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.upload-member-file label span.member-upld-icon {
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.upload-member-file label span.member-upld-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Member css End */

/* FAQ css Start */

.faq-wrapper .accordion-item {
    border-radius: 14px !important;
    background-color: var(--dark-grey);
}
.faq-wrapper .accordion-item:not(:last-child) {
    margin-bottom: 10px;
    border: 0px;
}
.accordion-button::after {
    filter: invert(10) brightness(13);
}
.faq-wrapper button.accordion-button {
    background: var(--dark-grey);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--ub-font);
    color: var(--white-clr);
    border-radius: 14px !important;
    padding: 26px 36px 26px 42px;
    box-shadow: none !important;
}
.faq-wrapper .accordion-body {
    padding: 10px 36px 26px 42px;
    background: var(--dark-grey);
}
.faq-wrapper .accordion-button:not(.collapsed) {
    font-size: 20px;
    font-weight: 600;
    border-radius: 14px 14px 0px 0px !important;
}
.faq-wrapper .accordion-collapse.collapse.show .accordion-body {
    border-radius: 0px 0px 14px 14px !important;
}
.faq-wrapper .accordion-body p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--pp-font);
    line-height: 30px;
    color: var(--white-clr);
    margin-bottom: 0px;
}

/* FAQ css End */

/* Contact us Chat css Start */

.message-header {
    padding: 22px 30px;
    background: #212121;
    border-radius: 20px 20px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.message-profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
}
.message-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.message-user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.message-profile h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    margin-bottom: 0px;
}
.message-user-info p {
    font-size: 12px;
    color: #ddd;
    margin-bottom: 0px;
}
.chat-time-blk {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #565656;
    text-align: center;
    margin: 10px 0px;
}
.message-box {
    padding: 30px;
    background: var(--dark-grey);
    max-height: 500px;
    min-height: 500px;
    overflow-y: auto;
}
.receive-message-box {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: auto;
    margin-bottom: 25px;
}

.sent-message-box {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: auto;
    flex-direction: row-reverse;
}
.sent-message-box:not(:last-child) {
    margin-bottom: 25px;
}
.sent-message-box .m-profile-img {
    margin-left: 18px;
    margin-right: 0px;
}
span.m-time {
    position: absolute;
    content: "";
    top: 0;
    left: -75px;
    font-size: 14px;
    font-family: var(--pp-font);
    color: #9b9b9b;
    width: 70px;
    text-align: left;
    font-weight: 500;
}
.receive-message-box span.m-time {
    left: 100%;
    text-align: end;
    font-family: var(--pp-font);
}
.r-txt-message {
    max-width: calc(100% - 58px);
    padding: 15px 50px 15px 24px;
    background: #555555;
    border-radius: 0px 20px 20px;
}
.m-txt-message {
    max-width: calc(100% - 58px);
    padding: 15px 24px 15px 50px;
    background: var(--primary-clr);
    border-radius: 20px 0px 20px 20px;
}
.r-txt-message p {
    margin: 0px;
    color: var(--white-clr);
    font-family: var(--pp-font);
}
.m-txt-message p {
    color: var(--black-clr);
    margin: 0px;
    font-family: var(--pp-font);
}
.m-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 18px;
    box-shadow: 0px 6px 8px rgba(16, 27, 79, 0.202163);
}

.m-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.message-input-btn {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    background: var(--dark-grey);
    border-radius: 0px 0px 20px 20px;
    padding: 10px 30px 30px 30px;
}
.message-action {
    /* width: calc(100% - 75px); */
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #212121;
    border-radius: 20px;
    padding: 8px 20px 8px 8px;
    box-shadow: 0px 15px 30px rgb(0 0 0 / 15%);
}
.message-userprofile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0px 6px 8px rgb(0 0 0 / 20%);
}
.message-userprofile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.message-int {
    max-width: calc(100% - 37px);
    width: 100%;
}
.message-input-btn input {
    width: 100%;
    border: 0px;
    background: #212121;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 18px;
    font-family: var(--pp-font);
    color: var(--white-clr);
}
.message-input-btn input::placeholder {
    color: #9b9b9b;
}
.message-int input:focus {
    box-shadow: none;
    background: var(--white-clr);
    border-color: #3a57e8;
    color: var(--black-clr);
}
.message-btn {
    width: 27px;
    margin-left: 10px;
}
button.btn.chat-send-btn {
    padding: 0;
    color: var(--primary-clr);
    border: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}
button.btn.chat-send-btn i {
    font-size: 27px;
}
button.btn.chat-send-btn:hover {
    color: #cdcdcd;
}
button.btn.chat-send-btn:focus,
button.btn.chat-send-btn:focus-visible {
    outline: none;
    border: 0px;
    box-shadow: none;
}
.chat-loader {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    color: var(--dark-grey);
    -webkit-animation: animloader 1.5s linear infinite;
    animation: animloader 1.5s linear infinite;
}

@keyframes animloader {
    0% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    25% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    50% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 2px;
    }
    75% {
        box-shadow: 10px 0 0 2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    100% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 2px, -10px 0 0 -2px;
    }
}
@-webkit-keyframes animloader {
    0% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    25% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    50% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 2px;
    }
    75% {
        box-shadow: 10px 0 0 2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    100% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 2px, -10px 0 0 -2px;
    }
}
@-moz-keyframes animloader {
    0% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    25% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    50% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 -2px, -10px 0 0 2px;
    }
    75% {
        box-shadow: 10px 0 0 2px, 30px 0 0 -2px, -10px 0 0 -2px;
    }
    100% {
        box-shadow: 10px 0 0 -2px, 30px 0 0 2px, -10px 0 0 -2px;
    }
}
.chatclosed-blk {
    width: 100%;
    background: var(--secondary-clr);
    border-radius: 0px 0px 20px 20px;
    padding: 10px 30px 30px 30px;
}
.chatclosed-blk p {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-clr);
    text-align: center;
    margin-bottom: 0px;
    padding: 10px;
    background: #2e2d2d;
    border-radius: 25px;
}

/* Contact us Chat css End */

/* Privacy and terms css Start */

.common-text-blk h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
}
.common-text-blk :is(p, li, pre) {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    line-height: 30px;
    white-space: break-spaces;
}
.common-text-blk :is(ul, ol) {
    padding-left: 18px;
}

/* Privacy and terms css End */

/* Profile page css Start */

.common-field .edit-btn {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}
.dflex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}
.profile-img-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: -100px 0px 30px;
    position: relative;
    z-index: 1;
}
.profile-blk {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--white-clr);
    position: relative;
}
.profile-blk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.profile-img-upload {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: none;
    transition: all 0.3s ease-in-out;
}
.profile-img-upload label {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000069;
    cursor: pointer;
}
.profile-img-upload label svg {
    width: 24px;
    height: 24px;
}
.profile-blk:hover .profile-img-upload {
    display: block;
}
.profile-company-name p span {
    font-size: 12px;
    font-family: var(--pp-font);
    color: var(--primary-clr);
    display: block;
    margin-top: 2px;
}
.profile-company-name p {
    font-family: var(--pp-font);
    color: var(--white-clr);
}

.edit-profile-blk .edit-btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    border: 1px solid var(--white-clr);
    border-radius: 30px;
    background: var(--black-clr);
}
#changePassword .modal-dialog {
    max-width: 675px;
}
.form-edit {
    border-color: var(--primary-clr) !important;
}

/* Profile page css End */

/* toaster css start */

.toast-success {
    background-color: #28a745;
    color: #fff;
}

/* Customize Toaster error notification */

.toast-error {
    background-color: #dc3545;
    color: #fff;
}

.toast-warning {
    background-color: #dc3545;
    color: #fff;
}

/* toaster css end */

.iti.iti--allow-dropdown {
    display: block;
    background-color: rgb(255 255 255 / 8%);
    border: 0.5px solid var(--primary-clr);
    font-size: 16px;
    font-family: var(--pp-font);
    border-radius: 4px;
    height: 38px;
}

span.selected-country {
    position: absolute;
    content: "";
    top: 50%;
    left: 46px;
    width: calc(100% - 46px);
    transform: translateY(-50%);
    color: var(--white-clr);
    font-size: 13px;
    padding: 9px 30px 9px 5px;
}

/* .credential-section .input-field :is(.form-control, .form-select):focus {
  background-color: rgb(255 255 255 / 8%) !important;
  color: var(--white-clr) !important;
  } */

.iti__flag-container {
    width: 100%;
}
.form-btn-blk span {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr) !important;
    text-align: center;
}
.time-counter {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.time-counter span {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-align: center;
}

/* Page not found css start */

section.not-page-hero-section {
    padding: 0px 0px 0px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
.not-found-img-blk {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
section.not-page-hero-section .hero-wrapper h1 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
    text-align: center;
    margin-bottom: 0px;
}

/* Page not found css End */

.contact-no-history {
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}
.ch-history-text p {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #b7b7b7;
    margin-bottom: 0px;
    text-align: center;
}
.st-closed {
    color: #00bbbb !important;
}
.st-closed::before {
    background: #00bbbb;
}

.chquries-blk:not(:last-child) {
    margin-bottom: 30px;
}
.chquries-date-blk {
    margin-bottom: 10px;
}
span.chquries-date {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #7e7e7e;
    letter-spacing: 2px;
}
.chquries-list-item {
    padding: 18px 26px;
    background: var(--dark-grey);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.chquries-list-item:not(:last-child) {
    margin-bottom: 10px;
}
.chquries-detail h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--white-clr);
}
.chquries-detail p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #b7b7b7;
    margin-bottom: 0px;
}
.chquries-amount-blk {
    text-align: end;
}
span.chquries-v-chat {
    font-size: 16px;
    font-weight: 900;
    font-family: var(--pp-font);
    color: var(--primary-clr);
}

/* thanks page */

.thanks-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    background: url(../images/thanks-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.thanks-wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000d1 89%, #000);
    z-index: -1;
}

.envelope-img {
    width: 184px;
    height: 184px;
    margin: 0px auto 10px;
}

.envelope-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thanks-inner-wrapper h1 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--ub-font);
    color: var(--white-clr);
    margin-bottom: 16px;
    text-align: center;
}

.thanks-inner-wrapper p {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--ub-font);
    color: var(--white-clr);
    text-align: center;
    width: 65%;
    margin: 0 auto;
}

.thanks-explore-btn-blk {
    margin-top: 46px;
}

.thanks-explore-btn-blk a {
    padding: 20px 30px;
    font-size: 20px;
    font-family: var(--ub-font);
}

.common-field .info-text {
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.currency_text {
    position: relative;
    padding-left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.currency_text::before {
    position: absolute;
    /* content: attr(data-text); */
    content: "\e900";
    top: 0;
    left: 0;
    color: var(--bs-white);
    font-size: 14px;
    font-family: "saudi_riyal" !important;
    /* line-height: 14px; */
}
/* .currency_text::before {
    content: "\e900";
    font-family: 'saudi_riyal' !important;
    font-size: inherit;
    color: inherit;
} */
span.event-values .currency_text::before {
    color: var(--primary-clr);
}
.input_currency {
    position: absolute;
    content: "";
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    line-height: normal;
    padding: 0px;
}
.label_currency .input_currency {
    position: relative;
    top: 0;
    left: -2px;
    transform: none;
    width: 13px;
    height: 13px;
}
.label_currency .currency_text::before {
    color: #000;
}
.with_currency_input_field input {
    padding-left: 32px !important;
}
span.trsn-amount.currency_text::before {
    color: var(--primary-clr);
}
.event-static-card .currency_text::before {
    font-size: 27px !important;
    font-weight: 700;
    line-height: 27px;
}
.event-static-card .currency_text {
    padding-left: 35px;
    display: inline-block !important;
}
.currency_tag {
    position: absolute;
    content: "";
    top: 50%;
    left: 15px;
    font-size: 15px;
    color: var(--bs-white);
    transform: translateY(-50%);
    line-height: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.price_field input {
    padding-left: 35px !important;
    line-height: normal;
}
/* Media CCS Start */

@media screen and (max-width: 1880px) {
    .newlogin .credential-form-blk .credential-inner .credential-heading h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 1400px) {
    .credential-wrapper {
        padding: 45px 40px 20px;
    }
    .credential-logo-blk {
        width: 180px;
        height: 50px;
    }
    .credential-form-blk form {
        margin: 40px 0px 25px;
    }
    .form-field-blk label {
        font-size: 14px;
    }
    .form-content-blk :is(p, span) {
        margin-bottom: 5px;
    }
    header::before {
        max-width: 82%;
    }
    .events-card-img-blk {
        height: 244px;
    }
    .footer-navigation ul {
        justify-content: center;
        gap: 25px 40px;
    }
    a.footer-link {
        font-size: 14px;
        letter-spacing: 3.2px;
    }
    .rtl .credential-section .language-selector-blk {
        right: auto;
        left: 40px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0px 1.5rem;
    }
    .menu-wrapper {
        display: none;
    }
    header::before {
        max-width: 90%;
    }
    .btn-box {
        display: flex;
    }
    .hero-wrapper h1 {
        font-size: 52px;
    }
    .sub-heading h2 {
        font-size: 32px;
    }
    .common-sub-heading h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 992px) {
    .hero-wrapper h1 {
        font-size: 42px;
    }
    section.common-hero-section .hero-wrapper h1 {
        font-size: 30px;
    }
    .sub-heading h2 {
        font-size: 24px;
    }
    .event-thumbnail-blk {
        width: 275px;
        height: 235px;
    }
    .event-info-blk {
        width: calc(100% - 315px);
    }
    .discount-card-header {
        padding-right: 0px;
    }
    .discount-card-img-blk {
        width: 224px;
    }
    .discount-card-detail-blk {
        width: calc(100% - 249px);
        padding-right: 0px;
    }
    .discount-card-header h2 {
        font-size: 20px;
    }
    .message-profile h3 {
        font-size: 18px;
    }
    .receive-message-box,
    .sent-message-box {
        width: 80%;
    }
    :is(.r-txt-message, .m-txt-message) p {
        font-size: 14px;
    }
    span.m-time {
        font-size: 12px;
    }
    /* new login css */

    section.credential-section.newlogin {
        height: 100%;
    }
    .newlogin .credential-logo {
        position: static;
        width: 130px;
    }
    .newlogin :is(.credential-content-blk, .credential-form-blk) {
        height: 100%;
        min-height: 100%;
    }
    .newlogin .credential-content-blk {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 66px 30px;
    }
    .newlogin .credential-content-blk .credential-content {
        max-width: 100%;
        margin-top: 35px;
    }
    .credential-btn-blk {
        display: flex;
        justify-content: center;
        margin-top: 50px;
        position: static;
    }
    .newlogin .language-selector-blk {
        z-index: 1;
    }
    .newlogin .credential-heading h2 {
        text-align: center;
    }
    span.or-text {
        display: block;
        font-size: 24px;
        font-weight: 600;
        font-family: var(--ub-font);
        color: var(--primary-clr);
        text-align: center;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 1600px) and (max-height: 768px) {
    .newlogin .credential-form-blk .credential-logo {
        top: 50px;
    }
    .newlogin .credential-form-blk .credential-inner .credential-heading h2 {
        font-size: 28px;
    }
    .newlogin .credential-form-blk .credential-inner .form-fields-wrapper {
        margin-top: 38px;
    }
    .newlogin .form-fields-wrapper .form-field-blk label {
        font-size: 16px !important;
    }
    .newlogin .form-fields-wrapper .form-field-blk .input-field .form-control {
        font-size: 16px;
        padding: 14px 34px 14px 24px !important;
    }
    .newlogin
        .form-fields-wrapper
        .form-field-blk
        .input-field
        .form-control::placeholder {
        font-size: 16px;
    }
    .newlogin
        .form-fields-wrapper
        .form-field-blk
        .input-field
        input.form-control {
        padding: 14px 34px 14px 24px !important;
    }
    .rtl
        .newlogin
        .form-fields-wrapper
        .form-field-blk
        .input-field
        .form-control {
        padding: 14px 24px 14px 34px !important;
    }
    .form-btn-blk {
        margin-top: 45px;
    }
    .newlogin .form-btn-blk .form-btn-login {
        font-size: 16px;
    }
    .newlogin .credential-content-blk .credential-content p {
        font-size: 18px;
        line-height: 28px;
    }
    .newlogin .credential-btn-blk a.primary-btn {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .newlogin .credential-content-blk .credential-content p {
        font-size: 18px;
        line-height: 28px;
    }
    .newlogin .credential-form-blk .credential-inner .credential-heading h2 {
        font-size: 28px;
    }
    .newlogin .form-fields-wrapper .form-field-blk .input-field .form-control {
        font-size: 16px;
        padding: 14px 20px !important;
    }
    .newlogin .form-fields-wrapper .form-field-blk label {
        font-size: 16px !important;
    }
    .terms-agree-check p {
        font-size: 16px;
    }
    .checkbox input + label {
        width: 18px;
        height: 18px;
    }
    .header-flex-wrapper {
        padding-bottom: 25px;
    }
    .footer-flex-blk {
        justify-content: space-between;
        gap: 50px;
    }
    .footer-logo-blk {
        width: 130px;
        height: 52px;
    }
    .footer-navigation ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px 30px;
    }
    a.footer-link {
        font-size: 14px;
        letter-spacing: 2.2px;
    }
    .app-link-blk {
        justify-content: center;
        align-items: center;
    }
    .app-link-blk a {
        width: 150px;
        height: 45px;
    }
    .copyright-content p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .event-thumbnail-blk {
        width: 275px;
        height: 235px;
    }
    .event-info-blk {
        width: calc(100% - 315px);
    }
    .discount-main-detail-blk {
        overflow-x: auto;
    }
    .card-table-layout {
        overflow-x: auto;
    }
    .card-table-thead,
    .card-table-body {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .discount-card-img-blk {
        width: 224px;
    }
    .ntf-details {
        padding-right: 50px;
    }
    .cc-member-wrapper {
        padding-bottom: 50px;
    }
    .cc-slider ul.slick-dots {
        bottom: -45px;
    }
    .add-member-item {
        width: 160px;
    }
    .transaction-detail p {
        font-size: 12px;
    }
}
@media screen and (max-width: 720px) {
    .event-thumbnail-blk {
        width: 100%;
        height: 235px;
    }
    .event-info-blk {
        width: 100%;
    }
    .card-table-layout {
        overflow-x: auto;
    }
    .card-table-thead,
    .card-table-body {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .card-table-tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
    }
    .card-table-tr div {
        width: 108px;
    }
    .discount-main-detail-blk {
        overflow-x: auto;
    }
    .discount-main-detail-blk .card-table-tr div {
        width: 140px;
        flex-basis: auto;
    }
    .discount-action-blk .text-btn {
        font-size: 13px;
        background: #222;
        padding: 2px 10px;
        border-radius: 3px;
    }
}

@media screen and (max-width: 610px) {
    .signup-wrapper .form-field-blk {
        width: 100%;
    }
    .newlogin .credential-content-blk {
        padding: 30px 20px 30px;
    }
    .newlogin .credential-form-blk .credential-inner .form-fields-wrapper {
        margin-top: 38px;
    }
    .newlogin .form-btn-blk .form-btn-login {
        padding: 10px 24px;
        font-size: 16px;
    }
    .newlogin .credential-btn-blk a.primary-btn {
        padding: 10px 60px;
        font-size: 16px;
    }
}
@media screen and (max-width: 576px) {
    .container {
        padding: 0px 1rem;
    }
    .newlogin .credential-logo {
        width: 100px;
        margin-bottom: 30px;
    }
    .newlogin .credential-form-blk .credential-inner .credential-heading h2 {
        font-size: 24px;
    }
    .newlogin .credential-content-blk .credential-content h1 {
        font-size: 24px;
    }
    .newlogin .credential-content-blk .credential-content p {
        font-size: 15px;
        line-height: 24px;
    }
    .newlogin .form-fields-wrapper .form-field-blk label {
        font-size: 14px !important;
    }
    span.or-text {
        font-size: 20px;
    }
    .terms-agree-check {
        gap: 12px;
    }

    section.credential-section.signup-section {
        min-height: 480px;
        height: 100%;
        padding: 40px 15px;
    }
    .credential-section .language-selector-blk {
        right: 24px;
    }
    .rtl .credential-section .language-selector-blk {
        right: auto;
        left: 24px !important;
    }
    .credential-wrapper {
        padding: 50px 25px 20px;
    }
    .credential-logo-blk {
        width: 180px;
        height: 54px;
    }
    .credential-form-blk form {
        margin: 25px 0px 20px;
    }
    .signup-wrapper .form-field-blk {
        width: 100%;
    }
    .otp-field-blk {
        gap: 10px;
    }
    .otp-field-blk .input-field .form-control {
        width: 40px;
        height: 40px;
    }
    .form-field-blk label {
        font-size: 14px;
    }
    .form-content-blk :is(p, span) {
        font-size: 14px;
    }
    .header-flex-wrapper {
        padding-bottom: 25px;
    }
    .logo-blk {
        width: 100px;
        height: 40px;
    }
    .hero-wrapper h1 {
        font-size: 32px;
    }
    section.common-hero-section .hero-wrapper h1 {
        font-size: 28px;
    }
    .sub-heading h2 {
        font-size: 20px;
    }
    .hero-wrapper p {
        width: 85%;
        font-size: 14px;
    }
    .events-card-img-blk,
    .eventcard-listing .events-card-img-blk {
        width: 100%;
        height: 150px;
    }
    .events-card-details h3 {
        font-size: 17px;
        font-weight: 600;
    }
    .ticket-scan-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .ticket-scan-submit-btn {
        padding: 6px 10px;
    }
    .footer-flex-blk {
        justify-content: center;
        gap: 50px;
    }
    .footer-logo-blk {
        width: 130px;
        height: 52px;
    }
    .footer-navigation ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px 30px;
    }
    a.footer-link {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    .app-link-blk {
        justify-content: center;
        align-items: center;
    }
    .app-link-blk a {
        width: 150px;
        height: 45px;
    }
    .copyright-content p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    :is(.category-slider) .slick-slide:not(:last-child) {
        margin-right: 35px;
    }
    span.category-title {
        font-size: 16px;
    }
    span.category-img {
        width: 100px;
        height: 100px;
    }
    span.category-img img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
    .category-slider ul.slick-dots {
        bottom: -45px;
    }
    .selection-btn {
        padding: 10px 10px;
        width: 105px;
    }
    a.follow-updates-blk h2 {
        font-size: 14px;
    }
    .card-wrapper {
        padding: 30px 15px;
    }
    .discount-card-img-blk {
        width: 100%;
    }
    .discount-card-detail-blk {
        width: 100%;
        padding-right: 0px;
    }
    .discount-card-header h2 {
        font-size: 20px;
    }
    .ntf-user-profile {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }
    .ntf-details {
        width: calc(100% - 60px);
        padding-right: 0px;
        padding-bottom: 15px;
    }
    span.ntf-time {
        width: 70px;
        position: absolute;
        content: "";
        bottom: 10px;
        right: 10px;
    }
    .add-member-item {
        width: 140px;
    }
    .message-header {
        padding: 22px 15px;
    }
    .message-box {
        padding: 30px 15px;
    }
    .m-profile-img {
        display: none;
    }
    span.m-time {
        left: -60px;
        font-size: 12px;
        width: 60px;
    }
    .m-txt-message {
        max-width: 100%;
        padding: 15px 20px 15px 20px;
    }
    .r-txt-message {
        max-width: 100%;
        padding: 15px 20px 15px 20px;
    }
    .message-input-btn {
        padding: 10px 15px 30px 15px;
    }
    .message-input-btn input {
        font-size: 14px;
    }
    .chatloader .r-txt-message {
        padding: 8px 50px 8px 24px;
    }
    .addmember-wrapper {
        padding: 10px 15px 40px;
    }
    .modal-header {
        padding: 25px 15px;
    }
    .addmember-modal .modal-title,
    .modal-title {
        font-size: 18px;
    }
    .common-field-blk label {
        font-size: 14px;
    }
    .chart {
        width: 100%;
        height: 400px;
    }
    .venue-wrapper .common-sub-heading h2 {
        font-size: 15px;
    }
    .select-venue-field {
        width: calc(100% - 85px);
        gap: 10px;
    }
    .remove-btn-blk {
        width: 75px;
    }
    .remove-btn-blk button {
        width: 35px;
        height: 35px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
        font-size: 13px;
    }
    span.btnicon {
        display: block;
    }
    span.btntxt {
        display: none;
    }
    .text-btn {
        font-size: 14px;
    }
    .profile-blk {
        width: 110px;
        height: 110px;
        border: 3px solid var(--white-clr);
    }
    .edit-profile-blk .edit-btn {
        padding: 5px 15px;
        font-size: 12px;
    }
    .check-label h2 {
        font-size: 20px;
    }
    .check-label {
        width: 100%;
    }

    .thanks-inner-wrapper h1 {
        font-size: 32px;
    }
    .thanks-inner-wrapper p {
        font-size: 16px;
        width: 75%;
    }
    .thanks-explore-btn-blk a {
        padding: 15px 30px;
        font-size: 18px;
        font-family: var(--ub-font);
    }
}

@media screen and (max-width: 420px) {
    .otp-field-blk .input-field .form-control {
        width: 32px;
        height: 32px;
        padding: 0px;
    }
    .credential-form-blk form {
        margin: 30px 0px 20px;
    }
    .logo-blk {
        width: 90px;
        height: 35px;
    }
    .heading-flex-box {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    button.navtab-link {
        padding: 8px 10px;
    }
    .common-sub-heading h2 {
        text-align: center;
    }
    .profile-section .heading-flex-box {
        justify-content: flex-start;
    }
    .profile-section .common-sub-heading h2 {
        text-align: left;
    }
}
