@import url('https://fonts.googleapis.com/css2?family=Asimovian&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --fontFamily: 'Roboto', sans-serif;
    --pinkColor: #e91e63;
    --primaryColor: #5b9eef;
    --blueColor: var(--primaryColor);
    --blueColorLow: #007bff77;
    --orangeColor: #fe6f02;
    --lightOrangeColor: #F4B716;
    --darkColor: #0C111C;
    --lightDarkColor: #1d2839;
    --infoColor: #00BCD4;
    --main_color: var(--blueColor);
    --navbarHeight: 60px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--fontFamily);
    background: #f5f5f5;
}

body.full-window {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* -----------------------
    Custom Area Start
------------------------ */
[contenteditable] {
    border: 2px solid transparent;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

[contenteditable]:focus {
    outline: none;
    border-color: #000 !important;
}

.align-center {
    display: flex;
    align-items: center;
}

.g-1 {
    gap: 10px;
}

.g-2 {
    gap: 20px;
}

.gy-1 {
    gap: 10px 0;
}

.gy-2 {
    gap: 20px 0;
}

.gy-3 {
    gap: 30px 0;
}

.row {
    margin: 0;
}

.row.col-px-1 [class*="col-"] {
    padding: 0 6px;
}

.row.col-px-2 [class*="col-"] {
    padding: 0 10px;
}

.bg-none {
background: none !important;
}
.shadow-none {
    box-shadow: none !important;
}

.table tbody tr td:last-child {
    white-space: nowrap;
}

/* .table tbody tr td:last-child>* {
    margin: 5px 10px;
} */
 .close-panel {
  position: absolute;
  top: 6px;
  right: 15px;
  font-size: 18px;
  color: var(--danger);
}

.child-el-margin>* {
    margin: 10px;
}

.child-el-margin-x>* {
    margin-left: 10px;
    margin-right: 10px;
}

.child-el-margin-y>* {
    margin-top: 10px;
    margin-bottom: 10px;
}

.tc-res-img-div {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rounded-md {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.rounded-lg {
    -webkit-border-radius: 30px;
    border-radius: 30px;
}


/* .modal-content {
    background: transparent;
    border: none;
} */

table.dataTable.no-footer {
    border: none !important;
}

.dataTables_length,
.dataTables_filter,
.paginate_button {
    font-family: var(--ffr);
    font-size: 14px;
}

.dataTables_filter input {
    font-family: var(--ffr);
    font-size: 14px;
    border: 1px solid #99a5 !important;
    padding: 2px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
}

.dataTables_filter input:focus {
    border: 1px solid #99a5 !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #99a5 !important;
    background: #FFF;
    padding: 5px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #5b9eef !important;
    color: #FFF !important;
}

.dataTables_wrapper .dataTables_length {
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_info {
    margin-top: 15px;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 15px;
}

.no-btn-styles {
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.small-font {
    font-size: 14px;
    font-family: var(--fontFamily);
}

.bold {
    font-weight: bold;
}

.user-img {
    width: 50px;
    height: 50px;
}

.error {
    color: #D00;
    text-align: left;
    font-family: var(--fontFamily);
    font-size: 14px;
}

.form-group.err .form-control {
    border-bottom: 1px solid #d00 !important;
}

.full-screen-loader {
    background: var(--darkColor);
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
}

.full-screen-loader .loader {
    width: 100px;
    height: 100px;
}

.lg-font {
    font-size: 20px;
}

.msg {
    padding: 20px;
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.center-content {
    width: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.justify-center {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.pagination {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.disabled {
    opacity: 0.8;
}

.full-img {
    width: 100%;
    max-height: 100%;
}

.ms-list .dropdown-toogle .input-group-text {
    cursor: pointer !important;
    z-index: 6;
    height: calc(100% - 1px);
    background: var(--darkColor);
}

.ms-list .dropdown-menu {
    width: 100%;
    background: var(--lightDarkColor);
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.ms-list .dropdown-menu .dropdown-item {
    display: block;
    color: #FFF;
    font-family: var(--fontFamily);
    cursor: pointer;
}

.ms-list .dropdown-menu .dropdown-item:hover,
.ms-list .dropdown-menu .dropdown-item:focus,
.ms-list .dropdown-menu .dropdown-item.selected,
.ms-list .dropdown-menu .dropdown-item.active {
    background: rgba(0, 0, 0, 0.27);
}

.bg_pink {
    background: #E91E63 !important;
}

.bg_info {
    background: #00BCD4 !important;
}

.bg_green {
    background: #8BC34A !important;
}

.bg_warning {
    background: #FF9800 !important;
}

.bg_success {
    background: #33dc6f !important
}

.light_orange {
    color: var(--lightOrangeColor) !important;
}

.text_success {
    color: #33dc6f !important
}

.table td,
.table th {
    border: none !important;
    border-bottom: 1px solid #0002 !important;
    font-family: var(--fontFamily) !important;
}

.table tbody tr:not(.child-highlight):last-child td {
    border-bottom: none !important;
}

.tooltip .tooltip-inner {
    background: var(--darkColor) !important;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: var(--darkColor) !important;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: var(--darkColor) !important;
}

.checkbox {
    display: flex;
    cursor: pointer;
    margin: 0 5px;
    font-weight: normal;
}

.checkbox .box {
    margin-right: 7px;
    margin-top: 2px;
    width: 15px;
    height: 15px;
    display: flex;
    border: 2px solid var(--blueColor);
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.checkbox .box i {
    font-size: 13px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}

.checkbox .check {
    display: none;
}

.checkbox .check:checked~.box {
    background: var(--blueColor);
}

.checkbox .check:checked~.box i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.inline-b {
    width: auto !important;
    display: inline-block !important;
}

.form-control.short {
    padding: 10px 0 10px 10px !important;
    width: 45px;
}

div.form-control {
    height: 37px;
    white-space: nowrap;
    overflow: auto;
}

div.form-control::-webkit-scrollbar {
    width: 0px !important;
    height: 0 !important;
}

.flex {
    display: flex !important;
    -webkit-align-items: center;
    align-items: center;
}

body.content-center {
    width: 100%;
    min-height: 100vh;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.swal2-container.in {
    background: rgba(0, 0, 0, 0.2) !important;
}

.swal2-modal {
    margin-top: 20px;
    width: 400px;
    display: none;
    overflow: hidden;
    font-family: var(--fontFamily) !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
    -webkit-box-shadow: 2px 2px 25px 2px #0003 !important;
    box-shadow: 2px 2px 25px 2px #0003 !important;
}

.swal2-styled.swal2-confirm,
.swal2-styled {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px, rgba(0, 0, 0, 0.12) 0px 2px 10px;
    font-size: 14px !important;
    border-radius: 2px !important;
    color: #fff !important;
    padding: 7px 12px !important;
    font-weight: bold !important;
    font-family: var(--fontFamily) !important;
    cursor: pointer !important;
    background: var(--blueColor) !important;
    text-transform: uppercase;
}

.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-cancel:focus,
.swal2-styled:focus {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px, rgba(0, 0, 0, 0.12) 0px 2px 10px;
}

.swal2-styled.swal2-cancel {
    background: #171f30 !important;
}

.swal2-title {
    text-transform: capitalize !important;
}

.swal2-content {
    font-family: var(--fontFamily);
}

.swal2-title {
    font-family: var(--fontFamily);
}

.swal2-icon.swal2-warning {
    border-color: #ff7600 !important;
    color: #ff7600 !important;
}

.content-center {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

p {
    margin-bottom: 0;
}

button:focus,
input:focus,
select:focus {
    outline: none;
}

.link {
    color: #5b9eef;
    cursor: pointer;
    font-family: var(--fontFamily);
}

.cp {
    cursor: pointer;
}

.more {
    color: #777;
    font-family: var(--fontFamily);
}

.bg_light_ornage {
    background: var(--lightOrangeColor) !important;
}

.bg_orange {
    background: var(--orangeColor) !important;
}

.card {
    background: transparent;
    border: 1px solid #c3c4c7;
    position: relative;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.card-header {
    background: #fff;
    color: #FFF;
    font-weight: 500;
    padding: 0.5rem;
    font-family: var(--fontFamily);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.card .card-body {
    background-color: #f6f7f7;
}

.card-header a,
.card-header h3,
.card-header p {
    color: #090f1a;
    font-weight: 500;
}

.pull-right {
    width: 100%;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.pull-away {
    width: 100%;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}

.label {
    font-size: 15px;
    color: #090f1a;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
    font-family: var(--fontFamily);
}

.input-group .form-control {
    padding-left: 45px;
}

.form-control {
    border: none;
    border-bottom: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #f4f8f7;
    padding: 15px 10px;
    color: #555;
    font-family: var(--fontFamily);
}

.form-control:focus {
    background: #f4f8f7;
    border-color: var(--infoColor);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select.form-control option {
    color: #000;
}

.input-group-text {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    color: #777;
    z-index: 99;
    height: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.file-upload-label~.form-control[readonly] {
    background: transparent;
}

.btn svg {
    display: inline-block;
    fill: white !important;
    width: 15px;
    height: 15px;
}

.submit-btn,
.btn {
      box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px, rgba(0, 0, 0, 0.12) 0px 2px 10px !important;
    font-size: 14px;
    color: #fff;
    padding: 7px 12px;
    font-weight: 500;
    margin: 0;
    font-family: var(--fontFamily);
    cursor: pointer;
    background: var(--blueColor);
    -webkit-border-radius: 4;
    border-radius: 4;
    border: none !important;
    outline: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.submit-btn:hover,
.btn:hover {
    opacity: 0.8;
}

.btn-lg {
    padding: 10px 30px;
    font-size: 18px;
}

.btn-round {
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.btn i {
    display: inline-block;
    margin-right: 5px;
}
.btn:disabled {
    cursor: not-allowed;
}

.bg-transparent {
    background: transparent;
    box-shadow: none !important;
    border: 1px solid var(--blueColor) !important;
    color: var(--blueColor) !important;
}
.bg-transparent svg {
    fill: var(--blueColor) !important;
}

.s-btn {
    font-size: 16px;
    background: transparent;
    border: none;
    padding: 20px;
    color: #ccc;
    position: relative;
    cursor: pointer;
}

.s-btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.s-btn:hover,
.s-btn.active {
    color: #FFF;
}

.heading {
    color: #090f1a;
    font-family: var(--fontFamily);
    font-weight: bold;
    font-size: 25px;
    padding: 0;
    margin: 0;
}

h1.heading {
    font-size: 40px;
}

h2.heading {
    font-size: 30px;
}

h3.heading {
    font-size: 25px;
}

h4.heading {
    font-size: 20px;
    font-weight: 500;
}

h5.heading {
    font-size: 18px;
    font-weight: 500;
}

.bg_dark {
    background: #090F19;
}

.disabled {
    pointer-events: none !important;
}

.loader-container {
    width: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.loader {
    width: 70px;
    height: 70px;
    display: block;
    background: transparent;
    position: relative;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.loader .text {
    color: #090f1a;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
}

.loader .load {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: transparent;
    border: 4px solid #000;
    border-color: #ddd #ddd #ddd transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotateClockWise 1s linear infinite;
    -moz-animation: rotateClockWise 1s linear infinite;
    -o-animation: rotateClockWise 1s linear infinite;
    animation: rotateClockWise 1s linear infinite;
}

.spinner {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: transparent;
    border: 4px solid #000;
    border-color: #ddd #ddd #ddd transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotateClockWise 1s linear infinite;
    -moz-animation: rotateClockWise 1s linear infinite;
    -o-animation: rotateClockWise 1s linear infinite;
    animation: rotateClockWise 1s linear infinite;
}

@keyframes rotateClockWise {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateAntiClockWise {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

button .loader,
span>.loader {
    width: 30px;
    height: 30px;

}

a:hover {
    text-decoration: none;
}

.hide-scrollbar::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
}

.scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.scrollbar::-webkit-scrollbar-track {
    background: var(--darkColor);
}

.scrollbar::-webkit-scrollbar-thumb {
    background: var(--blueColor);
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #c96316;
}

/* -----------------------
    Custom Area End
------------------------ */

/* #region TC Checkbox */

.checkboxLabel {
    position: relative;
    display: flex;
    cursor: pointer;
    color: #090f1a;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0;
}

.checkboxLabel .checkbox {
    width: 0px !important;
    height: 0px !important;
    opacity: 0 !important;
}

.checkboxLabel .c-box {
    width: 15px;
    height: 15px;
    border: 1px solid var(--main_color);
    margin-right: 5px;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.checkboxLabel .c-box i {
    font-size: 10px;
    color: #fff;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.checkboxLabel .c-box.round {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.checkboxLabel .c-box.round {
    padding: 8px;
}

.checkboxLabel .c-box.round i {
    color: #FFF;
}

.checkboxLabel .checkbox:checked~.c-box {
    background: var(--main_color);
}

.checkboxLabel .checkbox:checked~.c-box.round {
    background: transparent;
}

.checkboxLabel .checkbox:checked~.c-box i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.checkboxLabel .checkbox:focus~.c-box {
    position: relative;
}

.checkboxLabel .checkbox:focus~.c-box::after {
    content: "";
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background-color: #05acff55;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

/* #endregion TC Checkbox */

/* #region Window Status banner */

#status-banner {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 28px;
  background: #ffffff;
  color: #222;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

#status-banner .content {
    display: flex;
    align-items: center;
    gap: 10px;
}
#status-banner .content svg {
    fill: var(--green);
}

#status-banner.show {
  top: 0;
  opacity: 1;
}

#status-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #4CAF50;
  border-radius: 0 0 10px 10px;
}

/* #endregion Window Status banner */

/* Switch checkbox */

.switch-wrap {
  margin: 4px !important;
  text-align: center;
}

.switch-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.switch-checkbox {
  display: none;
}

.switch-toggle {
  width: 38px;
  height: 22px;
  background: #dde0e9;
  border-radius: 11px;
  position: relative;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.switch-toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.switch-checkbox:checked + .switch-toggle {
  background: #7c5cfd;
}

.switch-checkbox:checked + .switch-toggle::after {
  transform: translateX(16px);
}

.switch-text {
  color: #6b7280;
  font-size: 13.5px;
  font-weight: 500;
}


/* Editor Loader */
.editor-loader-container {
  position: fixed;
  top: 0;
  z-index: 99999;
  background: white;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.editor-loader {
  display: block;
  --height-of-loader: 4px;
  --loader-color: #0071e2;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.editor-loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}