@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400..700&display=swap");
#loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  background: #102A23;
}

.logo_loader {
  display: flex;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
}

.dash {
  animation: dashArray 5s ease-in-out infinite, dashOffset 5s linear infinite;
}

.spin {
  animation: spinDashArray 2s ease-in-out infinite, spin 8s ease-in-out infinite, dashOffset 2s linear infinite;
  transform-origin: center;
}

@keyframes dashArray {
  0% {
    stroke-dasharray: 0 1 359 0;
  }
  50% {
    stroke-dasharray: 0 359 1 0;
  }
  100% {
    stroke-dasharray: 359 1 0 0;
  }
}
@keyframes spinDashArray {
  0% {
    stroke-dasharray: 270 90;
  }
  50% {
    stroke-dasharray: 0 360;
  }
  100% {
    stroke-dasharray: 270 90;
  }
}
@keyframes dashOffset {
  0% {
    stroke-dashoffset: 365;
  }
  100% {
    stroke-dashoffset: 5;
  }
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  12.5%, 25% {
    rotate: 270deg;
  }
  37.5%, 50% {
    rotate: 540deg;
  }
  62.5%, 75% {
    rotate: 810deg;
  }
  87.5%, 100% {
    rotate: 1080deg;
  }
}
.select-box {
  width: 100%;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.1;
}
.select-box * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  color: #fff;
}
.select-box .default_option {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.select-box .default_option li {
  padding: 10px 20px;
}
.select-box .default_option:before {
  content: "";
  position: absolute;
  top: 35%;
  left: 6%;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: transparent transparent #ffffff #ffffff;
  transform: rotate(-45deg);
}
.select-box .select_ul {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: 20vh;
  background: rgba(16, 42, 35, 0.8);
  border-radius: 5px;
  display: none;
  z-index: 1000;
  overflow-y: scroll;
}
.select-box .select_ul li {
  padding: 10px 20px;
  cursor: pointer;
}
.select-box .select_ul li:first-child:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.select-box .select_ul li:last-child:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.select-box .select_ul li:hover {
  background: #FFC107;
}
.select-box .select_ul .active {
  background-color: #f5d165;
}
.select-box .option {
  display: flex;
  align-items: center;
  justify-content: start;
}
.select-box .option .icon {
  display: inherit;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 15px;
}
.select-box .option p {
  width: 100%;
  height: 100%;
  display: inherit;
  justify-content: start;
}
.select-box.default .select_ul {
  display: block;
}
.select-box.default .default_option:before {
  top: 45%;
  transform: rotate(-225deg);
}

.search-box {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 550px;
}
.search-box .input-box {
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  width: 100%;
  padding-left: 2.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: rgba(230, 237, 235, 0.1019607843);
  color: #fff;
  box-shadow: 0 0 5px #FFC107, 0 0 0 3px #FFC107;
  -webkit-box-shadow: 0 0 5px #FFC107, 0 0 0 3px #FFC107;
  -moz-box-shadow: 0 0 5px #FFC107, 0 0 0 3px #FFC107;
  transition: 0.3s ease;
  font-family: cairo, sans-serif;
}
.search-box .input-box::-moz-placeholder {
  color: #fff;
}
.search-box .input-box::placeholder {
  color: #fff;
}
.search-box .icon {
  position: absolute;
  left: 1.6rem;
  fill: #FFC107;
  width: 1rem;
  height: 1rem;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
  font-family: cairo, "Open Sans", sans-serif !important;
  color: #ffffff;
  background: #102A23;
  overflow-x: hidden;
}

/* BACKGROUND ANIMATION */
.gradient {
  width: 500px;
  height: 500px;
  filter: blur(50px);
  position: fixed;
  left: 90%;
  top: 30%;
  background-image: linear-gradient(#4ddc9e, #5b37eb, #f1307e);
  animation: rotate 10s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}

.gleft {
  right: 90% !important;
  top: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.row {
  --bs-gutter-x: 0 !important;
}

a {
  font-family: cairo, sans-serif;
  color: #4fa6d5;
  text-decoration: none;
}

a:hover {
  color: #45beff;
  text-decoration: none;
}

span {
  font-family: cairo, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: cairo, sans-serif;
  color: #FFC107;
}

.hr-sect {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  color: #fff;
  margin: 8px 0px;
}

.hr-sect::before,
.hr-sect::after {
  content: "";
  flex-grow: 1;
  background: #fff;
  height: 1px;
  font-size: 0px;
  line-height: 0px;
  margin: 0px 8px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: -5px;
  bottom: 15px;
  z-index: 20;
  background: rgba(214, 220, 224, 0.3019607843);
  width: 40px;
  height: 40px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 0.4s;
  border-style: solid;
  border-color: #FFC108;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #FFC108;
  opacity: 1 !important;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.top-image {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0.3;
  top: -10%;
  overflow: hidden;
  width: 100%;
}
.top-image .bg-phone-top {
  width: 70vh;
}

.footer-image {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: left;
  right: -5%;
  bottom: -10%;
  opacity: 0.8 !important;
  transform: rotate(-36deg);
}
.footer-image .bg-phone-bottom {
  width: 25vh;
}

.explore-btn {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
}
.explore-btn .button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #FFC107;
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}
.explore-btn .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #FFC107;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.explore-btn .button:hover {
  background-color: #102A23;
  box-shadow: 0 0 0.5rem #FFC107;
}
.explore-btn .button:hover .button__icon-wrapper {
  color: #102A23;
}
.explore-btn .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}
.explore-btn .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.explore-btn .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-flow: column;
  transition: 0.4s;
  height: 100vh;
}
@media only screen and (min-width: 575px) and (max-width: 767px) {
  #hero {
    height: 100vh;
  }
}
#hero div > * {
  z-index: 100;
}
#hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  z-index: 0;
  border-radius: 0 0 20% 20%;
  transform: translateX(-50%) rotate(0deg);
}
#hero .carousel {
  display: inline-block;
  padding: 20px;
}
#hero .carousel-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  opacity: 0.3;
  background: linear-gradient(45deg, #3023AE 0%, #00ff77 100%);
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 450px;
  max-height: 450px;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-container img {
  width: 30vmax;
  height: auto;
  margin-bottom: 10px;
}
#hero .carousel-container p {
  overflow: visible;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 1.2rem;
  font-family: cairo, "Open Sans", sans-serif !important;
  font-weight: bolder;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px) {
  #hero::after {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  #hero::before {
    top: 0;
    width: 180%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}
@media (max-width: 575px) {
  #hero h2 {
    font-size: 30px;
  }
  #hero::after {
    left: 40%;
    top: 0;
    width: 200%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  #hero::before {
    left: 50%;
    top: 0;
    width: 200%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}
#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 12px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 48px;
  height: 48px;
  transition: 0.3s;
}
#hero .social-links a:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

#title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  width: 160px;
  text-align: center;
  margin: auto;
  white-space: nowrap;
  padding-bottom: 25px;
}

#title > :first-child {
  background-color: #42c58b;
  content: "";
  display: block;
  height: 3px;
  width: 50%;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}

#title > :last-child {
  background-color: #42c58b;
  content: "";
  display: block;
  height: 3px;
  width: 50%;
  margin-top: 0.25em;
  margin-left: auto;
  margin-right: auto;
}

.pagination {
  position: relative;
}
.pagination a {
  position: relative;
  display: inline-block;
  color: #FFC107;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 8px 16px 10px;
}
.pagination a:before {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  background-color: #68A4C4;
  border-radius: 24px;
  transform: scale(0);
  transition: all 0.2s;
}
.pagination a:hover,
.pagination a .pagination-active {
  color: #fff;
}
.pagination a:hover:before,
.pagination a .pagination-active:before {
  transform: scale(1);
}
.pagination .pagination-active {
  color: #fff;
}
.pagination .pagination-active:before {
  transform: scale(1);
}
.pagination .pagination-newer.disabled, .pagination .pagination-older.disabled {
  filter: grayscale(1);
}
.pagination .pagination-newer {
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.pagination .pagination-older {
  margin-left: 50px;
  display: flex;
  align-items: center;
}

.disabled {
  color: #ffffff;
  pointer-events: none;
}

.btn-close {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
  outline: 0;
  filter: brightness(0) saturate(100%) invert(79%) sepia(83%) saturate(3401%) hue-rotate(352deg) brightness(103%) contrast(103%);
}

.btn-add {
  position: absolute;
  display: flex;
  top: 0;
  color: #fff;
  background-color: rgb(1, 162, 1);
  border-radius: 25px;
  float: inline-end;
  margin: 5px;
}
.btn-add:hover {
  background-color: rgb(2, 209, 2);
}

.gdesc-inner {
  text-align: center !important;
  background: black !important;
  color: #fff;
}
.gdesc-inner .gslide-title {
  font-size: 1rem;
  font-weight: bolder;
  color: #01C38D !important;
  word-break: break-all;
  overflow: scroll;
}
.gdesc-inner .desc-more {
  display: block !important;
  color: #4fa6d5 !important;
  font-size: 1rem;
  margin: 0.8rem;
  opacity: 1 !important;
}

.store-btns {
  display: flex;
}
.store-btns .button {
  background-color: transparent;
  border-radius: 20px;
  box-shadow: 0 0 0.5rem rgba(17, 25, 37, 0.5);
  color: #fff;
  border-style: solid;
  border-color: #FFC107;
  padding: 1rem;
  font-family: "Instrument Sans", sans-serif;
}
.store-btns .button:hover {
  cursor: pointer;
  background-color: #FFC107;
}

/* Button styling */
.download-qr-btn {
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: underline;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: bold;
  z-index: 1000 !important;
  transition: background 0.3s ease-in-out;
  position: relative;
  width: 300px;
  align-self: center;
  /* QR Code Popup */
  /* Icon */
}
.download-qr-btn:hover {
  color: #ffa733;
}
.download-qr-btn .qr-popup {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  display: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.download-qr-btn .qr-popup img {
  width: 150px;
  height: 150px;
}
.download-qr-btn i {
  margin-right: 8px;
}

select {
  border: 1px solid #FFFFFF !important;
  border-radius: 20px !important;
  color: #FFC107 !important;
  background: rgba(16, 42, 35, 0.5) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") left 0.75rem center/8px 10px no-repeat !important;
}

::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #212736;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FFC107;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffcb30;
}

#item-modal .modal-content, #offers-manager-modal .modal-content, #users-modal .modal-content {
  background: rgba(16, 42, 35, 0.9294117647);
}
#item-modal .modal-content .form-control, #offers-manager-modal .modal-content .form-control, #users-modal .modal-content .form-control {
  background: inherit;
  color: #FFC107;
  border-radius: 20px !important;
}
#item-modal .modal-content .form-select, #offers-manager-modal .modal-content .form-select, #users-modal .modal-content .form-select {
  border: 1px solid #FFFFFF !important;
  border-radius: 20px !important;
  color: #FFC107;
  background: rgba(16, 42, 35, 0.5) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") left 0.75rem center/8px 10px no-repeat !important;
}
#item-modal .modal-content .form-select .modal-content .form-control::-moz-placeholder, #offers-manager-modal .modal-content .form-select .modal-content .form-control::-moz-placeholder, #users-modal .modal-content .form-select .modal-content .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
#item-modal .modal-content .form-select .modal-content .form-control::placeholder, #offers-manager-modal .modal-content .form-select .modal-content .form-control::placeholder, #users-modal .modal-content .form-select .modal-content .form-control::placeholder {
  color: #fff;
  opacity: 1;
}
#item-modal .modal-content label, #item-modal span, #offers-manager-modal .modal-content label, #offers-manager-modal span, #users-modal .modal-content label, #users-modal span {
  color: #fff;
  margin-inline-end: 0.2rem;
}
#item-modal .modal-content .btn-check:checked + .btn, #offers-manager-modal .modal-content .btn-check:checked + .btn, #users-modal .modal-content .btn-check:checked + .btn {
  color: #fff;
  background-color: #FFC107;
}
#item-modal .modal-content label.btn, #offers-manager-modal .modal-content label.btn, #users-modal .modal-content label.btn {
  border-color: #FFC107;
  color: #fff;
}
#item-modal .modal-content label.btn:hover, #offers-manager-modal .modal-content label.btn:hover, #users-modal .modal-content label.btn:hover {
  color: #fff;
  background-color: #f5d165;
}
#item-modal .modal-content fieldset, #offers-manager-modal .modal-content fieldset, #users-modal .modal-content fieldset {
  border-width: 1px !important;
  border-style: dotted !important;
  border-color: rgba(255, 255, 255, 0.4588235294);
}
#item-modal .modal-content legend, #offers-manager-modal .modal-content legend, #users-modal .modal-content legend {
  color: #fff;
}
#item-modal .modal-content input, #offers-manager-modal .modal-content input, #users-modal .modal-content input {
  background: rgba(16, 42, 35, 0.5);
  border: 1px solid #FFFFFF !important;
  border-radius: 20px !important;
  color: #FFC107 !important;
  line-height: 2.1;
  padding-inline: 1rem;
}

.dataTable, .dt-container {
  border-collapse: collapse;
  border: 0;
  color: #fff;
  text-align: center !important;
  align-content: center !important;
}

.dataTable, tbody, td, tfoot, th, thead, tfoot, tr {
  color: #fff !important;
  border-color: #FFC107 !important;
  border-style: dashed !important;
  border-width: 0.5px !important;
  text-align: center !important;
  align-content: center !important;
}

.dt-paging .dt-paging-button {
  background: transparent;
  color: #FFC107; /* Highlight color */
  padding: 6px 12px;
  margin: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dt-paging .dt-paging-button:hover {
  background: #FFC107;
  color: #222;
}

.dt-paging .dt-paging-button.current {
  background: #FFC107;
  color: #222;
  font-weight: bold;
}

/* Disabled pagination buttons */
.dt-paging .dt-paging-button.disabled {
  color: #666;
  cursor: not-allowed;
}

/* Remove default focus outline */
.dt-paging .dt-paging-button:focus {
  outline: none;
  box-shadow: none;
}

.swal2-modal {
  display: flex !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  background: rgba(25, 41, 34, 0.8) !important;
  border-radius: 25px !important;
  width: 90% !important;
}

.swal2-modal p, td {
  color: #fff !important;
}

.swal2-title {
  color: #FFC107 !important;
}

.swal2-content {
  color: #fff !important;
  text-align: center !important;
}

.swal2-close {
  outline: 0 !important;
}

.swal2-modal .carousel {
  width: 300px !important;
  height: 200px !important;
  margin: auto !important;
}

.swal2-modal .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.swal2-modal table {
  width: 100%;
  border-spacing: 0px;
}

.swal2-modal th,
.swal2-modal td {
  padding: 10px;
  border-bottom: 1px solid #fff;
  text-align: start;
}/*# sourceMappingURL=style.css.map */