@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

:root {
    --sidenav-width: 220px;
    --sidenav-collaps-width: 80px;
    --left-column-width: calc(37vw - var(--sidenav-width));
    --right-column-width: calc(70vw - var(--sidenav-width));
    --light-color: #fff;
    --bg-color1: #a8edea;
    --bg-color2: #fed6e3;
    --btn-color1: #fbc2eb;
    --btn-color2: #a6c1ee;
    --underline-color1: #f73296;
    --underline-color2: #62f5f5;
    --body-font: "Inter", sans-serif;
    --theme-bg: #1f1d2b;
    --body-color: #fff;
    --button-bg: #89888f;
    --text-light: #89888f;
    --border-color: rgb(128 129 145 / 24%);
    --video-bg: #252936;
    --delay: 0s;
    --text-input: #6c757d;
    --gradiant: linear-gradient(13deg, #c7ceff 14%, #f9d4ff 64%);
}

label:has(+ input:required):after {
    content: " *" !important;
    color: red !important;
}

label:has(+ select:required):after {
    content: " *" !important;
    color: red !important;
}

.f-2 {
    font-size: 1rem;
}
.text-input {
    color: var(--text-input);
}
.content-center {
    align-content: center;
}

.justify-center {
    display: flex;
    justify-content: center;
}
.padding {
    padding: 10px;
}
.padding-blocks {
    padding-block: 1rem;
}

.padding-inlines {
    padding-inline: 10px;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-wrapper .tooltip-text {
    text-wrap: auto;
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the text */
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.tooltip-wrapper .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.sidenav-collapsed {
    --sidenav-width: 80px; /* Width when collapsed */
    --left-column-width: calc(40vw - var(--sidenav-width));
    --right-column-width: calc(75vw - var(--sidenav-width));
}

.full-width {
    width: 100%;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.display-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.display-flex-space {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        13deg,
        var(--bg-color1) 14%,
        var(--bg-color1) 64%
    );
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(13deg, #c7ceff 14%, #f9d4ff 64%);
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: inset 7px 10px 12px #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    outline: none;
}

html,
body {
    display: grid;
    height: 100vh;
    width: 100%;
    place-items: center;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.d-none {
    display: none !important;
}

/* Title */

.title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.title:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 5%;
    left: 0px;
    bottom: 3px;
    border-radius: 5px;
    margin-bottom: -0.5rem;
    background: linear-gradient(
        to right,
        var(--underline-color1) 0%,
        var(--underline-color2) 100%
    );
}

a {
    color: #0060b6;
    text-decoration: none;
}

/* button css */
.btn {
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 1.1rem;
    padding: 0.5rem 2rem;
    border: none;
    color: var(--light-color);
    background: linear-gradient(
            90deg,
            var(--btn-color1),
            var(--btn-color2) 51%,
            var(--btn-color1)
        )
        0/ 200%;
}

.btn:hover {
    letter-spacing: 1px;
    transition: 0.5s;
    background: linear-gradient(
            90deg,
            var(--btn-color1),
            var(--btn-color2) 51%,
            var(--btn-color1)
        )
        100% / 200%;
}

/* buttons css start*/
.signout-btn {
    border-radius: 20px;
    font-size: 1rem;
}
/* button css end */
.main-header {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 20px;
    background: linear-gradient(
            90deg,
            var(--bg-color2),
            var(--bg-color1) 51%,
            var(--bg-color2)
        )
        100% / 200%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
}

.small-header {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 30px 0 20px;
}

/* form css */
.form-wrapper {
    padding: 1.5rem;
    margin-bottom: 2rem;
    background-color: var(--light-color);
}

.form-wrapper .title:before {
    width: 5%;
}

.form-group {
    width: 100%;
    margin: 8px 0px 18px 0px;
}

.field-groups {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.field-groups input,
.field-groups #message,
.field-groups select {
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    color: var(--text-input);
    border-radius: 4px;
    font-size: 14px;
}

.filter-select option {
    color: var(--text-input);
}

.field-groups label {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
}

input[type="file"] {
    position: relative;
}

input[type="file"]::file-selector-button {
    width: 136px;
    color: transparent;
    background: #084cdf;
}

/* Faked label styles and icon */
input[type="file"]::before {
    position: absolute;
    pointer-events: none;
    top: 30%;
    left: 16px;
    height: 20px;
    width: 20px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
}

input[type="file"]::after {
    position: absolute;
    pointer-events: none;
    top: 35%;
    left: 40px;
    font-weight: 700;
    color: var(--light-color);
    content: "Upload File";
}

/* ------- From Step 1 ------- */
.field-groups input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: 0.5s;
    border: none;
    background: linear-gradient(
        13deg,
        var(--bg-color2) 14%,
        var(--bg-color1) 64%
    );
}

.field-groups input[type="file"]::file-selector-button:hover {
    background: linear-gradient(
        13deg,
        var(--bg-color1) 14%,
        var(--bg-color2) 64%
    );
    transition: 0.5s;
}

.error-message {
    color: red;
    font-size: 0.875em;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

.is-invalid {
    border: 0.25px solid red !important;
}

input[readonly] {
    background-color: transparent;
    color: #6c757d;
    cursor: not-allowed;
}

select[disabled] {
    cursor: not-allowed !important;
    pointer-events: none;
}
.sub-btn {
    margin-block-end: 20%;
}

.input-container {
    position: relative;
}

.input-container input {
    width: 100%;
    padding-right: 30px;
}

.input-container .toggle-password {
    position: absolute;
    top: 25px;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

/* animation profile start */
.animation-wrapper {
    height: 40%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        315deg,
        rgba(101, 0, 94, 1) 3%,
        rgba(60, 132, 206, 1) 38%,
        rgba(48, 238, 226, 1) 68%,
        rgba(255, 25, 25, 1) 98%
    );
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
    z-index: 0; /* Ensure it is behind other content */
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: absolute;
    width: 200%;
    height: 9em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

/* animation profile end */

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    bottom: 4px;
    margin-inline: 1px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #2196f3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.table-btn {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: transparent;
}
/* Tooltip container */
.tooltip-container {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip-container::after {
    content: attr(data-title); /* Display the content of the title attribute */
    visibility: hidden;
    width: 90px; /* Adjust width as needed */
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;

    /* Tooltip arrow */
    border-color: transparent;
    top: 100%;
    margin-left: -1px;
}

/* Show the tooltip on hover */
.tooltip-container:hover::after {
    visibility: visible;
    opacity: 1;
}

/* Initial button styles */
.btn-effect {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Initially hide the text */
.btn-effect .btn-text {
    opacity: 1;
    margin-left: 0;
    width: auto;
    margin-left: 8px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* On hover or focus expand the button */
.btn-effect:hover,
.btn-effect:focus {
    padding-right: 16px;
    background-color: #e0e0e0; /* Optional: Change background on hover */
}

/* On hover, show the text */
.btn-effect:hover .btn-text,
.btn-effect:focus .btn-text {
    opacity: 1;
    margin-left: 8px;
    width: auto;
}

.filter-wrapper {
    padding: 1rem;
    overflow-x: auto;
    width: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    /* margin-inline: 0.5rem; */
}

.input-wrapper {
    position: relative;
}

.filter-input {
    border: none;
    padding: 15px 35px 15px 12px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
        rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.filter-select {
    border: none;
    padding: 15px 35px 15px 12px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
        rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: 5px;
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
}

.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
}

.status.active {
    background-color: #28a745; /* Green for active */
}

.status.inactive {
    background-color: #dc3545; /* Red for inactive */
}

.platform-wrapper {
    width: 100%;
}

table.dataTable th[title] {
    pointer-events: none;
}

.multi-select-container {
    position: relative;
    width: 40%;
}

.select-container {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
}
.selected-items {
    padding-block: 10px;
    overflow-x: auto;
}
.chip {
    color: var(--text-input);
    background-color: transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.chip .close-btn {
    margin-left: 10px;
    cursor: pointer;
    color: red;
}

.multi-select-search {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-block-start: 1rem;
}

.dropdown {
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    color: var(--text-light);
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none; /* Hidden by default */
}

.multi-select-options {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.multi-select-options li {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.multi-select-options li:hover {
    background-color: #f0f0f0;
}

/* input file */
.file-view {
    width: auto;
    align-content: center;
    margin-block-start: 1.5rem;
}
.uplode-input {
    width: 50%;
}
.uploaded-file {
    border-radius: 30px;
    width: 100%;
    padding: 1rem;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
        rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.file-len {
    display: inline-block;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.file-len:hover {
    overflow: visible;
}
.file-len:focus {
    width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.select2-container--default .select2-selection--multiple {
    padding: 10px;
    border: none;
    margin-block-start: 5px;
}

.select2-results__option--selectable {
    color: var(--text-input);
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: transparent !important;
    border: none !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.loader {
    border: 4px solid #fff;
    border-top: 4px solid blue;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loader-tab {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding-block-start: 4px;
    padding-inline-start: 8px;
    align-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

@media (max-width: 768px) {
    .multi-select-container {
        width: auto;
    }
    .upload-wrapper {
        display: block;
        flex-wrap: wrap;
        gap: 0;
    }
}

.backup-table {
    padding: 1rem;
    margin-inline: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.backup-table td {
    padding: 1rem;
}
.backup-table th {
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
        rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    padding: 5px;
    gap: 1rem;
}

.select-contain {
    padding-block: 1rem;
}

input[type="checkbox"].select-pvt {
    width: 15px;
    height: 15px;
}

.expansion-panel {
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 50%;
}

.panel-header {
    background-color: transparent;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-content {
    padding: 20px;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}
.top-menu {
    gap: 10px;
    align-items: center;
}

/* help expansion start */

.expandable-item {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    cursor: pointer;
}

.expandable-header {
    position: relative;
    padding-block: 5px;
    color: var(--text-input);
}

.expandable-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    transform: rotateZ(45deg);
    border-radius: 5px;
    width: 25px;
    height: 25px;
    transition: all 0.3s;
}

.expandable-icon .line {
    width: 15px;
    height: 2px;
    background: var(--text-input);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
}

.expandable-icon .line:nth-child(1) {
    transform: rotateZ(45deg);
}

.expandable-icon .line:nth-child(2) {
    transform: rotateZ(-45deg);
}

.expandable-item .expandable-body {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    overflow: hidden;
    padding: 0 1em;
    transition: all 0.5s ease-in-out;
    height: 0px;
}

.expandable-list {
    margin: 20px auto;
    width: 100%;
    overflow-y: auto;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}

.expandable-item.active .expandable-icon {
    transform: rotateZ(0);
}

.expandable-item.active .expandable-body {
    margin-top: 5px;
    height: auto;
}

.expandable-item.active .expandable-icon .line:nth-child(1) {
    transform: rotateZ(0deg);
}

.expandable-item.active .expandable-icon .line:nth-child(2) {
    transform: rotateZ(180deg);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 10px;
}

.grid-item {
    background-color: #f3f3f3;
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.grid-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Specific sizes for grid items */
.large {
    grid-column: span 2;
    grid-row: span 2;
}

.medium {
    grid-column: span 2;
}

.small {
    grid-column: span 1;
}

.help-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 10px;
}

.help-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
    width: auto;
    border-radius: 20px;
}
.help-card .help-tittle {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.help-contain {
    margin: 1rem;
}

.help-card-item {
    min-width: 15vw;
    max-height: 50vh;
}

.help-contain img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
}
.help-contain video {
    max-width: 100%;
    height: 100%;
    display: flex;
}
.card-underline {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

@media (pointer: coarse), (hover: none) {
    [title]:focus::after {
        content: attr(title);
        position: absolute;
        top: 90%;
        color: #000;
        background-color: #fff;
        border: 1px solid;
        width: fit-content;
        padding: 3px;
    }
}


.centered-message{
    color: red;
    text-align: center;
    font-size: 18px;
    padding: 20px;
    border: 1px solid red;
    border-radius: 5px;
    margin: 0 auto;
    width: fit-content;
    background-color: #ffe5e5;
}

.form-title{
    text-shadow: 3px 2px 6px rgba(182, 182, 182, 1);
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: flex;
    transition: 0.3s;
}
/* Tooltip container */
.tooltip-contain {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Common tooltip styles */
.tooltiptext {
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    visibility: hidden;
    width: 110px;
    color: #000;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip positions */
.tooltip-right {
    top: 50%;
    left: 125%;
    margin-top: -20px; /* Center vertically */
}

.tooltip-left {
    top: 50%;
    right: 125%;
    margin-top: -20px; /* Center vertically */
}

.tooltip-top {
    bottom: 125%;
    left: 50%;
    margin-left: -50px; /* Center horizontally */
}

.tooltip-bottom {
    top: 125%;
    left: 50%;
    margin-left: -50px; /* Center horizontally */
}

/* Tooltip arrow */
.tooltiptext::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
}

.tooltip-right::after {
    top: 50%;
    left: -5px; /* Arrow on the left */
    margin-top: -5px;
    border-color: transparent #333 transparent transparent;
}

.tooltip-left::after {
    top: 50%;
    right: -5px; /* Arrow on the right */
    margin-top: -5px;
    border-color: transparent transparent transparent #333;
}

.tooltip-top::after {
    top: 100%; /* Arrow below */
    left: 50%;
    margin-left: -5px;
    border-color: #333 transparent transparent transparent;
}

.tooltip-bottom::after {
    bottom: 100%; /* Arrow on top */
    left: 50%;
    margin-left: -5px;
    border-color: transparent transparent #333 transparent;
}

/* Show the tooltip on hover */
.tooltip-contain:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.daterangepicker .calendar-table th, .daterangepicker .calendar-table td{
    color: black;
}

@media (max-width: 768px) {
    .expansion-panel {
        width: 100%;
    }
    .video-view{
        width: unset;
        height: unset;
    }
    .help-card{
        width: 100%;
        border-radius: 0px;
    }
    .help-wrapper{
        padding: 1px;
    }

    .expandable-item .expandable-body{
        padding: 0px;
    }

    .help-contain{
        margin: 0px;
        margin-bottom: 5px;
    }
}