@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;700&family=Roboto:wght@400;500&display=swap");

@font-face {
  font-family: "ds-digitalbold";
  src: url("../webfonts/ds-digib-webfont.woff2") format("woff2"),
    url("../webfonts/ds-digib-webfont.woff") format("woff"),
    url("../webfonts/ds-digib-webfont.ttf") format("truetype"),
    url("../webfonts/ds-digib-webfont.svg#ds-digitalbold") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #010101;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow-x: hidden;
}

body.page-trns-active {
  position: relative;
}

body.page-trns-active::after {
  position: absolute;
  content: "\f110";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #000;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  font-size: 4.5rem;
  z-index: 999;
  animation: spinRoll 1s infinite linear;
}

body.page-trns-active::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e32;
  z-index: 99;
  opacity: 0.65;
}

@-webkit-keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
}

select {
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

span {
  display: inline-block;
}

a:hover {
  color: #37f5f9;
}

.text--primary {
  color: #7367f0 !important;
}

.text--secondary {
  color: #868e96 !important;
}

.text--success {
  color: #28c76f !important;
}

.text--danger {
  color: #ea5455 !important;
}

.text--warning {
  color: #ff9f43 !important;
}

.text--info {
  color: #1e9ff2 !important;
}

.text--dark {
  color: #10163a !important;
}

.text--muted {
  color: #ccc !important;
}

.text--base {
  color: #37f5f9 !important;
}

/* .text--dark {
  color: var(--bs-light) !important;
} */

.bg--primary {
  background-color: #7367f0 !important;
}

.bg--secondary {
  background-color: #868e96 !important;
}

.bg--success {
  background-color: #28c76f !important;
}

.bg--danger {
  background-color: #ea5455 !important;
}

.bg--warning {
  background-color: #ff9f43 !important;
}

.bg--info {
  background-color: #1e9ff2 !important;
}

.bg--dark {
  background-color: #10163a !important;
}

.bg--light {
  background-color: #eef4ff !important;
}

.bg--base {
  background-color: #37f5f9 !important;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.bg_img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section--bg {
  background-color: #0e0e32;
}

.section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.opacity-20 {
  opacity: 0.2;
}

.dark--overlay {
  position: relative;
  z-index: 1;
}

.dark--overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e32;
  opacity: 0.4;
  z-index: -1;
}

.dark--overlay-two {
  position: relative;
  z-index: 1;
}

.dark--overlay-two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e32;
  opacity: 0.8;
  z-index: -1;
}

.text-shadow--base {
  text-shadow: 0 0 5px #37f5f9;
}

.bg--one {
  background-color: var(--bs-light);
}

.slick-arrow {
  cursor: pointer;
}

.z-index-2 {
  z-index: 2;
}

.main-wrapper {
  position: relative;
}

.section-header {
  margin-bottom: 2.8125rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.section-subtitle.border-left {
  padding-left: 2.1875rem;
  position: relative;
  z-index: 1;
}

.section-subtitle.border-left::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #37f5f9;
  margin-top: -1px;
}

a.text-white:hover {
  color: #37f5f9 !important;
}

.text--link {
  text-decoration: underline;
}

.text--link:hover {
  text-decoration: underline;
}

.has--link {
  position: relative;
}

.has--link .item--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom--dropdown .dropdown-toggle.no-arrow::after {
  display: none;
}

.custom--dropdown .dropdown-toggle::after {
  content: "\f107";
  border: none;
  font-family: "Line Awesome Free";
  font-weight: 900;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.custom--dropdown .dropdown-menu {
  border-color: #e5e5e5;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.custom--dropdown .dropdown-menu li {
  border-bottom: 1px dashed #e5e5e5;
}

.custom--dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

.custom--dropdown .dropdown-menu li .dropdown-item {
  color: #010101;
  font-size: 0.875rem;
}

.custom--dropdown .dropdown-menu li .dropdown-item:hover {
  color: #37f5f9;
  background-color: rgba(55, 245, 249, 0.05);
}

.cumtom--nav-tabs {
  border-bottom: none;
}

.cumtom--nav-tabs .nav-item {
  padding: 5px;
}

.cumtom--nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border: 1px solid #37f5f9;
}

.cumtom--nav-tabs .nav-item .nav-link.active {
  border-color: #37f5f9;
  color: var(--bs-light) !important;
}

.custom--accordion .accordion-item + .accordion-item {
  margin-top: 1.25rem;
}

.custom--accordion .accordion-item {
  border: 1px solid rgba(55, 245, 249, 0.5);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: var(--bs-light);
}

.custom--accordion .accordion-item:first-child .accordion-button {
  border-top: none;
}

.custom--accordion .accordion-item:last-child .accordion-button {
  border-bottom: none;
}

.custom--accordion .accordion-button {
  padding: 1.25rem 1.5625rem;
  background-color: rgba(55, 245, 249, 0.01);
  font-size: 1.125rem;
  position: relative;
  text-align: left;
  color: #000;
}

.custom--accordion .accordion-button::after {
  position: absolute;
  top: 1.25rem;
  right: 0.8125rem;
  font-size: 1.0625rem;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background-image: none;
  color: #000;
}

.custom--accordion .accordion-button:not(.collapsed) {
  background-color: #37f5f9;
  color: #363636;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  color: #363636;
}

.custom--accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
  border-color: transparent;
}

.custom--accordion .accordion-body {
  padding: 1.25rem 1.5625rem;
}

.custom--accordion-two .accordion-button {
  background-color: #f3f6f9;
}

.custom--accordion-two .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.custom--accordion-two .accordion-button:not(.collapsed) {
  background-color: #f3f6f9;
}

.page-breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.9375rem;
}

.page-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}

.page-breadcrumb li::after {
  content: "-";
  color: #000000;
  margin: 0 0.3125rem;
}

.page-breadcrumb li:first-child::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #37f5f9;
  margin-right: 0.375rem;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li a {
  color: #000000;
  text-transform: capitalize;
}

.page-breadcrumb li a:hover {
  color: #37f5f9;
}

.cmn-list li + li {
  margin-top: 0.9375rem;
}

.cmn-list li {
  position: relative;
  padding-left: 2.1875rem;
}

.cmn-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f058";
  font-size: 1.75rem;
  color: #37f5f9;
  margin-right: 0.5rem;
  line-height: 1;
}

.cmn-list-two li {
  padding: 0.375rem 0.9375rem;
  font-size: 0.875rem;
}

.cmn-list-two li:nth-child(even) {
  background-color: #19193c;
}

.number-list {
  list-style: decimal;
  padding-left: 1.125rem;
}

.number-list li + li {
  margin-top: 0.625rem;
}

.disc-list li + li {
  margin-top: 0.625rem;
}

.disc-list li {
  position: relative;
  padding-left: 0.9375rem;
}

.disc-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: -0.1875rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #bdbdbd;
}

.square-list li + li {
  margin-top: 10px;
}

.square-list li {
  padding-left: 25px;
  position: relative;
}

.square-list li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #e6e6e6;
}

.square-list li::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 4px;
  width: 14px;
  height: 14px;
  background-color: rgba(55, 245, 249, 0.45);
}

.caption-list li {
  display: flex;
  flex-wrap: wrap;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px dashed #33287a;
}

.caption-list li:first-child {
  padding-top: 0;
}

.caption-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.caption-list li .caption {
  width: 30%;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
}

@media (max-width: 480px) {
  .caption-list li .caption {
    width: 35%;
  }
}

.caption-list li .caption::after {
  position: absolute;
  content: ":";
  top: 0;
  right: 0;
}

.caption-list li .value {
  width: 70%;
  padding-left: 0.9375rem;
}

@media (max-width: 480px) {
  .caption-list li .value {
    width: 65%;
  }
}

.caption-list-two {
  padding: 0.625rem 0.9375rem;
  background-color: rgba(55, 245, 249, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.caption-list-two li {
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px dashed #231b54;
}

.caption-list-two li:first-child {
  padding-top: 0;
}

.caption-list-two li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.caption-list-two li .caption {
  width: 30%;
  position: relative;
  font-weight: 700;
  padding-right: 10px;
}

.caption-list-two li .caption::after {
  position: absolute;
  content: ":";
  top: 0;
  right: 0;
}

.caption-list-two li .value {
  width: 70%;
  padding-left: 20px;
}

.object-fit--cover {
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.pagination {
  margin: -0.3125rem -0.4375rem;
  flex-wrap: wrap;
}

.pagination .page-item {
  margin: 0.3125rem 0.4375rem;
}

.pagination .page-item.active .page-link {
  background-color: #37f5f9;
  color: #000;
}

.pagination .page-item .page-link {
  width: 2.8125rem;
  height: 2.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(55, 245, 249, 0.25);
  color: var(--bs-light);
}

.pagination .page-item .page-link:hover {
  background-color: #37f5f9;
  border-color: #37f5f9;
  color: #000;
}

.pagination-md .page-item .page-link {
  width: 2.5rem;
  height: 2.5rem;
}

.pagination-sm .page-item .page-link {
  width: 2.1875rem;
  height: 2.1875rem;
  font-size: 0.875rem;
}

.shake {
  animation: shake 0.5s 1 linear;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-moz-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-ms-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes preloader-inside-white {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes preloader-inside-white {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes preloader-inside-red {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  30% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes preloader-inside-red {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  30% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.scroll-to-top {
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  display: none;
  z-index: 99999;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  background-color: #8d15de;
  line-height: 77px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
}

.scroll-to-top .scroll-icon {
  font-size: 31px;
  color: #000000;
  display: inline-block;
}

.scroll-to-top .scroll-icon i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cumtom--nav-tabs .nav-item .nav-link.active,
.custom--table thead,
.inline-social-links li a:hover,
.button-nav-tabs .nav-item .nav-link.active {
  background-color: #37f5f9;
}

.header,
.hero::after,
/* .game-card,
.stat-card,
.feature-card,
.winner-card, */
/* .testimonial-item, */
/* .lottery-details-instruction, */
/* .dashboard-card, */
/* .account-wrapper, */
/* .contact-info-card, */
.contact-wrapper {
  background-color: #0e0e32;
  color: white;
}

.account-wrapper {
  background: white;
}

.cumtom--nav-tabs .nav-item .nav-link,
.custom--accordion-two .accordion-button:not(.collapsed),
.custom--field i,
.overview-card__icon,
.inline-menu li a:hover,
.contact-info i,
.contact-info p a:hover {
  color: var(--bs-gray-400);
}

.table-game,
.overview-card,
.stat-card__header,
.winner-card,
.market-card__header,
.market-card__header .left,
.market-card__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body,
.btn--base.btn--custom,
.custom--checkbox label::before,
.header .main-menu li.menu_has_children > a::before,
.header .main-menu li .sub-menu,
.header .main-menu li .sub-menu li a,
.game-card,
.stat-card,
.feature-card,
.winner-card,
.testimonial-item,
.inline-social-links li a,
.market-card,
.market-card::after {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.winner-card__thumb img,
.testimonial-item .client-details .thumb img,
.about-thumb img {
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.cumtom--nav-tabs .nav-item .nav-link,
.lottery-details-header .content .clock > div,
.market-card,
.button-nav-tabs,
.mini-input input {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.stat-card,
.about-thumb,
.lottery-details-instruction .cumtom--nav-tabs {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.preloader {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--bs-light);
  text-align: center;
}

.preloader .preloader-container {
  display: inline-block;
  width: 100px;
  height: 100px;
  margin: auto;
  position: absolute;
  top: 44%;
  left: 0;
  position: relative;
}

.preloader .preloader-container .animated-preloader {
  display: inline-block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background: #37f5f9;
  border-radius: 50em;
}

.preloader .preloader-container .animated-preloader:after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50em;
  background: #0e0e32;
  -webkit-animation: preloader-inside-white 1s ease-in-out infinite;
  -ms-animation: preloader-inside-white 1s ease-in-out infinite;
  animation: preloader-inside-white 1s ease-in-out infinite;
}

.preloader .preloader-container .animated-preloader:before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 50em;
  background: #37f5f9;
  -webkit-animation: preloader-inside-red 1s ease-in-out infinite;
  -ms-animation: preloader-inside-red 1s ease-in-out infinite;
  animation: preloader-inside-red 1s ease-in-out infinite;
}

h1 {
  font-size: 3.875rem;
}

h2 {
  font-size: 2rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.375rem;
}

@media (max-width: 767px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo 2", sans-serif;
  color: #000;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-family: "Exo 2", sans-serif;
  color: #000;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.3;
  word-break: break-word;
}

p,
li,
span {
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
}

.fs--18px {
  font-size: 1.125rem !important;
}

.fs--16px {
  font-size: 1rem !important;
}

.fs--14px {
  font-size: 0.875rem !important;
}

.fs--12px {
  font-size: 0.75rem !important;
}

.h--font {
  font-family: "Exo 2", sans-serif !important;
}

.p--font {
  font-family: "Roboto", sans-serif !important;
}

.fw-medium {
  font-weight: 500 !important;
}

button:focus {
  outline: none;
}

[class*="btn--"]:not(.btn--link):not(.btn--light) {
  color: #262779;
}

.btn {
  padding: 0.75rem 1.875rem;
}

.btn--primary {
  background-color: #7367f0;
}

.btn--primary:hover {
  background-color: #5e50ee;
}

.btn--secondary {
  background-color: #868e96;
}

.btn--secondary:hover {
  background-color: #78818a;
}

.btn--success {
  background-color: #28c76f;
}

.btn--success:hover {
  background-color: #24b263;
}

.btn--danger {
  background-color: #ea5455;
}

.btn--danger:hover {
  background-color: #e73d3e;
}

.btn--warning {
  background-color: #ff9f43;
}

.btn--warning:hover {
  background-color: #ff922a;
}

.btn--info {
  background-color: #1e9ff2;
}

.btn--info:hover {
  background-color: #0d93e9;
}

.btn--light {
  background-color: #eef4ff;
}

.btn--light:hover {
  background-color: #d5e4ff;
}

.btn--dark {
  background-color: #10163a;
  color: #000;
}

.btn--dark:hover {
  background-color: #0a0e26;
  color: #000;
}

.btn--link {
  color: #7367f0;
}

.btn--base {
  background-color: #37f5f9;
  color: #000;
}

.btn--base:hover {
  background-color: #1ef4f8;
  color: #000;
}

.btn--base.btn--custom {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: -6px;
}

.btn--base.btn--custom:hover {
  outline-offset: 0;
  outline: 2px solid rgba(255, 255, 255, 0);
}

.text-btn {
  padding: 0;
  color: #010101;
  background-color: transparent;
}

.btn-outline--primary {
  color: #7367f0;
  border-color: #7367f0;
}

.btn-outline--primary:hover {
  background-color: #7367f0;
  color: #000000;
}

.btn-outline--secondary {
  color: #868e96;
  border-color: #868e96;
}

.btn-outline--secondary:hover {
  background-color: #868e96;
  color: #000000;
}

.btn-outline--success {
  color: #28c76f;
  border-color: #28c76f;
}

.btn-outline--success:hover {
  background-color: #28c76f;
  color: #000000;
}

.btn-outline--danger {
  color: #ea5455;
  border-color: #ea5455;
}

.btn-outline--danger:hover {
  background-color: #ea5455;
  color: #000000;
}

.btn-outline--warning {
  color: #ff9f43;
  border-color: #ff9f43;
}

.btn-outline--warning:hover {
  background-color: #ff9f43;
  color: #000000;
}

.btn-outline--info {
  color: #1e9ff2;
  border-color: #1e9ff2;
}

.btn-outline--info:hover {
  background-color: #1e9ff2;
  color: #000000;
}

.btn-outline--light {
  color: #eef4ff;
  border-color: #eef4ff;
}

.btn-outline--light:hover {
  background-color: #eef4ff;
  color: #000000;
}

.btn-outline--dark {
  color: #10163a;
  border-color: #10163a;
}

.btn-outline--dark:hover {
  background-color: #10163a;
  color: #000000;
}

.btn-outline--base {
  color: #37f5f9;
  border: 1px solid #37f5f9;
}

.btn-outline--base:hover {
  background-color: #37f5f9;
  color: var(--bs-light);
}

.btn-shadow--primary {
  box-shadow: 0 0 6px 1px rgba(115, 103, 240, 0.35);
}

.btn-shadow--secondary {
  box-shadow: 0 0 6px 1px rgba(134, 142, 150, 0.35);
}

.btn-shadow--success {
  box-shadow: 0 0 6px 1px rgba(40, 199, 111, 0.35);
}

.btn-shadow--danger {
  box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.35);
}

.btn-shadow--warning {
  box-shadow: 0 0 6px 1px rgba(255, 159, 67, 0.35);
}

.btn-shadow--info {
  box-shadow: 0 0 6px 1px rgba(30, 159, 242, 0.35);
}

.btn-shadow--light {
  box-shadow: 0 0 6px 1px rgba(238, 244, 255, 0.35);
}

.btn-shadow--dark {
  box-shadow: 0 0 6px 1px rgba(16, 22, 58, 0.35);
}

.btn-shadow--base {
  box-shadow: 0 0 6px 1px rgba(55, 245, 249, 0.35);
}

.btn--capsule {
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.icon-btn {
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: #37f5f9;
  color: #000;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon-btn:hover {
  color: #000;
}

.btn--group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.btn--group *[class*="btn"] {
  margin: 0.3125rem 0.625rem;
  align-items: center;
}

.btn--group *[class*="btn"].d-flex {
  padding: 0.5rem 2.1875rem;
}

.btn--group.style--two {
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
}

.btn--group.style--two *[class*="btn"] {
  margin: 0.1875rem 0.3125rem;
}

[class*="btn"].btn-md {
  padding: 0.625rem 1.25rem;
}

[class*="btn"].btn-sm {
  padding: 0.375rem 0.625rem;
}

.badge {
  font-weight: 400;
  border-radius: 35px;
}

.badge--primary {
  background-color: #7367f0;
  border: 1px solid #7367f0;
  color: white;
}

.badge--secondary {
  background-color: #868e96;
  border: 1px solid #868e96;
  color: white;
}

.badge--success {
  background-color: #28c76f;
  border: 1px solid #28c76f;
  color: white;
}

.badge--danger {
  background-color: #ea5455;
  border: 1px solid #ea5455;
  color: black;
}

.badge--warning {
  background-color: #ff9f43;
  border: 1px solid #ff9f43;
  color: black;
}

.badge--info {
  background-color: #1e9ff2;
  border: 1px solid #1e9ff2;
  color: #1e9ff2;
}

.badge--light {
  background-color: #eef4ff;
  border: 1px solid #eef4ff;
  color: #eef4ff;
}

.badge--dark {
  background-color: #10163a;
  border: 1px solid #10163a;
  color: #10163a;
}

.badge--base {
  background-color: #37f5f9;
  border: 1px solid #37f5f9;
  color: #37f5f9;
}

.custom--table {
  border-radius: 8px;
  border: var(--bs-info) 1px solid;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin: 0;
  font-size: 15px;
  border-spacing: 0;
  border-collapse: separate;
}

.custom--table.white-space-nowrap th {
  white-space: nowrap;
}

.custom--table thead tr {
  box-shadow: 0 5px 10px rgba(55, 245, 249, 0.35);
  /* color: black; */
}

.custom--table thead th {
  border-top: none;
  padding: 0.625rem 1.25rem;
  color: white;
  background-color: transparent;
  border: none;
  font-size: 0.75rem;
  /* text-transform: uppercase; */
  font-weight: 500;
  text-align: center;
}

@media (min-width: 991px) {
  .custom--table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
  }

  .custom--table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
  }
}

@media (max-width: 991) {
  .custom--table tbody tr:last-child td {
    border-bottom: 1px solid rgb(255 255 255 / 12%);
  }
}

.custom--table thead th:first-child {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -ms-border-radius: 5px 0 0 0;
  -o-border-radius: 5px 0 0 0;
  text-align: left;
}

.custom--table thead th:last-child {
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -ms-border-radius: 0 5px 0 0;
  -o-border-radius: 0 5px 0 0;
  text-align: right;
}

.table > :not(:first-child) {
  border-top: transparent;
}

.custom--table tbody td {
  border-top: none;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  padding: 0.9375rem 1.25rem;
  color: #010101;
  vertical-align: middle;
  font-size: 1rem;
  text-align: center;
}

.custom--table tbody td:first-child {
  text-align: left;
}

.custom--table tbody td:last-child {
  text-align: right;
}

/* .custom--table tbody tr td {
    border-bottom: 1px solid #20e85e;
} */
.custom--table tbody tr:hover {
  background-color: var(--bs-light);
}

.custom--table tbody tr:last-child td {
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.lottery--progress {
  height: 10px;
}

.lottery--progress .progress-bar {
  background-color: #06c0c4;
}

.table-game {
  align-items: center;
}

.table-game img {
  max-width: 40px;
}

.table-game .name {
  padding-left: 0.625rem;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  color: #010101;
  top: 0;
  left: 0;
  padding: 0.8125rem 0.9375rem;
  display: none;
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .table-responsive--md thead {
    display: none;
  }

  .table-responsive--md tbody tr:nth-child(odd) {
    background-color: var(--bs-light);
  }

  .table-responsive--md tr th,
  .table-responsive--md tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
  }

  .table-responsive--md tr th:first-child,
  .table-responsive--md tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--md [data-label]::before {
    display: block;
  }

  .table-game {
    justify-content: end;
  }
}

@media (max-width: 767px) {
  .table-responsive--sm thead {
    display: none;
  }

  .table-responsive--sm tbody tr:nth-child(odd) {
    background-color: #272760;
  }

  .table-responsive--sm tr th,
  .table-responsive--sm tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .table-responsive--sm tr th:first-child,
  .table-responsive--sm tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--sm [data-label]::before {
    display: block;
  }

  .table-game {
    justify-content: end;
  }
}

@media (max-width: 1199px) {
  *[class*="table-responsive--"].data-label--none tr th,
  *[class*="table-responsive--"].data-label--none tr td {
    padding-left: 0.75rem;
  }
}

.form-group {
  margin-bottom: 0.9375rem;
}

.form--control {
  padding: 0.625rem 1.25rem;
  border: 1px solid #37f5f9;
  width: 100%;
  /* background-color: #1c1c43; */
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #000;
  height: 50px;
}

.form--control::-webkit-input-placeholder {
  color: #ccc;
}

.form--control::-moz-placeholder {
  color: #ccc;
}

.form--control:-ms-input-placeholder {
  color: #ccc;
}

.form--control:-moz-placeholder {
  color: #ccc;
}

.form--control:focus {
  /* background-color: #141431; */
  border-color: #37f5f9 !important;
  box-shadow: 0 0 5px rgba(55, 245, 249, 0.35);
  color: #000;
}

.form--control:placeholder-shown {
  border-color: rgba(255, 255, 255, 0.25);
  color: #000;
}

.form--control[readonly] {
  /* background-color: #4e4e94 !important; */
  /* color: #bebebe; */
}

.form--control[disabled] {
  /* background-color: #3c3c5a !important; */
  color: #bebebe;
}

.form--control.style--two {
  border-width: 0 0 1px 0;
  padding: 0.625rem 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-family: "Exo 2", sans-serif;
  border-bottom-color: #999;
}

.form--control.style--two:focus {
  box-shadow: none;
}

.form--control.form-control-sm {
  height: 35px;
}

.select {
  padding: 0.625rem 1.25rem;
  width: 100%;
  border: 1px solid #2b2267;
  cursor: pointer;
  color: #010101;
  background-color: #000;
  height: 3.125rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.select option {
  padding: 0.625rem 0;
  display: block;
  border-top: 1px solid #e5e5e5;
}

.select.style--trans {
  background-color: transparent;
  color: #000;
  border-color: rgba(255, 255, 255, 0.5);
}

.select.style--trans option {
  color: #363636;
}

.select.select-sm {
  height: 2.1875rem;
  font-size: 0.875rem;
  padding: 0.3125rem;
}

textarea {
  min-height: 9.375rem !important;
  resize: none;
  width: 100%;
}

label {
  color: #000;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.input-group > .form--control,
.input-group > .select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group select {
  background-color: transparent;
  border: none;
}

.custom-radio {
  position: relative;
  padding-left: 0;
}

.custom-radio input[type="radio"] {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  cursor: pointer;
}

.custom-radio input[type="radio"]:checked ~ label::before {
  border-width: 2px;
  border-color: #37f5f9;
}

.custom-radio input[type="radio"]:checked ~ label::after {
  opacity: 1;
}

.custom-radio label {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
}

.custom-radio label::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #888888;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-radio label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: #37f5f9;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-radio.style--two label::before {
  top: 5px;
}

.custom-radio.style--two label::after {
  top: 9px;
}

.custom--checkbox {
  padding-left: 1.5625rem;
}

.custom--checkbox input {
  display: none;
}

.custom--checkbox input:checked ~ label::before {
  content: "\f14a";
  color: #37f5f9;
}

.custom--checkbox label {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.custom--checkbox label::before {
  position: absolute;
  content: "\f04d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 3px;
  left: -1.5625rem;
  font-size: 1.25rem;
  line-height: 1;
}

.custom--field {
  position: relative;
}

.custom--field .form--control {
  padding-left: 2.8125rem;
}

.custom--field .form--control:placeholder-shown ~ i {
  color: #010101;
}

.custom--field i {
  position: absolute;
  top: 25px;
  left: 15px;
  z-index: 1;
  font-size: 1.375rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom--field textarea {
  padding-top: 16px;
}

.custom--card {
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.custom--card .card-header {
  background-color: #000;
  padding: 0.625rem 0.9375rem;
}

.custom--card .card-body {
  padding: 0.9375rem;
}

.modal {
  z-index: 999999;
}

.header.menu-fixed .header__top {
  display: none;
}

.header.menu-fixed .header__bottom {
  background-color: #0e0e32;
}

header.header {
  position: sticky;
  top: 0;
  background-color: #0e0e32;
  z-index: 9;
}

/* .header.menu-fixed {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
} */

.header__top {
  padding: 10px 0;
  background-color: rgba(32, 32, 78, 0.5);
}

.header__bottom {
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1199px) {
  .header__bottom {
    padding: 0.625rem 0;
  }
}

.header .site-logo img {
  max-width: 10.625rem;
  max-height: 4.0625rem;
}

@media (max-width: 1199px) {
  .header .site-logo img {
    max-width: 9.375rem;
  }
}

.header .main-menu {
  margin-left: 4.375rem;
}

@media (max-width: 1199px) {
  .header .main-menu {
    margin-left: 0;
    padding: 0.9375rem 0;
  }
}

.header .main-menu li {
  position: relative;
}

@media (max-width: 1199px) {
  .header .main-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.header .main-menu li:last-child a {
  padding-right: 0;
}

.header .main-menu li.menu_has_children {
  position: relative;
}

.header .main-menu li.menu_has_children.open .sub-menu {
  display: block;
}

.header .main-menu li.menu_has_children > a {
  padding-right: 1.5625rem;
}

@media (max-width: 1199px) {
  .header .main-menu li.menu_has_children > a {
    display: block;
  }
}

.header .main-menu li.menu_has_children > a::before {
  position: absolute;
  content: "\f067";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 15px;
  right: 0;
  color: #000000;
}

@media (max-width: 1199px) {
  .header .main-menu li.menu_has_children > a::before {
    display: block;
    top: 0.5625rem;
  }
}

.header .main-menu li.menu_has_children:hover > a::before {
  content: "\f068";
  color: #37f5f9;
}

.header .main-menu li a {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  /* text-transform: uppercase; */
  padding: 0.9375rem 0.9375rem 0.9375rem 0;
  font-size: 0.875rem;
  color: #fff;
}

.header .main-menu li a.active {
  color: #20e85e !important;
}

.header .main-menu ul li ul li a.active {
  color: #20e85e !important;
}

@media (max-width: 1199px) {
  .header .main-menu li a {
    color: #000000;
    padding: 0.5rem 0;
    display: block;
  }
}

.header .main-menu li a:hover,
.header .main-menu li a:focus {
  color: #37f5f9;
}

.header .main-menu li .sub-menu {
  position: absolute;
  width: 220px;
  top: 105%;
  left: 0;
  z-index: 9999;
  background-color: var(--bs-white);
  padding: 0.625rem 0;
  -webkit-box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 25px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  border: 2px solid var(--bs-light);
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    display: none;
    position: static;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    background-color: var(--bs-white);
    border: none;
  }
}

.header .main-menu li .sub-menu::before {
  position: absolute;
  content: "";
  top: -19px;
  left: 20px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent var(--bs-light) transparent;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu::before {
    display: none;
  }
}

.header .main-menu li .sub-menu li {
  border-bottom: 1px dashed #e5e5e53d;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu li {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

.header .main-menu li .sub-menu li:last-child {
  border-bottom: none;
}

.header .main-menu li .sub-menu li a {
  padding: 0.5rem 1.5625rem;
  display: block;
  color: #010101;
  position: relative;
  font-size: 0.9375rem;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu li a {
    color: #000;
  }
}

.header .main-menu li .sub-menu li a:hover {
  background-color: rgba(55, 245, 249, 0.05);
  color: #37f5f9;
}

.header .main-menu li .sub-menu li + li {
  margin-left: 0;
}

.header .main-menu li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.header .main-menu li + li {
  margin-left: 1.25rem;
}

@media (max-width: 1199px) {
  .header .main-menu li + li {
    margin-left: 0;
  }
}

.header .nav-right {
  padding-left: 3.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1199px) {
  .header .nav-right {
    padding-left: 0;
  }
}

.language-select {
  background-color: transparent;
  color: #000;
  height: 35px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #000;
  font-size: 0.875rem;
  padding: 0;
}

.language-select option {
  background-color: #0e0e32;
  color: #000;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    margin-top: 20px !important;
    background-color: var(--bs-light);
    padding: 0 1.875rem 1.25rem 1.875rem;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    max-height: 90vh;
    overflow-y: auto;
  }
}

.navbar-toggler {
  padding: 0;
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu-toggle {
  margin: 10px 0;
  position: relative;
  display: block;
  width: 2.1875rem;
  height: 1.25rem;
  cursor: pointer;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: white;
  font-size: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: -webkit-transform 0.25s ease-in-out;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  -moz-transition: -webkit-transform 0.25s ease-in-out;
  -ms-transition: -webkit-transform 0.25s ease-in-out;
}

@media (max-width: 1199px) {
  .menu-toggle:before,
  .menu-toggle:after {
    background-color: white;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
} */

.hero {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .hero {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

@media (max-width: 575px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  z-index: -1;
}

.hero__title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 2.625rem;
  }
}

@media (max-width: 575px) {
  .hero__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__description {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

@media (max-width: 767px) {
  .hero__description {
    width: 100%;
  }
}

.inner-hero {
  position: relative;
  z-index: 1;
  padding: 65px 0;
}

.inner-hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #0e0e32; */
  opacity: 0.65;
  z-index: -1;
}

.overview-section {
  margin-top: -0.9375rem;
  position: relative;
  z-index: 2;
}

.overview-wrapper {
  background-color: #f7fffc;
  padding: 1.875rem 1.25rem;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  box-shadow: 0 0 10px rgba(55, 245, 249, 0.75);
  margin-top: 0.625rem;
}

@media (max-width: 575px) {
  .overview-wrapper {
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
}

.overview-item {
  position: relative;
}

.overview-item:last-child::after {
  display: none;
}

.overview-item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 2px;
  height: 80%;
  background-color: #000;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #c6ffdd;
  background: -webkit-linear-gradient(
    to top,
    rgba(128, 128, 128, 0.15),
    rgba(55, 245, 249, 0.45),
    rgba(128, 128, 128, 0.15)
  );
  background: linear-gradient(
    to top,
    rgba(128, 128, 128, 0.15),
    rgba(55, 245, 249, 0.45),
    rgba(128, 128, 128, 0.15)
  );
}

@media (max-width: 575px) {
  .overview-item::after {
    display: none;
  }
}

.overview-card {
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .overview-card {
    text-align: center;
  }
}

.overview-card__icon {
  font-size: 3.5rem;
  line-height: 1;
}

.overview-card__content {
  padding-left: 1.5625rem;
}

@media (max-width: 991px) {
  .overview-card__content {
    width: 100%;
    padding-left: 0;
    margin-top: 0.9375rem;
  }
}

.overview-card .amount {
  font-size: 1.75rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .overview-card .amount {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .overview-card .amount {
    font-size: 1.375rem;
  }
}

.faq-thumb img {
  max-height: 500px;
}

.game-card {
  padding: 2.5rem 1.875rem;
  box-shadow: inset 0 0 15px rgba(55, 245, 249, 0.85);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
}

.game-card:hover {
  box-shadow: 0 5px 15px rgba(55, 245, 249, 0.25),
    inset 0 0 15px rgba(55, 245, 249, 0.85);
  border-color: #37f5f9;
}

.game-card__thumb img {
  max-height: 110px;
}

.game-card__price {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Exo 2", sans-serif;
}

.game-card__price span {
  font-size: 2.25rem;
  font-weight: 700;
}

.game-card__price small {
  font-size: 1.25rem;
}

.game-card.disabled {
  box-shadow: inset 0 0 15px rgba(234, 84, 85, 0.85);
}

.game-card.disabled:hover {
  box-shadow: inset 0 0 15px rgba(234, 84, 85, 0.85);
  border-color: transparent;
}

.game-card.disabled .btn {
  display: none;
}

.game-card.disabled .game-card__clock {
  color: #ea5455 !important;
  font-size: 1.375rem;
}

.how-work-item {
  position: relative;
}

.how-work-item:last-child::after {
  display: none;
}

.how-work-item::after {
  position: absolute;
  content: "";
  top: 35px;
  right: -25px;
  width: 50px;
  height: 50px;
  background-image: url("../images/right-arrow.svg");
  background-size: 50px;
  background-repeat: no-repeat;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .how-work-item::after {
    display: none;
  }
}

.how-work-item:nth-of-type(2n + 2) .how-work-card__step::before {
  top: auto;
  right: auto;
  left: -71px;
  bottom: -62px;
}

.how-work-card {
  text-align: center;
}

.how-work-card__step {
  width: 120px;
  height: 120px;
  background-color: #0e0e32;
  font-size: 2.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(55, 245, 249, 0.55);
}

.how-work-card__step::before {
  position: absolute;
  content: "";
  top: -20px;
  right: -90px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #37f5f9;
  z-index: -2;
}

.how-work-card__step::after {
  position: absolute;
  content: "";
  top: 2px;
  right: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: transparent;
  border: 6px solid #0e0e32;
  z-index: -1;
}

.stat-card {
  padding: 1.875rem;
  box-shadow: inset 0 0 10px rgba(55, 245, 249, 0.85);
  border: 2px solid transparent;
  height: 100%;
}

@media (max-width: 575px) {
  .stat-card {
    padding: 1.25rem;
  }
}

.stat-card__header {
  align-items: center;
}

.stat-card__header .thumb {
  width: 70px;
}

.stat-card__header .thumb img {
  max-height: 80px;
}

.stat-card__header .content {
  width: calc(100% - 70px);
  padding-left: 1.25rem;
}

.stat-card .caption-list-two .caption {
  width: 40%;
}

.stat-card .caption-list-two .value {
  width: 60%;
}

.feature-card {
  padding: 1.875rem;
  box-shadow: inset 0 0 15px rgba(55, 245, 249, 0.85);
  border: 2px solid transparent;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 5px 15px rgba(55, 245, 249, 0.25),
    inset 0 0 15px rgba(55, 245, 249, 0.85);
  border-color: #37f5f9;
}

.feature-card__icon {
  font-size: 3.5rem;
  line-height: 1;
}

.winner-card {
  padding: 1.25rem;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(55, 245, 249, 0.45);
  box-shadow: inset 0 0 10px rgba(55, 245, 249, 0.85);
}

.winner-card:hover {
  box-shadow: 0 5px 15px rgba(55, 245, 249, 0.25),
    inset 0 0 15px rgba(55, 245, 249, 0.85);
  border-color: #37f5f9;
}

.winner-card__thumb {
  width: 90px;
  height: 90px;
}

@media (max-width: 767px) {
  .winner-card__thumb {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 575px) {
  .winner-card__thumb {
    width: 90px;
    height: 90px;
  }
}

.winner-card__thumb img {
  width: inherit;
  height: inherit;
}

.winner-card__content {
  width: calc(100% - 90px);
  padding-left: 1.25rem;
}

@media (max-width: 767px) {
  .winner-card__content {
    width: calc(100% - 75px);
    padding-left: 0.9375rem;
  }
}

@media (max-width: 575px) {
  .winner-card__content {
    width: calc(100% - 90px);
    padding-left: 1.25rem;
  }
}

.winner-card__content .amount {
  font-size: 1.375rem;
}

@media (max-width: 767px) {
  .winner-card__content .amount {
    font-size: 1.125rem;
  }
}

@media (max-width: 575px) {
  .winner-card__content .amount {
    font-size: 1.375rem;
  }
}

.ratings i {
  color: #fac42d;
}

.testimonial-item {
  padding: 1.875rem;
  border: 3px solid #37f5f9;
}

.testimonial-item:hover {
  box-shadow: 0 0 20px rgba(55, 245, 249, 0.45);
}

.testimonial-item .client-details .thumb {
  width: 75px;
  height: 75px;
}

.testimonial-item .client-details .thumb img {
  width: inherit;
  height: inherit;
}

.testimonial-item .client-details .content {
  padding-left: 1.25rem;
}

.testimonial-slider .slick-list {
  margin: -0.625rem;
}

.testimonial-slider .single-slide {
  margin: 0.625rem;
}

.brand-item {
  text-align: center;
}

.brand-item img {
  display: inline-block;
  max-height: 90px;
}

.subscribe-wrapper {
  padding: 50px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  /* background-color: #0e0e32; */
  box-shadow: 0 0 10px rgba(55, 245, 249, 0.5);
}

@media (max-width: 575px) {
  .subscribe-wrapper {
    padding: 30px;
  }
}

.subscribe-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 420px) {
  .subscribe-form {
    justify-content: flex-end;
  }
}

.subscribe-form .form--control {
  width: calc(100% - 125px);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(55, 245, 249, 0.5);
  padding-left: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  color: #000;
}

.subscribe-form .form--control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 420px) {
  .subscribe-form .form--control {
    width: 100%;
    margin-bottom: 15px;
  }
}

.subscribe-form .form--control:focus {
  box-shadow: none;
  border-color: #37f5f9;
}

.subscribe-form .subscribe-btn {
  width: 113px;
}

.about-thumb {
  overflow: hidden;
  height: 100%;
}

.about-thumb img {
  width: 100%;
  height: 100%;
}

.lottery-details-header {
  padding: 2.5rem;
  /* background-color: #0e0e32; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  text-align: center;
  position: relative;
  animation: shadowGlow 2s infinite ease;
  --shadow-1: rgba(55, 245, 249, 0.25);
  --shadow-2: rgba(55, 245, 249, 0.35);
  --shadow-3: rgba(55, 245, 249, 0.45);
  box-shadow: 0 0 15px;
}

.lottery-details-header .thumb {
  margin-bottom: 35px;
}

.lottery-details-header .content .game-name {
  font-size: 42px;
}

@media (max-width: 767px) {
  .lottery-details-header .content .game-name {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .lottery-details-header .content .game-name {
    font-size: 32px;
  }
}

.lottery-details-header .content .clock.disabled {
  color: #37f5f9;
  font-size: 24px;
}

.lottery-details-header .content .clock > div {
  width: calc(25% - 20px);
  padding: 1.875rem 1.25rem;
  background-color: white;
  box-shadow: inset 0 0 10px rgba(55, 245, 249, 0.85);
}

@media (max-width: 767px) {
  .lottery-details-header .content .clock > div {
    width: calc(25% - 5px);
  }
}

@media (max-width: 575px) {
  .lottery-details-header .content .clock > div {
    padding: 20px 10px;
    width: calc(50% - 10px);
    margin-top: 15px;
  }
}

.lottery-details-header .content .clock > div span {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #37f5f9;
}

@media (max-width: 767px) {
  .lottery-details-header .content .clock > div span {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .lottery-details-header .content .clock > div span {
    font-size: 24px;
  }
}

.lottery-details-header .content .clock > div p {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
}

.clock {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.clock span {
  font-family: "Exo 2", sans-serif;
  color: #000000;
  font-size: 22px;
  line-height: 1;
}

.lottery-details-body {
  /* background-color: #0e0e32; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.lottery-details-body .top-part {
  padding: 20px 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.lottery-details-body .top-part .left {
  width: 30%;
}

@media (max-width: 575px) {
  .lottery-details-body .top-part .left {
    width: 100%;
    text-align: center;
  }
}

.lottery-details-body .top-part .middle {
  width: 40%;
  text-align: center;
}

@media (max-width: 575px) {
  .lottery-details-body .top-part .middle {
    width: 100%;
    margin-top: 15px;
  }
}

.lottery-details-body .top-part .middle .balance {
  font-family: "Exo 2", sans-serif;
  font-size: 32px;
  color: #37f5f9;
}

@media (max-width: 991px) {
  .lottery-details-body .top-part .middle .balance {
    font-size: 28px;
  }
}

.lottery-details-body .top-part .right {
  width: 30%;
  text-align: right;
}

@media (max-width: 575px) {
  .lottery-details-body .top-part .right {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
}

.lottery-details-body .body-part {
  padding: 50px 30px;
}

.lottery-details-body .footer-part {
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ticket-card {
  text-align: center;
  background-color: #19193c;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ticket-card .ticket-card-del {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background-color: #37f5f9;
  color: var(--bs-light);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ticket-card__header {
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-card__body {
  padding: 35px 20px 20px 20px;
}

.ticket-card__body .numbers {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-card__body .numbers span {
  width: calc((100% / 10) - 2px);
  font-family: "ds-digitalbold";
  color: #00000026;
  font-size: 48px;
  line-height: 1.3;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .ticket-card__body .numbers span {
    font-size: 40px;
  }
}

.ticket-card__body .numbers.active span {
  color: #37f5f9;
  text-shadow: 0 2px 5px #37f5f9;
}

@media (max-width: 575px) {
  .lottery-details-body .body-part {
    padding: 30px 15px;
  }

  .ticket-card__body .numbers span {
    font-size: 32px;
  }
}

.lottery-details-instruction {
  padding: 1.875rem;
}

.lottery-details-instruction .cumtom--nav-tabs {
  padding: 0.625rem;
  background-color: #19193c;
}

.dashboard-card {
  padding: 20px 30px;
  border-radius: 5px;
  border: 1px solid var(--bs-info);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.dashboard-card .number {
  font-size: 36px;
  color: #37f5f9;
  margin-top: 10px;
}

.dashboard-card .icon {
  position: absolute;
  color: #37f5f9;
  font-size: 100px;
  bottom: -15px;
  right: 0;
  opacity: 0.2;
}

.dashboard-card .view--btn {
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--bs-info);
  float: right;
  color: #000000;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  margin-top: -10px;
  background-color: var(--bs-info);
  margin-right: -15px;
}

.balance-card {
  text-align: center;
  padding: 26px 30px;
  background-color: #37f5f9;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.balance-card .number {
  font-size: 36px;
}

.footer {
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
  background-color: #0e0e32 !important;
}

.footer hr {
  background-color: #0e0e32 !important;
}

.footer-logo img {
  max-height: 50px;
}

.inline-menu {
  margin: -0.1875rem -0.625rem;
}

.inline-menu li {
  padding: 0.1875rem 0.625rem;
}

.inline-menu li a {
  color: white;
}

.inline-social-links {
  margin: -0.1875rem -0.4375rem;
}

.inline-social-links li {
  padding: 0.1875rem 0.4375rem;
}

.inline-social-links li a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
}

.account-wrapper {
  padding: 3.125rem;
  border: 2px solid rgba(55, 245, 249, 0.55);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0 0 15px rgba(55, 245, 249, 0.35);
  animation: shadowGlow 2s infinite ease;
  position: relative;
  z-index: 2;
  --shadow-1: rgba(55, 245, 249, 0.25);
  --shadow-2: rgba(55, 245, 249, 0.35);
  --shadow-3: rgba(55, 245, 249, 0.45);
}

@media (max-width: 575px) {
  .account-wrapper {
    padding: 30px;
  }
}

@media (max-width: 440px) {
  .account-wrapper {
    padding: 20px;
  }
}

.account-thumb-area {
  margin-bottom: 2.5rem;
}

.account-thumb-area .title {
  font-size: 2rem;
}

@media (max-width: 440px) {
  .account-thumb-area .title {
    font-size: 1.75rem;
  }
}

.account-thumb-area .account-thumb {
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #37f5f9;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #37f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  background-color: #0e0e32;
  box-shadow: 0 3px 10px 2px rgba(55, 245, 249, 0.35);
  margin-left: auto;
  margin-right: auto;
  margin-top: -3.125rem;
}

@-webkit-keyframes shadowGlow {
  0% {
    box-shadow: 0 0 15px var(--shadow-1);
  }

  25% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  50% {
    box-shadow: 0 0 35px var(--shadow-3);
  }

  75% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  100% {
    box-shadow: 0 0 15px var(--shadow-1);
  }
}

@-moz-keyframes shadowGlow {
  0% {
    box-shadow: 0 0 15px var(--shadow-1);
  }

  25% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  50% {
    box-shadow: 0 0 35px var(--shadow-3);
  }

  75% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  100% {
    box-shadow: 0 0 15px var(--shadow-1);
  }
}

@-ms-keyframes shadowGlow {
  0% {
    box-shadow: 0 0 15px var(--shadow-1);
  }

  25% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  50% {
    box-shadow: 0 0 35px var(--shadow-3);
  }

  75% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  100% {
    box-shadow: 0 0 15px var(--shadow-1);
  }
}

@keyframes shadowGlow {
  0% {
    box-shadow: 0 0 15px var(--shadow-1);
  }

  25% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  50% {
    box-shadow: 0 0 35px var(--shadow-3);
  }

  75% {
    box-shadow: 0 0 25px var(--shadow-2);
  }

  100% {
    box-shadow: 0 0 15px var(--shadow-1);
  }
}

div[class*="ball-"] {
  position: absolute;
}

div[class*="ball-"] img {
  width: 15%;
}

.ball-1 {
  bottom: 15%;
  left: 10%;
}

.ball-2 {
  bottom: 10%;
  right: 20%;
}

.ball-3 {
  top: 5%;
  right: 10%;
}

.contact-info-card {
  padding: 1.25rem;
}

.contact-info i {
  font-size: 1.75rem;
  width: 45px;
}

.contact-info p {
  width: calc(100% - 45px);
}

.contact-info p a {
  color: #010101;
}

.contact-wrapper {
  padding: 3.125rem;
}

@media (max-width: 575px) {
  .contact-wrapper {
    padding: 30px;
  }
}

@media (max-width: 440px) {
  .contact-wrapper {
    padding: 20px;
  }
}

.market-card {
  background-color: #000;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.035);
  z-index: 1;
}

.market-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: -webkit-linear-gradient(to top, #37f5f9, #000);
  background: linear-gradient(to top, #37f5f9, #000);
  z-index: -1;
  opacity: 0;
}

.market-card:hover {
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.market-card:hover::after {
  opacity: 0.15;
}

.market-card__header {
  align-items: center;
}

.market-card__header .left {
  width: 50%;
  align-items: center;
}

.market-card__header .left .name {
  padding-left: 10px;
}

.market-card__header .thumb {
  width: 35px;
}

.market-card__header .right {
  width: 50%;
  text-align: right;
}

.market-card__body {
  align-items: center;
}

.market-card__body .left {
  width: 60%;
}

.market-card__body .right {
  width: 40%;
  text-align: right;
}

.market-card__body .right .chart-img {
  display: inline-block;
  max-height: 32px;
}

.trade-section {
  background-color: #0e0e32;
}

.tradingview-widget-container > div {
  height: 600px;
}

@media (max-width: 1199px) {
  .tradingview-widget-container > div {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .tradingview-widget-container > div {
    height: 350px;
  }
}

.button-nav-tabs {
  border-bottom: none;
  overflow: hidden;
}

.button-nav-tabs .nav-item {
  width: 50%;
}

.button-nav-tabs .nav-item .nav-link {
  font-size: 0.875rem;
  background-color: #222c40;
  color: #6c757d;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: 100%;
}

.button-nav-tabs .nav-item .nav-link.active {
  color: #000;
}

.mini-input {
  position: relative;
}

.mini-input .left,
.mini-input .right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.875rem;
}

.mini-input .left {
  left: 10px;
}

.mini-input .right {
  right: 10px;
}

.mini-input input {
  width: 100%;
  background-color: #1d2535;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: right;
  color: #000;
  padding-left: 70px;
  padding-right: 60px;
  height: 35px;
}

.mini-input input:focus {
  border-color: #37f5f9;
}

.scroll--active {
  padding-right: 5px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: darkgrey #e7e7e7;
}

.scroll--active::-webkit-scrollbar {
  width: 0.1875rem;
}

.scroll--active::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.scroll--active::-webkit-scrollbar-thumb {
  background-color: #6c757d;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.update-price-list {
  width: 100%;
}

.update-price-list li {
  display: flex;
  flex-wrap: wrap;
}

.update-price-list span {
  font-size: 0.75rem;
  text-align: center;
  width: calc(100% / 3);
}

.update-price-list span:first-child {
  text-align: left;
}

.update-price-list span:last-child {
  text-align: right;
}

.update-price-list .update-price-header {
  color: #6c757d;
  margin-bottom: 0.3125rem;
}

.update-price-list .update-price-main-list {
  color: #000;
  max-height: 230px;
}

.update-price-list .update-price-main-list span {
  font-size: 0.6875rem;
}

.update-price-list .update-price-main-list li + li {
  margin-top: 0.1875rem;
}

.input-group-text {
  background-color: #1c1c43 !important;
}

.custom__bg {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  /* background-color: #0e0e32; */
  box-shadow: 0 0 10px rgb(55 245 249 / 50%);
}

.modal .modal-header,
.modal-footer {
  border-color: #00000029;
}

.bg--transparent {
  background: transparent;
}

/* Custom file upload*/
.custom--file-upload {
  line-height: 40px;
}

.custom--file-upload ~ label {
  position: absolute;
  top: 4px;
  left: -1px;
  width: 121px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #37f5f9;
  color: #000;
  border-radius: 5px 0 0 5px;
}

.btn-disabled {
  opacity: 0.5;
  cursor: no-drop !important;
}

.profile-thumb {
  position: relative;
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: inline-flex;
  margin-top: -100px;
}

.profile-thumb .profilePicPreview {
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: block;
  border: 3px solid #000000;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: center;
}

.profile-thumb .profilePicUpload {
  font-size: 0;
  opacity: 0;
}

.profile-thumb .avatar-edit {
  position: absolute;
  right: 35%;
  bottom: -30px;
}

.profile-thumb .avatar-edit input {
  width: 0;
}

.profile-thumb .avatar-edit label {
  width: 45px;
  height: 45px;
  background-color: #1ef4f8;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  border: 2px solid #000000;
  font-size: 18px;
  cursor: pointer;
  color: #000000;
}

/* profile section css end */

/* blog section css start */
.blog-card {
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  /* background-color: #0e0e32; */
  box-shadow: 0 0 0px 2px #37f5f954;
}

.feature-card:hover {
  box-shadow: 0 5px 15px #37f5f940, inset 0 0 15px #37f5f9d9;
  border-color: #37f5f9;
}

.blog-card__thumb img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.blog-card__content {
  padding: 20px 15px 15px 15px;
}

.blog-card__meta {
  margin: -5px -7px;
}

.blog-card__meta li {
  margin: 5px 7px;
  font-size: 14px;
}

.blog-card__meta li i {
  color: #37f5f9;
  font-size: 18px;
}

.blog-card__meta li a {
  color: #37f5f9;
}

/* blog section css end */
/* blog-details-section css start */
.blog-details__thumb {
  position: relative;
  max-height: 500px;
  overflow: hidden;
}

.blog-details__thumb img {
  width: 100%;
}

.blog-details__thumb .post__date {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  text-align: center;
}

.blog-details__thumb .post__date .date {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  background-color: #37f5f9;
  padding: 10px 5px;
  width: 100%;
  line-height: 1;
}

.blog-details__thumb .post__date .month {
  background-color: #000000;
  text-transform: uppercase;
  padding: 4px 5px;
  width: 100%;
  line-height: 1;
  font-size: 18px;
}

.blog-details__content {
  margin-top: 30px;
  background-color: var(--bs-light);
}

.blog-details__content p {
  margin-top: 20px;
}

.blog-details__content .blog-details__title {
  font-size: 24px;
}

.blog-details__content blockquote {
  margin-top: 30px;
  margin-bottom: 0;
}

blockquote {
  font-size: 18px;
  color: #000000;
  font-style: italic;
  text-align: center;
  padding: 50px 60px;
  background-color: #37f5f9;
}

@media (max-width: 575px) {
  blockquote {
    padding: 30px 40px;
    font-size: 16px;
  }
}

.blog-details__footer {
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.blog-details__footer .caption {
  font-size: 24px;
  margin-bottom: 20px;
}

.blog-details__footer .social__links {
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-details__footer .social__links li a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #000000;
}

.blog-details__footer .social__links li a:hover {
  background-color: #37f5f9;
  color: #000000;
}

.comments-area {
  margin-top: 100px;
  margin-right: 30px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.comments-area .title {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-size: 24px;
}

.comments-list .single-comment {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border: none;
}

.comments-list .single-comment:first-child {
  padding-top: 0;
}

.comments-list .single-comment:last-child {
  padding-bottom: 0;
}

.comments-list .single-comment__thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.comments-list .single-comment__content {
  width: calc(100% - 100px);
  padding-left: 20px;
}

@media (max-width: 480px) {
  .comments-list .single-comment__content {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}

.comments-list .single-comment__content .name {
  text-transform: capitalize;
}

.comments-list .single-comment__content .date {
  font-size: 14px;
  font-style: italic;
}

.comments-list .single-comment__content p {
  margin-top: 5px;
}

.reply-btn {
  width: 28px;
  height: 28px;
  background-color: #37f5f9;
  color: #000000;
  text-align: center;
  line-height: 28px;
  font-size: 13px;
  float: right;
  margin-top: -30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.reply-btn:hover {
  background-color: #37f5f9;
  color: #000000;
}

.reply-btn i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.comment-form-area {
  margin-top: 70px;
  margin-right: 30px;
}

.comment-form-area .title {
  font-size: 24px;
  margin-bottom: 20px;
}

/* blog-details-section css end */

/* sidebar css start */
.search-from .custom-input-field {
  position: relative;
}

.search-from .custom-input-field input {
  width: 100%;
  height: 60px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.search-from .custom-input-field input:focus {
  border-color: #cca354;
}

.search-from .custom-input-field i {
  position: absolute;
  top: 21px;
  right: 20px;
  color: #cca354;
  font-size: 18px;
}

@media (max-width: 991px) {
  .sidebar {
    margin-top: 65px;
  }
}

.sidebar .widget + .widget {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .sidebar .widget + .widget {
    margin-top: 40px;
  }
}

.sidebar .widget-title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
}

.sidebar .widget-title::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 5px;
  height: 23px;
  background-color: #cca354;
}

.sidebar .category-list {
  margin-top: -7px;
}

.sidebar .category-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar .category-list li:first-child {
  padding-top: 0;
}

.sidebar .category-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .category-list li a {
  text-transform: capitalize;
  display: block;
  color: #000000;
}

.sidebar .category-list li a:hover {
  color: #cca354;
}

.sidebar .destination-filter-widget {
  padding: 50px 30px;
  background-color: #eaf1fd;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar .destination-filter-widget .widget-title {
  margin-bottom: 21px;
  padding-left: 0;
}

.sidebar .destination-filter-widget .widget-title::before {
  display: none;
}

.sidebar .destination-filter-widget .form-group,
.sidebar .destination-filter-widget .nice-select {
  margin-bottom: 20px;
}

.sidebar .destination-filter-widget .nice-select,
.sidebar .destination-filter-widget input {
  background-color: #f5f8fe;
}

.sidebar .destination-filter-widget label {
  font-weight: 500;
}

.sidebar .destination-filter-widget .cmn-btn {
  padding: 10px 25px;
  font-size: 14px;
}

.sidebar .sidebar-destination-form .ui-widget {
  background-color: #b2cdfb;
  border: none;
  height: 3px;
}

.sidebar .sidebar-destination-form .ui-widget .ui-slider-range {
  background-color: #cca354;
}

.sidebar .sidebar-destination-form span.ui-slider-handle {
  width: 14px;
  height: 14px;
  background-color: #cca354;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.sidebar .sidebar-destination-form span.ui-slider-handle:first-child {
  display: none;
}

.sidebar .sidebar-destination-form .filter-price-result {
  margin-top: -47px;
}

.sidebar .sidebar-destination-form .filter-price-result input {
  background-color: transparent;
  border: none;
  height: auto;
  padding: 0;
  text-align: right;
}

.sidebar .sidebar-destination-form .cmn-btn-border {
  margin-top: 30px;
}

.sidebar .tag-list {
  margin: -3px -1px;
}

.sidebar .tag-list a {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  text-transform: capitalize;
  margin: 3px 1px;
  color: #000000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar .tag-list a:hover {
  background-color: #cca354;
  color: #000000;
  border-color: #cca354;
}

.sidebar .help-widget {
  padding: 50px 30px;
  background-color: #eaf1fd;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar .help-widget .widget-title {
  margin-bottom: 20px;
  padding-left: 0;
}

.sidebar .help-widget .widget-title::before {
  display: none;
}

.sidebar .help-widget .cmn-btn {
  padding: 10px 25px;
  font-size: 14px;
  margin-top: 20px;
}

.small-post-list .small-post-single {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.small-post-list .small-post-single:first-child {
  padding-top: 0;
}

.small-post-list .small-post-single:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.small-post-list .small-post-single .thumb {
  width: 70px;
}

.small-post-list .small-post-single .thumb img {
  height: 70px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.small-post-list .small-post-single .content {
  width: calc(100% - 70px);
  padding-left: 15px;
}

.small-post-list .small-post-single .content .post-title a {
  font-size: 16px;
}

.small-post-list .small-post-single .content .date {
  font-size: 14px;
  margin-top: 5px;
  color: #000000;
}

/* sidebar css end */

/* .header .main-menu li a:active {
    color: red;
}


body.page-trns-active::after {

} */

.cookie__wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: white;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  font-size: 18px;
  z-index: 99999;
}

@media only screen and (max-width: 991px) {
  .cookie__wrapper {
    padding: 20px;
  }
}

.cookie__wrapper .txt {
  max-width: 720px;
  margin-right: 20px;
  font-size: 14px;
}

.cookie__wrapper .txt a {
  margin-top: 10px;
}

/* required */
label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

/* Modal body redesign */
.modal-content {
  background-color: white !important;
}

@media screen and (min-width: 767px) {
  .form-in-width {
    max-width: 50%;
  }
}

.form-control {
  line-height: 2.2 !important;
  background-color: var(--bs-light) !important;
  color: #000 !important;
  /* border: 1px solid #20e85e !important; */
}

.list-group-item {
  color: #000000 !important;
  background-color: var(--bs-light) !important;
  border: 1px solid #20e85e !important;
}

.card-header {
  border-bottom: 1px solid #20e85e !important;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: unset !important;
}
