:root {
    --primary-color: #1e1e1e;
    --admin-sidebar-color: linear-gradient(0deg, #350000, #000000);
    --white-color: #FFFFFF;
    --black-color: #000000;

    --border-color: #B2B2B2;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.gray-bg {
    background-color: #f7f7f7;
}

/*/ Input field /*/
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="file"],
.dropdown .btn,
select {
    height: 50px !important;
    max-width: 384px;
    width: 100%;
    border: 1px solid #B2B2B2;
    border-radius: 5px;
    padding-inline: 8px;
}

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

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

select option {
    padding: 10px;
    background-color: var(--white-color);
    color: #333;
    border-bottom: 1px solid #ddd;
}

.select2-container--default .select2-search--inline .select2-search__field {
    border: 0px !important;
    border-radius: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px !important;
}

.dropdown .btn:hover {
    border-color: #1e1e1e !important;
}

.dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 20px;
}

textarea {
    border: 1px solid #B2B2B2 !important;
    border-radius: 5px;
    padding-inline: 8px;
}

input[type="file"] {
    padding-block: 8px;
}

label.label-hidden {
    visibility: hidden;
}

/*/ Button /*/
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.9;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--primary-color) !important;
}

.btn-sm {
    height: 40px;
    width: 125px;
    border-radius: 5px;
}

.btn-lg {
    height: 50px;
    border-radius: 10px;
}

.full-width-btn {
    width: 100%;
}

.primary-btn {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--primary-color) !important;
}

.outline-btn {
    background: var(--white-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.transparent-btn {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
}

.btn.max-width {
    width: max-content;
}

/*.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{*/
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: transparent !important;
}

.section-container {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
}

video,
img {
    width: 100%;
}

a {
    text-decoration: none !important;
    color: #000 !important;
}

.dashboard-wrapper a {
    color: #000;

}

span.error {
    color: red;
    /*display: none;*/
}

.error-message {
    position: absolute;
    color: red;
    font-size: 14px;
    top: 100%;
}

input.error {
    border: 1px solid red;
}

input.error:active,
input.error:focus,
input.error:focus-visible {
    border: 1px solid red;
    outline: none;
}

.select2-container {
    max-width: 100% !important;
    width: 100%;
}

.select2-container .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    min-height: 50px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #1e1e1e !important;
    color: var(--white-color) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: rgba(0, 0, 0, 1) !important;
    border: 1px solid black !important;
    color: var(--white-color) !important;
}

.gap-20px {
    gap: 20px;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-block: 25px;
}

.navigation-links {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.navigation-links a {
    color: #424242;
}

.button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.sidebar .nav {
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: var(--primary-color);
    max-width: 261px;
    width: 60px;
    z-index: 99;
    transition: .4s ease;
}

.admin-sidebar {
    background: var(--admin-sidebar-color);
}

.sidebar .nav.active-walkthrough {
    width: 261px;
}

.sidebar .nav.active-walkthrough .nav__link span,
.sidebar .nav.active-walkthrough .nav__header-name {
    visibility: visible;
}

.sidebar .nav:hover {
    width: 100%;
}

.sidebar .nav:hover .nav__header-name {
    visibility: visible;
    padding-inline: 20px;
}

.sidebar .nav:hover .nav__link span {
    visibility: visible;
}

.sidebar .nav__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    scrollbar-width: none;
    width: 100%;
}

/* / For Google Chrome and others / */
.sidebar .nav__container::-webkit-scrollbar {
    display: none;
}

.sidebar .nav__logo {
    margin-top: 25px;
}

.sidebar .nav__logo img {
    width: 48px;
}

.sidebar .nav__header {
    margin-top: 48px;
    margin-bottom: 24px;
}

.sidebar .nav__header-name {
    white-space: nowrap;
    color: var(--white-color);
    font-size: 18px;
    padding-inline: 20px;
    visibility: hidden;
    transition: .4s;
}

.sidebar .nav__list,
.sidebar .nav__items {
    display: grid;
}

.sidebar .nav__list {
    row-gap: 15px;
}

.sidebar .nav__items {
    row-gap: 15px;
}

.sidebar .nav__subtitle {
    text-transform: normal;
    color: var(--white-color);
}

.sidebar .nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-color) !important;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar .nav__link .fixed-width-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
}

.sidebar .nav__link span {
    visibility: hidden;
    transition: .4s;
}

.sidebar .nav__link.active {
    background: #343434;
}

.sidebar .nav__link:hover {
    color: var(--white-color);
    background: #343434;
}

.admin-sidebar .nav__link.active {
    background: #9d0b0e !important;
}

.admin-sidebar .nav__link:hover {
    background: #9d0b0e;
}

.sidebar .nav__name {
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    color: var(--white-color);
}

/* / Dropdown / */
.sidebar .nav__dropdown {
    overflow: hidden;
    max-height: 54px;
    transition: .4s ease-in-out;
}

.sidebar .nav__dropdown-collapse {
    padding-left: 24px;
    border-radius: 5px;
}

.sidebar .nav__dropdown-content {
    display: grid;
    margin-top: 8px;
}

.sidebar .nav__dropdown-item {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    padding: 15px 20px;
}

.sidebar .nav__dropdown-icon {
    margin-left: auto;
    transition: .4s;
}

.sidebar .nav__dropdown:hover {
    max-height: 100rem;
}

.sidebar .nav__dropdown:hover .nav__dropdown-icon,
.sidebar .nav__dropdown .nav__link.active .nav__dropdown-icon {
    /*transform: rotate(180deg);*/
}


/*===== Active link =====*/
/* .active {
    color: var(--white-color);
}*/


/*/ Login page /*/
.page-header {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}

.gray-background-container {
    background-color: #FCFCFC;
    box-shadow: 0px 10px 20px 0px #c7c7c740;
    border-radius: 10px;
    border: 0.5px solid #D6D6D6;
    padding: 40px;
}

.login-wrapper .form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.login-wrapper .form-container form {
    display: flex;
    flex-direction: column;
    max-width: 384px;
    width: 100%;
}

.login-wrapper .form-container .left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.login-wrapper .input-wrapper.password,
.login-wrapper .select-user {
    margin-top: 20px;
    position: relative;
}

.login-wrapper .toggle-password {
    position: absolute;
    right: 16px;
    bottom: 16px;
    cursor: pointer;
}

.remember-forgot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 9px;
}

.remember-forgot-container a {
    color: #090914;
}

.login-wrapper .select-user {
    position: relative;
}

.login-wrapper .form-container .login-btn {
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    color: var(--white-color);
}

.login-wrapper .form-container .resend-otp {
    color: #1E1E1E;
    text-decoration: underline !important;
    font-size: 12px !important;
    background-color: transparent !important;
    border: 0;
}

.login-wrapper .sign-up-text {
    margin-top: 30px;
    text-align: center;
}

.login-wrapper .sign-up-text p {
    font-size: 14px;
    color: #71717A;
}

.login-wrapper .sign-up-text a {
    font-weight: 600;
    color: #1E1E1E;
}

.right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.right-side img {
    width: 48px;
}

.right-side h2 {
    font-size: 46px;
    white-space: nowrap;
    overflow: hidden;
    animation: typewriter 3s steps(10) forwards, blink 0.7s step-end infinite;
    border-right: 2px solid black;
}

.right-side h2.finished {
    animation: typewriter 3s steps(10) forwards, blink 0.7s step-end infinite, remove-caret 0.5s forwards;
}


/* / Registration Page / */
.registration-form-container .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step {
    width: 60px;
    height: 60px;
    background: #F8F8F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.step span {
    font-size: 25px;
}

.step.active {
    background: #1E1E1E;
    color: var(--white-color);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-container p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #424242;
}

.step-indicator {
    width: 100%;
    position: relative;
    z-index: 2;
}

.line-through {
    position: absolute;
    top: 30px;
    z-index: -1;
    height: 1px;
    width: 100%;
    background-color: #2E2E2E;
}

.registration-form-container {
    position: relative;

}

.multi-step-form-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

form#multiStepForm {
    width: 100%;
}

.registration-title {
    font-size: 18px;
    font-weight: bold;
}

.form-step-body {
    margin-top: 43px;
}

.registration-wrapper .form-step-body .second-row {
    margin-top: 50px;
}


.registration-wrapper .other-specific-content {
    display: none;
}

.registration-button-container {
    width: 100%;
    margin-top: 50px;
}

/* .submit-registration-btn.btn.hide{
    display: none;
} */

.registration-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-registration-btn {
    margin-top: 80px;
    max-width: 358px;
    width: 100%;
}


/*  Dashboard  */
.dashboard-card {
    min-height: 120px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    border-radius: 10px;
    background: var(--white-color);
}

.dashboard-wrapper .main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 136px);
}

.dashboard-card h6 {
    font-weight: normal;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card::before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    opacity: 0;
    content: '';
    top: 105%;
    left: 5%;
    height: 10px;
    width: 90%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .15) 0, transparent 80%) !important;
    transition: all 0.3s ease;
}

.dashboard-card:hover::before {
    opacity: 1;
}


.box {
    background-color: var(--white-color);
    border-radius: 10px;
}

.ad-manager-header,
.admin-header {
    background-color: var(--white-color);
    box-shadow: 0px 4px 10px 0px #BEBEBE40;
}

.admin-header {
    background: #000000;
}

.ad-manager-header-inner,
.admin-header-inner {
    margin: 0 auto;
    height: 80px;
}

.ad-manager-header h3,
.admin-header h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 37.5px;
    letter-spacing: 0.20000000298023224px;
    text-align: left;
}

.admin-header h3 {
    color: #fff;
}

.admin-header .user-profile {
    border-color: var(--white-color);
}

.ad-manager-header-action-buttons,
.admin-header-action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.ad-manager-header-action-buttons .notifications-icon,
.admin-header-action-buttons .notifications-icon {
    border: 1px solid #1E1E1E;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ad-manager-header-action-buttons .notifications-icon,
.admin-header-action-buttons .notifications-icon {
    position: relative;
}

.admin-header-action-buttons .notifications-icon {
    border-color: #fff;
    color: #fff
}

.ad-manager-header-action-buttons .notifications-icon .notification-count,
.admin-header-action-buttons .notifications-icon .notification-count {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 12px;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #1e1e1e;
    outline: 1px solid black;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list,
.admin-header-action-buttons .notifications-icon .notification-list {
    display: none;
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    background: var(--white-color);
    min-width: 420px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0px 6px 12px -4px #A4A4A440;
    z-index: 99;
    max-height: 300px;
    overflow-y: scroll;
}

/* Style the entire scrollbar */
.ad-manager-header-action-buttons .notifications-icon .notification-list::-webkit-scrollbar,
.admin-header-action-buttons .notifications-icon .notification-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Style the "thumb" (the draggable part) */
.ad-manager-header-action-buttons .notifications-icon .notification-list::-webkit-scrollbar-thumb,
.admin-header-action-buttons .notifications-icon .notification-list::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 10px;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list::-webkit-scrollbar-track,
.admin-header-action-buttons .notifications-icon .notification-list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 12px;

}

.ad-manager-header-action-buttons .notifications-icon .notification-list.show,
.admin-header-action-buttons .notifications-icon .notification-list.show {
    display: block;
    z-index: 99;
    outline: 1px solid #333;
    box-shadow: 0px 6px 12px -4px #000;
}

.ad-manager-header-action-buttons .notifications-header,
.admin-header-action-buttons .notifications-header {
    padding: 16px 20px;
}

.ad-manager-header-action-buttons .notifications-header h4,
.admin-header-action-buttons .notifications-header h4 {
    margin-bottom: 0;
}

.admin-header-action-buttons .notifications-header h6 {
    color: #000;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list ul li .notification-time,
.admin-header-action-buttons .notifications-icon .notification-list ul li .notification-time {
    font-size: 12px;
    color: #666;
    text-wrap: nowrap;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list ul,
.admin-header-action-buttons .notifications-icon .notification-list ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list ul li,
.admin-header-action-buttons .notifications-icon .notification-list ul li {
    padding: 16px 20px;
    border-bottom: 1px dashed #666;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list ul li.unread,
.admin-header-action-buttons .notifications-icon .notification-list ul li.unread {
    background: rgba(0, 0, 0, 0.091);
}

.ad-manager-header-action-buttons .notifications-icon .notification-list ul li a,
.admin-header-action-buttons .notifications-icon .notification-list ul li a {
    flex: 1;
    width: 100%;
}

.ad-manager-header-action-buttons .notifications-icon .notification-list ul li:last-child,
.admin-header-action-buttons .notifications-icon .notification-list ul li:last-child {
    border-bottom: 0px;
}


.ad-manager-header .user-profile,
.admin-header .user-profile {
    min-height: 40px;
    height: 40px;
    min-width: 40px;
    width: 40px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ad-manager-header .user-profile img,
.admin-header .user-profile img {
    overflow: hidden;
    border-radius: 100%;
    width: 100%;
    height: 100%;
}

.ad-manager-header-settings-container,
.admin-header-settings-container {
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 200px;
    top: calc(100% + 18px);
    right: 0;
    /*padding: 15px 21px;*/
    border-radius: 12px;
    box-shadow: 0px 6px 12px -4px #000;
    background-color: var(--white-color);
}

.ad-manager-header-settings-container.show,
.admin-header-settings-container.show {
    display: block;
}

.header-settings-container-inner,
.admin-header .header-settings-container-inner {
    display: flex;
    flex-direction: column;
    /*gap: 22px;*/
}

.header-settings-container-inner .link-item {
    padding: 8px 16px;
}

.header-settings-container-inner .link-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.header-settings-container-inner .link-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.header-settings-container-inner .link-item:hover {
    background: var(--primary-color);
    color: var(--white-color) !important;
}


.container-outer {
    /*max-width: 1151px;*/
    max-width: 1330px;
    margin: 0 auto;
    padding-left: 52px;
    padding-right: 50px;
    width: 100%;
    margin-bottom: 20px;
}

.go-back-button {
    margin-top: 41px;
    margin-bottom: 24px;
}

.go-back-button span {
    margin-left: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.go-back-button i {
    font-size: 18px;
    color: #1D1D1D;
}

.add-campaign-box {
    padding-bottom: 100px;
}

.box-details-section .campaign-status-header {
    font-size: 16px;
    font-weight: bold;
    color: #1d1d1d;
    margin-bottom: 0;
    margin-right: 4px;
}

.box-details-section {
    padding: 20px 40px;
    color: #1D1D1D;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-divider.dashed {
    height: 1px;
    border: 1px dashed #2121214D;
}

.pill {
    padding: 8px 20px;
    background-color: transparent;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
}

.pill.approved {
    background-color: #22C55E29;
    color: #118D57;
}

.pill.not-approved {
    background-color: #B71D1829;
    color: #B71D18;
}

.pill.live {
    background-color: #dcedff;
    color: #007BFF;
}

.pill.completed {
    background-color: #ddfff5;
    color: #20C997;
}

.pill.pending {
    background-color: #ffebc5;
    color: #FFA500;
}

.full-width {
    width: 100%;
    max-width: 100% !important;
}

table.dataTable.custom-data-table {
    width: 100% !important;
    padding: 0 !important;
    border-collapse: collapse !important;
    margin-top: 25px !important;
}

table th,
table td {
    text-align: center !important;
    padding: 18px 0px !important;
}

table thead th {
    font-size: 14px;
    color: #101010;
    font-weight: 400;
    background-color: #F9F9F9 !important;
    text-align: center;
    white-space: nowrap;
}

table.dataTable thead>tr>th.sorting_asc,
table.dataTable thead>tr>th.sorting_desc,
table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>td.sorting_asc,
table.dataTable thead>tr>td.sorting_desc,
table.dataTable thead>tr>td.sorting {
    padding: 18px 0px !important;
    cursor: pointer;
}

table thead th::after {
    display: none !important;
}

table tr {
    font-size: 14px;
    color: #1E1E1E !important;
}

table.dataTable tbody tr td {
    border-bottom: none;
    /* Prevent default borders if any */
}

table.dataTable tbody tr {
    border-bottom: 1px dashed #919EAB !important;
    /* Adjust color as needed */
}

table tbody td {
    font-size: 14px;
    color: #1E1E1E;
}

.custom-data-table .table-delete-btn,
.custom-data-table .renew-campaign,
.custom-data-table .view-btn,
.custom-data-table .action-btn,
.custom-data-table .active-btn,
.custom-data-table .inactive-btn,
.custom-data-table .view-message,
.custom-data-table .reason-btn,
.custom-data-table .edit-btn,
.custom-data-table .cancel-btn {
    font-size: 14px !important;
    padding: 2px 10px !important;
    border-radius: 8px;
    cursor: pointer;
}

.custom-data-table .view-btn {
    border: 1px solid #1e1e1e !important;
    color: var(--black-color) !important;
    background: transparent !important;
}

.custom-data-table .cancel-campaign-btn {
    border: 1px solid red !important;
    color: var(--black-color) !important;
    background: transparent !important;
    height: max-content !important;
}


/* Full calendar styles */
#date-warning {
    font-size: 0.9rem;
    padding: 8px 12px;
}

.campaign-duration-calendar table th,
.campaign-duration-calendar table td {
    padding: 0 !important;
}

.fc .fc-button .fc-icon,
.fc .fc-toolbar-title {
    font-size: 1rem;
}

.fc-daygrid-day.selected {
    background-color: #e0e0e0 !important;
}

.selected-date {
    background-color: #e2f0fd !important;
    position: relative;
}

.conflict-date {
    background-color: #f8d7da !important;
    position: relative;
    opacity: 0.8;
}

.date-label {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: bold;
}

.selected-label {
    color: #0d6efd;
}

.conflict-label {
    color: #dc3545;
}

.conflict-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 5px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 100;
}

.conflict-label:hover .conflict-tooltip {
    display: block;
}

.fc-conflict-date {
    background-color: #ffebee !important;
    border: 2px solid #f44336 !important;
}

.fc-selected-date {
    background-color: #e3f2fd !important;
    border: 2px solid #2196f3 !important;
}

.fc-badge {
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
}

.fc-badge-danger {
    background-color: #f44336;
    color: white;
}

.fc-conflict-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f44336;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 100;
}

.fc-conflict-badge:hover .fc-conflict-tooltip {
    display: block;
}

.fc-date-error {
    color: #f44336;
    padding: 8px;
    background: #ffebee;
    border-radius: 4px;
    margin-top: 5px;
}

.fc-icon {
    margin-right: 5px;
}

.fc-icon-error {
    color: #f44336;
}

.campaign-duration-calendar {
    width: 100%;
    max-width: 500px;
}

/* To change the height of each date desc in the calendar */
.fc-daygrid-day-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 !important;
}

/*Removing the event row that comes after the date field that was affecting the height to increase*/
.fc-daygrid-day-events,
.fc-daygrid-day-bg,
.fc-daygrid-day-bottom,
.fc-daygrid-event-harness,
.fc-daygrid-day-top .fc-daygrid-day-number:after,
.fc-daygrid-day-top .fc-daygrid-day-number:before {
    display: none !important;
}

.fc .fc-daygrid-day {
    padding: 0 !important;
    height: 40px;
}

.fc-daygrid-day-number {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.fc .fc-button-primary,
.fc .fc-button-primary:disabled {
    background: #1e1e1e;
    border-color: #1e1e1e;
}

/* Full calendar styles */


/* Add Generic Campaign */

.open-term-modal {
    color: blue !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

.add-campaign-box .file-input {
    /* display: none; */
    margin-bottom: 20px;
}

.add-campaign-box .file {
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
}

.add-campaign-box .file-input label,
.edit-file-input label {
    border: 1px solid #B2B2B2;
    display: block;
    position: relative;
    height: 50px;
    border-radius: 5px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e1e;
    font-weight: 400;
    cursor: pointer;
    transition: transform .2s ease-out;
}

.add-campaign-box .file-name {
    position: absolute;
    top: 100%;
    left: 0px;
    font-size: 14px;
    color: #1e1e1e;
}

.add-campaign-box .video_description textarea,
.add-campaign-box .image_description textarea {
    width: 100%;
    margin-top: 16px;
    height: 70px;
}

.statistics-container {
    border: 1px solid #ddd;
    margin-top: 20px;
    border-radius: 8px;
}

.statistics-container p {
    margin-bottom: 0;
    color: #555555;
}

.statistics-container p span.stats-value {
    color: #000;
}

.statistics-container .stats-bar-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.statistics-container .stats-bar-row .stat-bar {
    width: 33.33%;
    border-radius: 8px;
    height: 8px;
    background: #ddd;
}

.stat-bar.active {
    background: green !important;
}

.stat-tooltip p {
    font-size: 14px;
}

.estimated-data p,
.estimated-data i {
    font-size: 14px;
    color: #7a7a7a;
}

.submit-generic-campaign-btn,
.submit-edit-campaign-btn,
.submit-program-campaign-btn,
.sumbit-global-control-btn,
.submit-global-control-btn,
.update_account_btn,
.send_message_btn,
.send_enquiry_btn {
    max-width: 358px;
    width: 100%;
}

.conflict-info-card {
    width: 30px;
    height: 30px;
    background: #f8d7da;
}

.mobile-container {
    padding: 30px;
    position: sticky;
    top: -10px;
    overflow: hidden;
}

.ad-preview-container {
    position: absolute;
    inset: 0;
    padding: 40px;
    background-color: transparent;
    overflow: hidden;
    height: 670px;
}

.ad-preview-container .preview-inner {
    padding-inline: 20px;
    margin-top: 70px;
    height: 100%;
    padding-bottom: 40px;
    overflow-y: auto;
    scrollbar-width: 0px;
}

.ad-preview-container .preview-inner::-webkit-scrollbar {
    width: 0px;
    /* Width of the scrollbar */
}

.ad-preview-container .preview-back-button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 100%;
}

.ad-preview-container .search-wrapper {
    position: relative;
}

.ad-preview-container .search-wrapper .search-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 14px;
}

.ad-preview-container .search-wrapper input {
    border: 1px solid #EEEEEE !important;
    border-radius: 30px !important;
    height: 35px !important;
    padding-left: 30px !important;
}

.ad-preview-container .preview-tabs {
    display: flex;
    align-items: center;
    overflow: scroll;
}

.ad-preview-container .preview-tabs .preview-tab-item {
    font-size: 14px;
    padding: 8px 20px;
    margin: 0px;
    border-bottom: 2px solid #D3D3D3;
}

.ad-preview-container .preview-tabs .preview-tab-item:first-child {
    border-bottom: 2px solid #000;
}

.preview-container .preview-tabs::-webkit-scrollbar {
    display: none;
}

.preview-container .program-list-preview .program-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-container .program-list-preview .program-list-container {
    padding-inline: 10px;
    margin-top: 10px;
}

.preview-container .program-list-preview .program-list-card {
    border: .1px solid #c0c0c0;
    border-radius: 8px;
    padding: 8px;
    gap: 16px;
}

.preview-container .program-list-preview .program-list-card p.program-name {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-container .program-list-preview .program-list-card p {
    margin-bottom: 0;
    font-size: 10px;
}

.preview-container .program-list-preview .preview-header span {
    font-size: 12px;
}

.preview-container .program-list-preview .preview-header {
    gap: 4px;
}

.preview-container .program-list-preview .program-list-image {
    width: 90px;
    height: 70px;
}

.preview-container .program-list-preview .program-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-container .program-list-preview .program-list-card .author img {
    width: 25px;
    border-radius: 100%;
}

.preview-container .search-preview-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
}

.preview-container .search-preview-tabs .tab-item {
    padding-block: 6px;
}

.preview-container .search-preview-tabs .tab-item.active {
    border-bottom: 1px solid black;
}

.preview-container .search-preview-tabs p {
    margin-bottom: 0;
    text-align: center;
}

.preview-container .search-preview-tabs p.active {
    border-bottom: 1px solid black;
}

.preview-container .search-preview-grid,
.preview-container .profile-preview-grid {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
}

.preview-container .search-preview-grid .grid-item {
    height: 98px !important;
    position: relative;
}

.preview-container .profile-preview-grid .grid-item {
    height: 140px !important;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.preview-container .search-preview-grid .grid-item img,
.preview-container .profile-preview-grid .grid-item img {
    height: 100% !important;
    object-fit: cover !important;
}

.preview-container .force-hide {
    display: none !important;
}

.grid-item-opened,
.profile-grid-item-opened {
    display: none;
}

.preview-container .profile-preview h2 {
    font-size: 20px !important;
}

.preview-container .profile-preview .profile-photo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preview-container .profile-preview .profile-cover-image {
    height: 150px;
    object-fit: cover;
}

.preview-container .profile-preview .user-profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    margin-top: -50px;
    border: 4px solid #fff;
}

.preview-container .profile-preview .card-icon {
    gap: 12px;
}

.preview-container .profile-preview .card-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 3px 0px #2E2E2E1A;
}

.preview-container .profile-preview .nutrition-video-audio {
    padding: 10px 30px;
    margin-inline: 20px;
    border: 0.2px solid #707070;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #C9C9C940;
}

.preview-post-pill {
    position: absolute;
    top: 2px;
    left: 2px;
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    padding: 2px;
    font-size: 10px;
}

.ad-preview-container .ad-header .logo {
    min-width: 40px;
    width: 40px;
    border-radius: 40px;
    min-height: 40px;
    height: 40px;
}

.ad-preview-container .ad-header .logo img {
    border-radius: 100%;
}

.ad-preview-container .ad-header h1 {
    font-size: 17px;
    margin-bottom: 2px;
}

.ad-preview-container.program-preview .ad-header {
    margin-bottom: 10px;
}

.ad-preview-container.program-preview .ad-header h2 {
    font-size: 20px;
    margin: 0;
}

.ad-preview-container .program-card h2 {
    font-size: 12px;
    margin-bottom: 0px;
}

.ad-preview-container.program-preview .main-img {
    position: relative;
}


.ad-preview-container.program-preview .video-ad-container {
    position: absolute;
    inset: 0;
}

.ad-preview-container.program-preview video,
.ad-preview-container.program-preview .video-ad-container video {
    height: 160px;
    object-fit: cover;
}

.ad-preview-container.program-preview .video-ad-container.hidden {
    display: none;
}


.ad-preview-container.program-preview .card-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 3px 0px #2E2E2E1A;
}

.ad-preview-container.program-preview .video-details p,
.ad-preview-container.program-preview .video-details h2 {
    margin-bottom: 0px;
}

.ad-preview-container.program-preview .video-details h2 {
    font-size: 18px;
}

.ad-preview-container.program-preview .video-details p {
    font-size: 15px;
}

.ad-preview-container.program-preview .program-image-ad.hidden {
    display: none;
}

.ad-preview-container .content {
    margin-top: 10px;
}

.ad-preview-container .content.expanded {
    display: block;
    /* Show all text when expanded */
}

.ad-preview-container .content p,
.ad-preview-container .content {
    font-size: 13px;
    margin-bottom: 0;
}

.ad-preview-container .transparent-btn {
    font-size: 13px;
    color: blue;
}

.ad-preview-container .swiper {
    margin-top: 10px;
    /*height: 240px;*/
    width: 100%;
}

.ad-preview-container #multi-img.hidden {
    display: none;
}

.single-image-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* or a fixed height */
}

.single-image-preview .swiper-slide {
    width: auto;
    /* Ensures no shifting */
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-image-preview {
    transform: translate3D(0, 0, 0) !important;
}

.ad-preview-container #single-image.hidden,
.ad-preview-container #multi-image.hidden {
    display: none;
}

.ad-preview-container .swiper figure {
    max-height: 300px;
    position: relative;
}

.ad-preview-container .swiper figure button {
    position: absolute;
    top: 2px;
    right: 2px;
    background: transparent;
}

.ad-preview-container .swiper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.ad-preview-container .ad-link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    font-size: 11px;
    color: var(--white-color) !important;
    /*margin-top: 10px;*/
    background-color: var(--primary-color);
    font-size: 12px;
    padding: 8px;
    width: 100%;
}

.ad-format-item .file-input {
    margin-left: 0px;
}

.ad-preview-container .description p {
    font-size: 13px;
    margin-bottom: 8px;
    margin-top: 8px;
}

/* NEW Preview styles */
.swiper-pagination-bullet-active {
    background: #000 !important;
    /* Active dot color */
}

.preview-container {
    padding-inline: 10px;
    padding-bottom: 20px;
    margin-top: 50px;
    height: 100%;
    overflow-y: scroll;
}

.preview-container::-webkit-scrollbar {
    display: none;
}

.preview-programs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: start;
    align-items: start;
    margin-top: 8px;
    overflow-x: scroll;
    padding-inline: 10px;
}

.preview-programs::-webkit-scrollbar {
    display: none;
}

.preview-container .program-heading {
    font-size: 14px;
}

.preview-container .program-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.preview-container .program-row .program-card {
    height: 120px;
    width: 100px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.preview-container .program-row .program-card .gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 14%, rgba(0, 0, 0, 0.6) 100%);
}

.preview-container .program-row .program-card img {
    height: 100%;
    object-fit: cover;
}

.preview-container .program-row .program-card span {
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 0;
    font-size: 12px;
    color: var(--white-color);
    z-index: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.preview-container .preview-header,
.preview-container .program-heading {
    padding-inline: 10px;
}

.post-card {
    margin-top: 20px;
    padding-bottom: 4px;
    border-radius: 20px;
    font-size: 14px;
}

.post-card .post-header {
    margin-bottom: 8px;
    padding-inline: 10px;
}

.post-card .post-author-img,
.post-card .post-author-img img {
    width: 35px;
    height: 35px;
    border-radius: 100%;
}

.post-card .post-author-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 8px;
}

.post-card .post-author-details p {
    margin-bottom: 0;
    font-size: 14px;
}

.post-card .post-author-details span {
    font-size: 12px;
    color: #707070;
}

.post-card .post-image,
.post-card .post-image .multi-image {
    height: 170px;
}

.post-card .post-image .multi-image.hidden {
    display: none;
}

.post-card .post-image .swiper {
    height: 100%;
}

.post-card .post-image .single-image {
    height: 100%;
}

.post-card .single-image video {
    height: 100% !important;
}

.post-card .post-image .single-image.hidden {
    display: none;
}

.post-card .like-comment {
    margin-block: 10px;
    padding-inline: 10px;
}

.post-card .post-image img {
    height: 100%;
    object-fit: cover;
}

.post-card .post-description {
    padding-inline: 10px;
}

.post-card .post-description p {
    margin-bottom: 0;
}

.post-card .add-comment {
    padding-inline: 10px;
    gap: 8px;
}

.post-card .add-comment p {
    margin-bottom: 0;
}

.post-card .add-comment img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 100%;
}

.post-card .comments {
    margin-block: 10px;
    padding-inline: 10px;
}

.post-card .comments p {
    margin-bottom: 0px;
    color: #707070;
    font-weight: normal;
    font-size: 12px;
}

.post-card .add-comment input {
    height: auto !important;
    width: 100%;
    border: none;
}

.ad-card .post-image {
    position: relative;
}

.ad-card .dynamic-button-text {
    background: var(--primary-color);
    overflow: hidden;
    color: var(--white-color) !important;
    padding: 8px;
    font-size: 12px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.program-preview .title h1 {
    font-size: 14px !important;
}

.program-preview .title p {
    font-size: 10px !important;
}

.program-preview .program-card {
    border: 1px solid #707070;
    border-radius: 10px;
    background: #fff;
    padding: 11px 10px;
    gap: 8px;
}

.program-preview .program-card .program-preview-image {
    width: 75px;
    height: 60px;
}

.program-preview .program-card .program-preview-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.program-preview .program-card .program-name {
    font-size: 11px !important;
    margin-bottom: 0 !important;
}

.program-preview .program-card p {
    font-size: 10px !important;
    margin-bottom: 0 !important;
}

.program-preview .program-card .logo img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 100%;
}

/* NEW Preview styles */

#cropperModal .modal-body .cropper-container {
    width: 100% !important;
}

#cropperModal .modal-body {
    /*max-height: 400px !important;*/
    padding: 0 !important;
}

/* Base style */
#zoom-slider {
    width: 80%;
    margin-inline: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    accent-color: #0a0a0a;
}

/* Add Generic Campaign End */


/* Manage Campaign Start */

#manage-campaign-tab .admin-campaign-chat-btn {
    display: block !important;
}

.tab-pane.fade:not(.show) {
    display: none;
}

.manage-campaign-tab-container {
    border-bottom: 0;
    color: #1D1D1D;
}

.nav-tabs {
    border-bottom: 0 !important;
}

.nav-tabs .nav-link:not(.active):focus,
.nav-tabs .nav-link:not(.active):hover {
    border-color: #898989 !important;
}

.manage-campaign-tab-container .nav-item,
.program-list-box .nav-item {
    flex: 1;
    border: none;
    border-radius: 0;
    text-align: center;
}

.manage-campaign-tab-container .nav-item .nav-link,
.program-list-box .nav-item .nav-link {
    padding-top: 31px;
    padding-bottom: 23px;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    border-bottom: 4px solid #1E1E1E33;
    color: #1E1E1E;
}

.manage-campaign-tab-container .nav-item .nav-link.active,
.program-list-box .nav-item .nav-link.active {
    border-bottom: 4px solid var(--primary-color);
}

.manage-campaign-tab-content {
    margin-top: 42px;
    padding-inline: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

/* Data table styles */
.dataTables_wrapper .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dataTables_wrapper .top h4 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #1e1e1e;
}

.dataTables_filter {
    margin-left: auto;
}

.dataTables_wrapper .dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dataTables_filter input {
    height: 50px;
    max-width: 384px;
    width: 100%;
    border: 1px solid #B2B2B2;
    border-radius: 5px;
    padding-inline: 8px;
}

.dataTables_wrapper .bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    gap: 30px;
}

.dataTables_wrapper .bottom .dataTables_length {
    flex: none;
}

.dataTables_length select {
    border: 0;
    outline: 0;
    height: auto;
    width: max-content;
}

.dataTables_wrapper .bottom .dataTables_info {
    flex: none;
    padding-top: 0;
}

.dataTables_wrapper .bottom .dataTables_paginate {
    flex: none;
}

.dataTables_wrapper .dataTables_paginate {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dataTables_wrapper .paginate_button.next,
.dataTables_wrapper .paginate_button.previous {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    width: 36px;
    height: 36px;
}

/*.dataTables_wrapper .renew-btn,*/
/*.dataTables_wrapper .view-btn{*/
/*    cursor: pointer;*/
/*    padding: 8px 20px;*/
/*    background-color: transparent;*/
/*    font-size: 12px;*/
/*    font-weight: bold;*/
/*    text-align: center;*/
/*    border-radius: 10px;*/
/*}*/

/*.dataTables_wrapper .renew-btn:hover,*/
/*.dataTables_wrapper .renew-btn:focus,*/
/*.dataTables_wrapper .renew-btn:active,*/
/*.dataTables_wrapper .view-btn:hover,*/
/*.dataTables_wrapper .view-btn:focus,*/
/*.dataTables_wrapper .view-btn:active{*/
/*    outline: 1px solid #1e1e1e;*/
/*}*/

.details-lable {
    white-space: nowrap;
    font-size: 14px;
}

.details-value {
    color: #7d7d7d;
    font-size: 14px;
    word-break: break-all;
}

/* Data table styles end */


/* Program List Start */
.program-list-box .manage-program-tab-content {
    padding: 30px;
}

.program-list-box .accept-program-btn,
.program-list-box .reject-program-btn {
    padding: 2px 10px !important;
}


/* Program List End */


/* Account Settings START */
.account-settings-wrapper .account-settings-box {
    gap: 41px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.account-settings-wrapper .box .box-header {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding: 30px;
    padding-bottom: 0;
}

.account-settings-box .update-account-btn.btn-lg {
    width: 358px;
}


.account-settings-box .file-input {
    display: none;
}

.account-settings-box .custom-file-upload {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    max-width: 384px;
    width: 100%;
    border: 1px solid #B2B2B2;
    border-radius: 5px;
    padding-inline: 8px;

}

.account-settings-box .custom-file-upload i {
    margin-inline-start: auto;
    color: #919EAB;
}

.account-settings-box .file-name {
    margin-right: auto;
    color: #1E1E1E;
    position: absolute;
    margin-bottom: 0;
    font-size: 16px;
}

/* Account Settings End */


/* Campaign details start */
.view-campaign-tab-container {
    border-bottom: 0;
    color: #1D1D1D;
}

.view-campaign-tab-container .nav-item {
    flex: 1;
    border: none;
    border-radius: 0;
    text-align: center;
}

.view-campaign-tab-container .nav-item .nav-link {
    padding-top: 31px;
    padding-bottom: 23px;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    border-bottom: 4px solid #1E1E1E33;
    color: #1E1E1E;
}

.view-campaign-tab-container .nav-item .nav-link.active {
    border-bottom: 4px solid var(--primary-color);
}

.view-campaign-box .tab-pane {
    padding-bottom: 30px;
}

.campaign-status {
    padding-top: 30px;
    padding-bottom: 20px;
    margin-inline: 61px;
    padding-inline: 0 !important;
}

.campaign-details-section-header h4 {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.campaign-details-section-body p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 28px;
}

.ads-details .campaign-details-section-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.consultant-details-item .video-container {
    min-height: 188px;
    height: 188px;
    max-height: 188px;
    border-radius: 5px;
}

.consultant-details-item .video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.ad-campaign-media-swiper {
    width: 100%;
    overflow: hidden;
}

.ad-campaign-media-swiper .swiper-slide,
.ad-campaign-media-swiper .swiper-slide figure,
.ad-campaign-media-swiper .swiper-slide figure div,
.ad-campaign-media-swiper .swiper-slide figure img {
    border-radius: 10px;
}

/* Campaign details End */


/* Consultant Profile Page */
.cover-photo {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cover-photo img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cover-photo i {
    font-size: 40px;
    color: rgba(0, 0, 0, 0.4);
}

.profile-image {
    position: relative;
    min-width: 150px;
    width: 150px;
    min-height: 150px;
    height: 150px;
    border-radius: 100%;
    margin-top: -30px;
    outline: 2px solid var(--white-color);
    z-index: 9;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.consultant-info .consultant-name h2 {
    font-weight: normal;
}

.consultant-info .consultant-bio p {
    font-size: 14px;
}


.consultant-tab-container {
    border-bottom: 0;
    color: #1D1D1D;
}

.consultant-tab-container .nav-item {
    flex: 1;
    border: none;
    border-radius: 0;
    text-align: center;
}

.consultant-tab-container .nav-item .nav-link {
    padding-top: 31px;
    padding-bottom: 23px;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    border-bottom: 4px solid #1E1E1E33;
    color: #1E1E1E;
}

.consultant-tab-container .nav-item .nav-link.active {
    border-bottom: 4px solid #000;
}

.consultant-details .tab-pane {
    padding-bottom: 30px;
}

.consultant-details-container .details-lable {
    /*min-width: 160px;*/
}

.consultant-details-container .details-value-chip {
    font-size: 14px;
    outline: 1px solid #1E1E1E33;
    border-radius: 4px;
    padding-inline: 4px;
}

/* Consultant Profile End */


/* Contact Admin start */
.contact-admin-box {
    gap: 41px;
    padding: 30px;
}

.box .box-header {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.contact-admin-box form {
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.contact-admin-box .optional-lable-text {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: thin;
}

.contact-admin-box .contact-file-input {
    display: none;
}

.contact-admin-box .custom-file-upload {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    max-width: 384px;
    width: 100%;
    border: 1px solid #B2B2B2;
    border-radius: 5px;
    padding-inline: 8px;
}

.contact-admin-box .custom-file-upload i {
    margin-inline-start: auto;
    color: #919EAB;
}

.contact-admin-box .file-name {
    margin-right: auto;
    color: #1E1E1E;
    position: absolute;
    margin-bottom: 0;
    font-size: 16px;
}

.manage-contact-admin-box .view-message {
    border: 1px solid #1e1e1e;
}

.manage-contact-admin-box .view-message:hover {
    border: 1px solid #1e1e1e;
}

/* Contact Admin End */

/* Program Details Start */
.program-details-box {
    gap: 41px;
    padding: 30px;
}

.program-event-details {
    gap: 41px;
}

.program-details-section-header h4 {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.program-details-section-body {
    gap: 20px;
}

.program-details-section-body p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 28px;
}

.program-details-item .media-container {
    min-height: 188px;
    height: 188px;
    max-height: 188px;
    border-radius: 5px;
}

.program-details-item .media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.program-media-swiper {
    width: 100%;
    overflow: hidden;
}

.program-media-swiper figure img {
    border-radius: 10px;
}

/* Program Details End */


/* Partnership Corner Start */

/*.admin-message{*/
/*    background-color: #f1f1f1;*/
/*    border-radius: 15px;*/
/*    padding: 10px;*/
/*    max-width: 75%;*/
/*    align-self: flex-start;*/
/*    margin-right: auto;*/
/*}*/

/*.your-message{*/
/*    background-color: #007bff;*/
/*    color: var(--white-color);*/
/*    border-radius: 15px;*/
/*    padding: 10px;*/
/*    max-width: 75%;*/
/*    align-self: flex-end;*/
/*    margin-left: auto;*/
/*}*/

/* Partnership Corner End */

/* Payment History Start */
.payment-history-tab-container {
    border-bottom: 0;
    color: #1D1D1D;
}

.payment-history-tab-container .nav-item {
    flex: 1;
    border: none;
    border-radius: 0;
    text-align: center;
}

.payment-history-tab-container .nav-item .nav-link {
    padding-top: 31px;
    padding-bottom: 23px;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    border-bottom: 4px solid #1E1E1E33;
    color: #1E1E1E;
}

.payment-history-tab-container .nav-item .nav-link.active {
    border-bottom: 4px solid var(--primary-color);
}

.payment-history-tab-content {
    margin-top: 42px;
    padding-inline: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.partnership-container .pay-btn {
    color: var(--white-color) !important;
}

/* Payment History End */


/* Edit Campaign Start */
.edit-campaign-box {
    gap: 41px;
    padding-bottom: 30px;
    margin-bottom: 10px;
}

.edit-campaign-box h4 {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.upload-files-container {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #B2B2B2;
}

.remove-image-btn {
    background: transparent;
    border: none;
    outline: 1px solid;
    font-size: 12px;
    padding-inline: 6px;
    border-radius: 2px;
}

.drag-file-area {
    width: 350px;
    text-align: center;
    color: #919EAB;
    display: flex;
    flex-direction: column;
}

.drag-file-area i {
    color: #919EAB;
    font-size: 32px;
    margin-bottom: 15px;
}

.drag-file-area h3,
.drag-file-area label {
    font-size: 14px;
}

.drag-file-area label .browse-files-text {
    color: #1E1E1E;
    font-weight: bolder;
    cursor: pointer;
}

.browse-files {
    position: relative;
    margin-top: 15px;
    margin-bottom: 12px;
}

.default-file-input {
    opacity: 0;
    display: none;
}

.media-preview {
    padding-inline: 10px;
    padding-block: 11px;
    border-radius: 5px;
    border: 1px solid #B2B2B2;
}

.media-preview .media-preview-img {
    width: 99px;
    height: 64px;
    margin-bottom: 0;
    border-radius: 2px;
}

.media-preview .media-preview-img img {
    border-radius: 2px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-preview .media-preview-title {
    gap: 8px;
    width: 100%;
}

.media-preview .media-preview-title .media-preview-name {
    font-size: 14px;
    color: #1D1D1D;
}

.media-preview .media-preview-title .media-preview-file-size {
    font-size: 14px;
    color: #585858;
}

.media-preview p {
    margin-bottom: 0;
}

.remove-icon i {
    font-size: 31px;
    color: #000000;
    font-weight: 400;
}

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

.pay-now-btn {
    position: absolute;
    right: 6px;
    top: 7px;
    font-size: 14px;
}

.edit-campaign-submit-btn {
    font-size: 16px;
    width: 358px;
    margin-top: 30px;
    padding-block: 16px;
}

/* Edit Campaign End */


/* Profile settings Start */
.profile-settings-box {
    padding: 30px;
    gap: 20px;
}

.deleteAccountModal input.full-width {
    max-width: 100%;
    margin-top: 20px;
}

.deleteAccountModal input:focus {
    border: 1px solid blue;
    box-shadow: none;
}

.profile-settings-box .delete_account .delete_account_button {
    font-size: 16px;
    font-weight: normal;
}

.deleteReasonMessage {
    position: relative;
}

span.delete_account_message_error {
    color: red;
}

/* Profile settings End */


/* Admin Profile settings Start */
.admin-profile-settings-box {
    padding: 30px;
    gap: 20px;
}

.deleteAccountModal input.full-width {
    max-width: 100%;
    margin-top: 20px;
}

.deleteAccountModal input:focus {
    border: 1px solid blue;
    box-shadow: none;
}

.admin-profile-settings-box .delete_account .delete_account_button {
    font-size: 16px;
    font-weight: normal;
}

.deleteReasonMessage {
    position: relative;
}

span.delete_account_message_error {
    color: red;
}

/* Admin Profile settings End */


/*=================================
    CHAT MODAL STYLES START
================================= */
.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #000;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.notification-icon {
    font-size: 1.5rem;
    color: gray;
    margin-left: 10px;
    cursor: pointer;
}

.new-message-notification {
    color: red;
    font-weight: bold;
}

.message small {
    font-size: 0.75em;
    color: #888;
    display: block;
    margin-top: 5px;
}

.message .message-time {
    font-weight: 600;
    margin-top: 5px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    /*justify-content: flex-end;*/
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 70%;
    /* Prevent messages from being too wide */
}

.message-left {
    align-self: flex-start;
    /* Align to the left */
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

.message-right {
    align-self: flex-end;
    /* Align to the right */
    background-color: var(--primary-color);
    color: white;
    border: 1px solid #000;
    margin-right: 10px;
}

.message strong {
    font-size: 0.9em;
    color: #333;
}

.message span {
    display: block;
    margin-top: 4px;
}

.message small {
    display: block;
    margin-top: 4px;
    font-size: 0.75em;
    color: #888;
}

#chat-loader {
    /*text-align: center;*/
    padding: 20px;
}

#admin-campaign-chat-loader,
#chat-loader {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    color: var(--primary-color);
}

.admin-scroll-to-bottom-btn,
.scroll-to-bottom-btn,
.consultant-scroll-to-bottom-btn {
    position: absolute;
    left: 50%;
    top: 78%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 34px;
    height: 34px;
}

.message-right small {
    color: var(--white-color) !important;
}

/*=================================
    CHAT MODAL STYLES END
================================= */


/*=================================
    ADMIN DASHBOARD START
================================= */

/* Company Registration request start */
.company_registration-container .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
}

.company_registration-container .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.company_registration-container .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.company_registration-container .slider-text {
    font-size: 12px;
    padding-left: 3px;
}

.company_registration-container .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.company_registration-container input:checked+.slider {
    background-color: #4CAF50;
}

.company_registration-container input:checked+.slider:before {
    transform: translateX(36px);
}

.company_registration-container input:checked .slider-text {
    color: var(--white-color) !important;
}

/* Company Registration request End */


/* GLOBAL CONTROL START */
.global-control-container form {
    gap: 20px;
}

.global-control-container form .row div {
    gap: 10px;
}

/* GLOBAL CONTROL END */


/* Manage Contact admin START */
.manage-contact-admin-box {
    padding: 30px;
}

/* Manage Contact admin END */


/* Manage admin START */
.manage-admin-box {
    padding: 30px;
}

/* Manage admin END */


/* EDIT ADMIN START */
.edit-admin-box {
    padding: 30px;
}

.edit-admin-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edit-admin-box .submit-edit-admin-btn {
    margin-top: 40px;
}

/* EDIT ADMIN END */


/*=================================
  ADMIN DASHBOARD END
================================= */


/* ==================
    USER PANEL
================== */
/* SUBSCRIPTION START */
.premium-program-wrapper .page-header {
    gap: 0;
    margin-bottom: 30px;
    text-align: center;
}

.premium-program-wrapper .left-side .divider {
    border: 1px solid #E3E3E3;
}

.premium-program-wrapper p {
    color: #222222;
    margin-bottom: 0;
}


.premium-program-wrapper .input-wrapper {
    gap: 0;
}

.premium-program-wrapper-inner {
    gap: 50px;
}

.premium-program-wrapper-inner .left-side {
    width: 768px;
}

.premium-program-wrapper-inner .left-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.premium-program-wrapper .left-side-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.premium-program-wrapper .left-side-details .program-name,
.premium-program-wrapper .left-side-details .program-details,
.premium-program-wrapper .left-side-details .program-pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-program-wrapper .left-side-details .program-name h5,
.premium-program-wrapper .left-side-details .program-details h5,
.premium-program-wrapper .left-side-details .program-pricing h5 {
    font-size: 18px;
    color: #222222;
}

.premium-program-wrapper .left-side-details .program-details .detils-item p {
    color: #2E2E2E;
}

.premium-program-wrapper .left-side-details .program-details .details-item-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


.premium-program-wrapper .left-side-details .program-pricing-container {
    gap: 20px;
}

.premium-program-wrapper .left-side-details .program-pricing .program-pricing-item .pricing-label {
    color: #525252;
}

.premium-program-wrapper .left-side .pay-button {
    margin-top: 20px;
}

#payButton {
    pointer-events: none;
    opacity: 0.5;
}

#payButton.accept-pay {
    pointer-events: auto;
    opacity: 1;
}

/* SUBSCRIPTION END */


/* ADDITIONAL MINUTES START */
.additional-minutes-wrapper .page-header {
    gap: 0;
    margin-bottom: 30px;
    text-align: center;
}

.additional-minutes-wrapper .left-side .divider {
    border: 1px solid #E3E3E3;
}

.additional-minutes-wrapper p {
    color: #222222;
    margin-bottom: 0;
}


.additional-minutes-wrapper .input-wrapper {
    gap: 0;
}

.additional-minutes-wrapper-inner {

    gap: 50px;
}

.additional-minutes-wrapper-inner .left-side {
    width: 768px;
}

.additional-minutes-wrapper-inner .left-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.additional-minutes-wrapper .left-side-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.additional-minutes-wrapper .left-side .select-minutes-pay-button {
    margin-top: 30px;
}

.additional-minutes-wrapper .program-total-amount {
    margin-top: 28px;
    color: #222222;
}

.additional-minutes-wrapper .program-total-amount .pricing-label {
    color: #1E1E1E;
    font-size: 18px;
}

/* ADDITIONAL MINUTES END */


/* SUBSCRIPTION START */

.subscription-wrapper .left-side .divider {
    border: 1px solid #E3E3E3;
}

.subscription-wrapper-inner .left-side {
    width: 768px;
}

.subscription-wrapper-inner .left-header {
    margin-bottom: 20px;
}

.subscription-wrapper-inner .left-side .details-item-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.subscription-wrapper-inner .left-side .details-item-container .details-item-icon {
    width: 20px;
}

.subscription-wrapper-inner .left-side .pricing {
    margin-block: 40px;
}

.subscription-wrapper-inner .left-side span.small-text {
    font-size: 10px;
}


/* SUBSCRIPTION END */


@media screen and (max-width: 768px) {
    .premium-program-wrapper .left-side {
        margin-inline: 24px;
    }

    .premium-program-wrapper .gray-background-container {
        padding: 24px;
    }

    .additional-minutes-wrapper .left-side {
        margin-inline: 24px;
    }

    .additional-minutes-wrapper .gray-background-container {
        padding: 24px;
    }

    .subscription-wrapper-inner {
        margin-inline: 24px;
    }

    .subscription-wrapper-inner .gray-background-container {
        padding: 24px;
    }
}

@media screen and (max-width: 550px) {
    .premium-program-wrapper .left-side-details .program-details .details-item-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .subscription-wrapper-inner .left-side .details-item-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

}

/* Payment Success */
.payment-success-wrapper .page-header {
    gap: 0;
    margin-bottom: 30px;
    text-align: center;
}

.payment-success-wrapper .left-side .divider {
    border: 1px solid #E3E3E3;
}

.payment-success-wrapper p {
    color: #6d6d6d;
    margin-bottom: 0;
}

.payment-success-wrapper-inner {
    gap: 50px;
}

.payment-success-wrapper-inner .left-side {
    width: 768px;
}

.payment-success-wrapper-inner .left-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-success-wrapper .left-side-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-success-wrapper .check-icon {
    border: 1px solid rgb(156, 237, 156);
    border-radius: 100%;
    width: max-content;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-success-wrapper .check-icon i {
    font-size: 140px;
    color: #4CAF50;
}

/* Payment Success */


/* Payment Failed */
.payment-failed-wrapper .page-header {
    gap: 0;
    margin-bottom: 30px;
    text-align: center;
}

.payment-failed-wrapper .left-side .divider {
    border: 1px solid #E3E3E3;
}

.payment-failed-wrapper p {
    color: #6d6d6d;
    margin-bottom: 0;
}

.payment-failed-wrapper-inner {
    gap: 50px;
}

.payment-failed-wrapper-inner .left-side {
    width: 768px;
}

.payment-failed-wrapper-inner .left-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-failed-wrapper .left-side-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-failed-wrapper .check-icon {
    border: 1px solid #fa877e;
    border-radius: 100%;
    width: max-content;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-failed-wrapper .check-icon i {
    font-size: 140px;
    color: #F44336;
}

/* Payment Failed */


/* Payment Success/Failed */
.stripe-wrapper .page-header {
    gap: 0;
    margin-bottom: 30px;
    text-align: center;
}

.stripe-wrapper .left-side .divider {
    border: 1px solid #E3E3E3;
}

.stripe-wrapper p {
    color: #6d6d6d;
    margin-bottom: 0;
}

.stripe-wrapper-inner {
    gap: 50px;
}

.stripe-wrapper-inner .left-side {
    width: 768px;
}

.stripe-wrapper-inner .left-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.stripe-wrapper .left-side-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stripe-connection-accept .check-icon {
    border: 1px solid rgb(156, 237, 156) !important;
}

.stripe-connection-accept .check-icon i {
    font-size: 140px;
    color: #4CAF50 !important;
}

.stripe-wrapper .check-icon {
    border: 1px solid #fa877e;
    border-radius: 100%;
    width: max-content;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stripe-wrapper .check-icon i {
    font-size: 140px;
    color: #F44336;
}

/* Stripe Success/Failed */


/* CONTACT US PAGE */
.contact-us-wrapper .file-input {
    display: none;
}

.contact-us-wrapper .custom-file-upload {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    max-width: 384px;
    width: 100%;
    border: 1px solid #B2B2B2;
    border-radius: 5px;
    padding-inline: 8px;

}

.contact-us-wrapper .custom-file-upload i {
    margin-inline-start: auto;
    color: #919EAB;
}

.contact-us-wrapper .file-name {
    margin-right: auto;
    color: #1E1E1E;
    position: absolute;
    margin-bottom: 0;
    font-size: 16px;
}


/* ==================
    USER PANEL
================== */


footer {
    padding: 16px 24px;
    margin-top: auto;
    background: var(--white-color);
    box-shadow: 0px 4px 10px 0px #BEBEBE40;
}

footer .container-outer {
    margin-bottom: 0;
}

footer p {
    margin-bottom: 0;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 10ch;
    }
}


#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.1);

}

.loader-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-inner p {
    margin-bottom: 0;
}

.loader-bars {
    display: flex;
    align-items: center;
}

.loader-bars .bar {
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    animation: loading-animation 1s linear infinite;
}

.loader-bars .bar:nth-child(2) {
    height: 35px;
    margin: 0 5px;
    animation-delay: .25s;
}

.loader-bars .bar:nth-child(3) {
    animation-delay: .5s;
}


.enjoyhint_next_btn,
.enjoyhint_prev_btn,
.enjoyhint_skip_btn {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-color) !important;
    border-color: #1E1E1E !important;
    border: 1px solid;
    border-radius: 10px !important;
    color: var(--white-color) !important;
}

.enjoy_hint_label {
    background: var(--primary-color) !important;
    padding: 16px !important;
    max-width: 500px !important;
    border-radius: 10px !important;
    font-size: 18px !important;
}

.enjoyhint_skip_btn {
    background-color: var(--white-color) !important;
    color: #1E1E1E !important;
    border-color: var(--white-color) !important;
}

.enjoyhint_skip_btn:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: #1E1E1E !important;
}

.enjoyhint_close_btn {
    background-color: transparent !important;
    border-color: #1E1E1E !important;
    border: 1px solid;
    border-radius: 100% !important;
    color: var(--white-color) !important;
}

.enjoyhint_next_btn {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.enjoyhint_next_btn:hover,
.enjoyhint_prev_btn:hover {
    background: #1b1b1b;
}

@media screen and (max-width: 640px) {
    .enjoy_hint_label {
        max-width: unset !important;
    }

    .enjoyhint_next_btn,
    .enjoyhint_prev_btn,
    .enjoyhint_skip_btn {
        top: 80px !important;
    }
}


@keyframes loading-animation {
    20% {
        background-color: rgba(0, 0, 0, 0.1);
        transform: scaleY(1.5);
    }

    40% {
        transform: scaleY(1);
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: black;
    }

    50% {
        border-color: transparent;
    }
}

@keyframes remove-caret {
    from {
        border-right: 5px solid black;
    }

    to {
        border-right: 0;
    }
}

@media screen and (max-width: 1270px) {
    .header {
        padding-inline: 24px;
    }
}

@media screen and (max-width: 768px) {
    .login-wrapper .page-header {
        padding-inline: 40px;
        align-items: start;
    }

    .login-wrapper .form-container {
        grid-template-columns: 1fr;
    }

    .login-wrapper .form-container .left-side h2 {
        display: none;
    }

    .login-wrapper .right-side {
        display: none;
    }

    .footer .container-outer {
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
        gap: 16px;
    }

    .footer .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 8px !important;
    }
}