@import url(./variables.css);
.noscroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}


/* width */

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


/* Track */

 ::-webkit-scrollbar-track {
    background: var(--SiteGray);
    border-radius: 20px;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 20px;
}

.bg-siteRed {
    background-color: var(--SiteRed);
}

.sidebar-icon-only .navbar-brand-wrapper h3 {
    display: none;
}

.dashboard-card {
    width: 100%;
    background-color: #fff;
    padding: 20px 25px;
    position: relative;
    border-radius: 10px;
    /* box-shadow: 4px 4px 13px #e8e8e8; */
}

.dashboard-card h5 {
    font-weight: 600;
    color: var(--black);
    opacity: 0.5;
    letter-spacing: 0.6px;
    line-height: 1.5;
}

.dashboard-card h2 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--SiteRed);
}

.dashboard-card .img-wrap {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--lightRed);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
    transform: translateY(-50%);
}

.dashboard-card .img-wrap img {
    width: 100%;
    height: 100%;
}

.account-logout {
    padding: 10px 15px 0;
}

.account-logout a {
    background-color: var(--lightRed);
    display: block;
    padding: 10px 15px;
    border-radius: 7px;
    line-height: 1;
    color: var(--SiteRed);
    text-align: center;
    transition: all 0.3s;
}

.account-logout a:hover {
    background-color: var(--SiteRed);
    color: var(--white);
}

.account-logout a:hover .logout-icon {
    filter: brightness(0) invert(1);
}

.sidebar-icon-only .account-logout .menu-title {
    display: none;
}

div .dataTables_wrapper .dataTables_filter {
    margin-bottom: 20px;
    float: unset;
    text-align: left;
}

div .dataTables_wrapper .dataTables_filter>label {
    margin-bottom: 0;
    color: var(--white);
}

div .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    min-height: 40px;
    min-width: 260px;
    padding: 10px;
    transition: all 0.3s;
}

div .dataTables_wrapper .dataTables_filter input:focus {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px #dadada;
}

div table.dataTable thead>tr>th,
div table.dataTable thead>tr>th {
    background-color: var(--SiteRed);
    color: var(--white);
    border-top: 0;
    border-bottom: 0;
    padding: 14px 12px;
}

div table.dataTable thead>tr>th:first-child {
    border-top-left-radius: 0.3125rem;
}

div table.dataTable thead>tr>th:last-child {
    border-top-right-radius: 0.3125rem;
}

div table.dataTable tbody>tr:last-child>td:first-child {
    border-bottom-left-radius: 0.3125rem;
}

div table.dataTable tbody>tr:last-child>td:last-child {
    border-bottom-right-radius: 0.3125rem;
}

div table.dataTable {
    border: 0;
    border-spacing: 3px 9px;
}

div table.dataTable tbody th,
div table.dataTable tbody td {
    line-height: 1;
    padding: 10px 12px;
    border-left: 0;
    border-right: 0;
    /* background-color: var(--lightRed); */
    /* border: 0; */
    /* border-radius: 7px; */
}

.navbar-menu-wrapper .navbar-toggler {
    width: 40px;
    height: 40px !important;
    background-color: var(--lightRed);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 70px !important;
    font-size: 24px !important;
    color: var(--SiteRed) !important;
    transition: all 0.3s;
}

.navbar-menu-wrapper .navbar-toggler:hover {
    background-color: var(--SiteRed);
    color: var(--white) !important;
}

.icon-btn {
    width: 30px;
    display: inline-flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: var(--lightRed);
    border-radius: 6px;
    color: var(--SiteRed);
    transition: all 0.3s;
    border: 0;
}


/* .icon-btn.icon-btn-filled {
    background-color: var(--SiteRed);
    color: var(--white);
} */

.icon-btn:active {
    scale: 0.9;
    box-shadow: 0 0 0 2px var(--lightRed);
    color: var(--SiteRed);
}

.icon-btn:hover {
    background-color: var(--SiteRed);
    border-radius: 6px;
    color: var(--white);
}

.form-group>label {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.custom-form-control {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    min-height: 40px;
    padding: 10px;
    transition: all 0.3s;
    display: block;
    width: 100%;
    background-color: var(--white);
}

.custom-form-control:focus {
    box-shadow: 0 0 0 1.4px var(--black);
}


/* .custom-form-control:focus {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px #dadada;
    border: 1px solid #e8e8e8;
} */

.bg-white {
    background-color: var(--white);
}

.btns-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.imgs-wrapper {
    gap: 10px;
}

.imgs-wrapper .img-wrap {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 10px;
}

.imgs-wrapper .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid #e8e8e8;
    padding: 7px;
    border-radius: 10px;
}

.img-remove-btn {
    width: 20px;
    display: flex;
    height: 20px;
    background-color: var(--SiteRed);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    line-height: 1;
    padding-top: 2px;
    color: var(--white);
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.img-remove-btn:hover {
    opacity: 0.6;
}

.img-remove-btn:active {
    scale: 0.95;
}

.upload-btn-label {
    max-width: 240px;
    width: 100%;
    min-height: 80px;
    border: 2px dashed var(--gray-light);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    background-color: var(--white);
    position: relative;
}
.input-file-ele{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.upload-btn-label .error-help-block{
    text-align: center;
    margin-top: 10px;
}
.upload-btn-wrap {}

.upload-btn-title {
    font-size: 20px;
    color: var(--black);
    opacity: 0.8;
    display: block;
    text-align: center;
}

.upload-btn-subtitle {
    margin-top: 10px;
    display: block;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.upload-btn-wrap .preview-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.upload-btn-wrap .preview-images .img-wrap {
    width: 70px;
    height: 70px;
    position: relative;
}

.upload-btn-wrap .preview-images .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid #e8e8e8;
    padding: 2px;
    border-radius: 10px;
}

.nav-pills {
    gap: 10px;
    padding: 0;
    margin: 0;
    border: 0;
}

.nav-pills .nav-item {
    margin: 0;
}

.nav-pills .nav-item .nav-link {
    border: 0;
    line-height: 1;
    background-color: var(--gray-lightest);
    color: var(--black);
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.3s;
}

.nav-pills .nav-item .nav-link.active {
    background-color: var(--SiteRed);
    color: var(--white);
}

.nav-pills .nav-item .nav-link:not(.active):hover {
    background-color: var(--gray-light);
    /* color: var(--gray-lightest); */
}

.tab-btns-wrap {
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.tab-content {
    border: 0;
    padding-left: 0;
    padding-right: 0;
}

.img-list-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.img-list-item {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.img-list-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #00000059;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.img-list-item:hover .img-list-item-overlay {
    opacity: 1;
    visibility: visible;
}

.img-list-item .action-btn {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--SiteRed);
    border-radius: 100px;
    cursor: pointer;
    padding-top: 1px;
}

.img-list-item>img {
    width: 100%;
    height: 100%;
    border: 1px solid #e8e8e8;
    padding: 5px;
    border-radius: 10px;
}

.daily-quote-datatable .crud-custom-image {
    margin: 0 !important;
    border-radius: 10px !important;
    width: 60px !important;
    height: 60px !important;
    border: 1px solid #e8e8e8;
    padding: 5px;
    object-fit: contain;
}

.ui-widget.ui-widget-content {
    border: 0 !important;
    background-color: var(--white);
    padding: 10px;
    width: 300px;
    box-shadow: 0 0 40px #dddddd;
}

.ui-datepicker-header {
    background-color: transparent !important;
    border: 0 !important;
}

table.ui-datepicker-calendar {
    margin: 0 !important;
    border-spacing: 23px;
}

table.ui-datepicker-calendar td a {
    border: 0 !important;
    background-color: transparent !important;
    padding: 10px 0px;
    background-color: var(--gray-lightest) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 600 !important;
    font-family: 'nunito-medium';
}

table.ui-datepicker-calendar td a.ui-state-active {
    background-color: var(--SiteRed) !important;
}

table.ui-datepicker-calendar td {
    padding: 3px;
}

table.ui-datepicker-calendar td a:not(.ui-state-active):hover {
    background-color: var(--gray-light) !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-color: var(--SiteGray);
    color: var(--white);
    border: 0;
    right: 0 !important;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 0 !important;
    top: 0 !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 0 !important;
    top: 0 !important;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: var(--gray-light);
}

.auth-page .auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-page .auth-logo img {
    width: 100px;
    height: auto;
}

.auth-page .auth-logo span {
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
    font-family: 'nunito-light';
}

.auth-page .auth-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 600;
}

.auth-page .form-check-label {
    color: var(--white) !important;
}

.auth-page input.custom-form-control:focus {
    box-shadow: none;
}

.form-check .form-check-label input[type="checkbox"]:checked+.input-helper:after {
    width: 8px;
}

.form-check-datatable-input{

}

/* Loader */

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 1000000 !important;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
  }

  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
  }

  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }

  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  }

  /* Animation */

  @-webkit-keyframes spinner {
    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);
    }
  }
  @-moz-keyframes spinner {
    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);
    }
  }
  @-o-keyframes spinner {
    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 spinner {
    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);
    }
  }

  .upload-csv-btn-label {
    width: 100%;
    min-height: 120px;
    border: 2px dashed var(--gray-light);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    background-color: var(--white);
    position: relative;
}
.import-description p{
    font-size: 16px;
    margin-bottom: 7px;
}
.dashboard-card .table-responsive {
    max-height: calc(100dvh - 390px);
    overflow: auto;
}

.dashboard-card
 .birthday-card {
    padding: 0;
}
