@font-face {
  font-family: "ethnocentricitalic";
  src: url("../fonts/ethnocentric_rg_it-webfont.woff2") format("woff2"),
    url("../fonts/ethnocentric_rg_it-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ethnocentricregular";
  src: url("../fonts/ethnocentric_rg-webfont.woff2") format("woff2"),
    url("../fonts/ethnocentric_rg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
}

/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

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

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

::-webkit-scrollbar-track {
  background: #f7f8f9;
}

::-webkit-scrollbar-thumb {
  background: #947d6d;
}

::-webkit-scrollbar-thumb:hover {
  background: #947d6d;
}

.table-responsive {
  padding-bottom: 5px;
}
.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.table-responsive::-webkit-scrollbar-track {
  background: #f7f8f9;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #e89f72;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #ffc300;
}

/* Track */
/* Handle */
/* Handle on hover */
/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #545554;
  font-size: 1rem;
  margin-right: 20px;
  margin: 0 0 15px !important;
  min-height: 40px;
  line-height: 40px;
}
.radio-container a {
  font-weight: 600;
  color: #ffa800;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-container .checkmark {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 28px;
  width: 28px;
  background: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #ededed;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background: none;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background: none;
  border-color: #e89f72;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.radio-container .checkmark::before {
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  top: 6px;
  left: 6px;
  width: 14px;
  height: 14px;
  background: #c4c4c4;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark::after {
  display: block;
  background: #e89f72;
}

/* Style the indicator (dot/circle) */
.customRadioDesign {
  background: #fff;
  border: 1px solid #c4c4c4;
  width: 100%;
  height: 40px;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.radioContent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  position: relative;
  z-index: 1;
  margin: 0;
}

.radio-container input:checked ~ .customRadioDesign {
  border: 1px solid #c4c4c4;
}

.radio-container .checkmark:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  top: 6px;
  left: 6px;
  width: 14px;
  height: 14px;
  background: #c4c4c4;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding: 4px 0 0 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #361805;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border: 2px solid #a88f6c;
  position: absolute;
  top: 4px;
  left: 0;
  height: 24px;
  width: 24px;
  background: none;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  border: 3px solid #a88f6c;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background: #a88f6c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.grey-checkbox-wrapper {
  margin-bottom: 0;
  padding: 0;
  top: -15px;
}
.grey-checkbox-wrapper span.checkmark {
  background: #758799;
  border: none;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.grey-checkbox-wrapper input:checked ~ .checkmark {
  border: none;
}
.grey-checkbox-wrapper .checkmark:after {
  border-color: #e89f72;
}

.slidecontainer {
  width: 100%;
}
.slidecontainer .slider {
  margin: 0 !important;
  width: 100%;
}
.slidecontainer .range-value {
  color: #fff;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: linear-gradient(180deg, #57d8f5 0%, #2a5bdc 100%);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: linear-gradient(180deg, #57d8f5 0%, #2a5bdc 100%);
  cursor: pointer;
}

.updown-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}
.updown-arrow::before,
.updown-arrow::after {
  position: absolute;
  content: "";
  border: 4px solid transparent;
}
.updown-arrow::before {
  border-bottom-color: #888888;
  top: 6px;
}
.updown-arrow::after {
  border-top-color: #888888;
  top: 16px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch {
  /* Rounded sliders */
}
.switch input:checked + .slider {
  background: rgba(212, 175, 55, 0.7);
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px rgba(212, 175, 55, 0.7);
}
.switch input:checked + .slider:before {
  transform: translateX(6px);
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -o-transform: translateX(6px);
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

.custom-select-one,
.custom-select-two,
.custom-select-three {
  display: none;
}

#custom-select-list-one,
#custom-select-list-two,
#custom-select-list-three {
  padding: 5px 0;
}

#custom-select-list-one img,
#custom-select-list-two img,
#custom-select-list-three img,
.drop-btn-select-one img,
.drop-btn-select-two img,
.drop-btn-select-three img {
  width: 22px;
}

#custom-select-list-one li,
#custom-select-list-two li,
#custom-select-list-three li {
  list-style: none;
  padding: 5px 15px;
}

#custom-select-list-one li:hover,
#custom-select-list-two li:hover,
#custom-select-list-three li:hover {
  background: rgba(219, 200, 167, 0.15);
}
#custom-select-list-one li:hover span,
#custom-select-list-two li:hover span,
#custom-select-list-three li:hover span {
  font-family: "Conv_AvenirNextLTPro-Bold";
  color: #d4af37;
}

#custom-select-list-one li img,
#custom-select-list-two li img,
#custom-select-list-three li img {
  margin: 0;
  width: 20px;
}

#custom-select-list-one li span,
#custom-select-list-two li span,
#custom-select-list-three li span,
.drop-btn-select-one li span,
.drop-btn-select-two li span,
.drop-btn-select-three li span {
  margin-left: 8px;
  position: relative;
  top: 1px;
}

/* item list */
.custom-select-list-wrapper-one,
.custom-select-list-wrapper-two,
.custom-select-list-wrapper-three {
  display: none;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  position: absolute;
  z-index: 99;
  background: #f7f7f7;
  max-width: 100%;
  left: 0;
  right: 0;
}

.open {
  display: show !important;
}

.drop-btn-select-one,
.drop-btn-select-two,
.drop-btn-select-three {
  margin-top: 0px;
  width: 100%;
  max-width: 100%;
  height: 45px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background-color: rgba(219, 200, 167, 0.05);
  border: 1px solid rgba(47, 46, 42, 0.3);
  padding: 8px 15px;
  color: #e89f72;
  position: relative;
}
.drop-btn-select-one:before,
.drop-btn-select-two:before,
.drop-btn-select-three:before {
  position: absolute;
  content: "";
  background: #efefef;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  right: 8px;
  top: 8px;
  pointer-events: none;
}
.drop-btn-select-one:after,
.drop-btn-select-two:after,
.drop-btn-select-three:after {
  content: "";
  width: 0;
  height: 0;
  border: 1px solid #e89f72;
  width: 10px;
  height: 10px;
  border-right: none;
  border-top: none;
  transform: rotate(-45deg);
  position: absolute;
  top: 13px;
  right: 15px;
  pointer-events: none;
}

.drop-btn-select-one li,
.drop-btn-select-two li,
.drop-btn-select-three li {
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.drop-btn-select-one:hover li,
.drop-btn-select-two:hover li,
.drop-btn-select-three:hover li {
  margin-left: 0px;
}

.drop-btn-select-one:hover,
.drop-btn-select-one:focus,
.drop-btn-select-two:hover,
.drop-btn-select-two:focus,
.drop-btn-select-three:hover,
.drop-btn-select-three:focus {
  background: #f7f7f7;
  box-shadow: inset 0 0px 0px 1px #ccc;
}

.drop-btn-select-one:focus,
.drop-btn-select-two:focus,
.drop-btn-select-three:focus {
  outline: none;
}

.lang-select-one,
.lang-select-two,
.lang-select-three {
  margin-left: 0px;
  position: relative;
}

.select-with-img .select {
  height: 0;
  display: none;
}
.select-with-img .select .select-styled {
  display: none;
}

.attachment-input {
  position: relative;
}

.custom-file-upload-button {
  width: 100%;
  resize: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  min-height: 45px;
  box-shadow: none;
  padding: 8px 15px;
  color: #e89f72;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background: rgba(219, 200, 167, 0.05) url(../img/attachment-icon.svg)
    no-repeat 95% 10px;
  border: 1px solid rgba(47, 46, 42, 0.3);
}

#file-chosen {
  margin-left: 0.3rem;
  font-family: sans-serif;
  position: absolute;
  top: 14px;
  left: 10px;
  pointer-events: none;
}

.box {
  position: relative;
}
.box::before {
  position: absolute;
  content: "";
  background: #f9f0e5;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}
.box::after {
  content: "";
  width: 0;
  height: 0;
  border: 2px solid #000000;
  width: 8px;
  height: 8px;
  border-right: none;
  border-top: none;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  position: absolute;
  top: 15px;
  right: 15px;
  pointer-events: none;
  z-index: 2;
}
.box select {
  width: 100%;
  resize: none;
  border: none;
  color: #000;
  font-size: 16px;
  min-height: 40px;
  min-width: 140px;
  padding: 8px 15px;
  background: #f9f0e5;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-appearance: button;
  appearance: button;
  outline: none;
}
.box select option {
  background: #fff;
  color: #0d0d0d;
}
.box .hide-arrow {
  top: 2px;
  right: 2px;
  z-index: 0;
  width: 30px;
  height: 40px;
  position: absolute;
  background: #f1f0ef;
  border-radius: 10px;
  pointer-events: none;
}
.box .hide-arrow-white {
  background: #fff;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  font-size: 16px;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all ease 1s;
  -webkit-transition: all ease 1s;
  -moz-transition: all ease 1s;
  -ms-transition: all ease 1s;
  -o-transition: all ease 1s;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

.dropdown-menu {
  min-width: 300px;
  background: #31302e;
  box-shadow: 0px 10px 15px 0px rgba(255, 173, 0, 0.15);
}
.dropdown-menu .dropdown-item {
  margin: 0 0 10px;
  text-transform: capitalize !important;
}
.dropdown-menu .dropdown-item:hover {
  background: #e89f72;
  color: #000 !important;
}

@media (max-width: 1199px) {
  .chainContainer {
    flex-wrap: wrap;
  }
  .chainContainer .radio-container {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .select-styled {
    font-size: 16px;
  }
}
/* Rectangle Out */
.hvr-rectangle-out {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
}

.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffad00;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
  color: white;
}

.hvr-rectangle-out:hover:before,
.hvr-rectangle-out:focus:before,
.hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Bounce To Right */
.pagination-wrapper {
  margin: 40px 0 0;
}
.pagination-wrapper .pagination {
  justify-content: center;
  display: flex;
  align-items: center;
}
.pagination-wrapper .pagination button {
  background: none;
  border: none;
  padding: 0;
  color: #adadad;
  font-size: 18px;
  margin: 0 7px;
  padding: 3px 10px 5px;
}
.pagination-wrapper .pagination .active {
  color: #fff;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pagination button {
    font-size: 13px;
    margin: 0 2px;
  }
  .pagination-wrapper .pagination button img {
    width: 10px;
  }
}
@media (max-width: 480px) {
  .pagination-wrapper .pagination .page-number {
    display: none;
  }
  .pagination-wrapper .pagination .page-number:nth-child(1),
  .pagination-wrapper .pagination .page-number:nth-child(2),
  .pagination-wrapper .pagination .page-number:nth-child(3),
  .pagination-wrapper .pagination .page-number:nth-child(4),
  .pagination-wrapper .pagination .page-number:nth-child(5) {
    display: block;
  }
  .pagination-wrapper .pagination .page-number:nth-last-child(2) {
    display: block;
  }
}
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "khandlight";
  src: url("../fonts/khand/khand-light-webfont.woff2") format("woff2"),
    url("../fonts/khand/khand-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "khandregular";
  src: url("khand-regular-webfont.woff2") format("woff2"),
    url("khand-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "khandmedium";
  src: url("../fonts/khand/khand-medium-webfont.woff2") format("woff2"),
    url("../fonts/khand/khand-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "khandsemibold";
  src: url("../fonts/khand/khand-semibold-webfont.woff2") format("woff2"),
    url("../fonts/khand/khand-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "khandbold";
  src: url("../fonts/khand/khand-bold-webfont.woff2") format("woff2"),
    url("../fonts/khand/khand-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OnestLight";
  src: url("../fonts/onest/OnestLight.eot");
  src: url("../fonts/onest/OnestLight.eot") format("embedded-opentype"),
    url("../fonts/onest/OnestLight.woff2") format("woff2"),
    url("../fonts/onest/OnestLight.woff") format("woff"),
    url("../fonts/onest/OnestLight.ttf") format("truetype"),
    url("../fonts/onest/OnestLight.svg#OnestLight") format("svg");
}
@font-face {
  font-family: "OnestRegular";
  src: url("../fonts/onest/OnestRegular.eot");
  src: url("../fonts/onest/OnestRegular.eot") format("embedded-opentype"),
    url("../fonts/onest/OnestRegular.woff2") format("woff2"),
    url("../fonts/onest/OnestRegular.woff") format("woff"),
    url("../fonts/onest/OnestRegular.ttf") format("truetype"),
    url("../fonts/onest/OnestRegular.svg#OnestRegular") format("svg");
}
@font-face {
  font-family: "OnestMedium";
  src: url("../fonts/onest/OnestMedium.eot");
  src: url("../fonts/onest/OnestMedium.eot") format("embedded-opentype"),
    url("../fonts/onest/OnestMedium.woff2") format("woff2"),
    url("../fonts/onest/OnestMedium.woff") format("woff"),
    url("../fonts/onest/OnestMedium.ttf") format("truetype"),
    url("../fonts/onest/OnestMedium.svg#OnestMedium") format("svg");
}
@font-face {
  font-family: "OnestSemiBold";
  src: url("../fonts/onest/OnestSemiBold.eot");
  src: url("../fonts/onest/OnestSemiBold.eot") format("embedded-opentype"),
    url("../fonts/onest/OnestSemiBold.woff2") format("woff2"),
    url("../fonts/onest/OnestSemiBold.woff") format("woff"),
    url("../fonts/onest/OnestSemiBold.ttf") format("truetype"),
    url("../fonts/onest/OnestSemiBold.svg#OnestSemiBold") format("svg");
}
@font-face {
  font-family: "OnestBold";
  src: url("../fonts/onest/OnestBold.eot");
  src: url("../fonts/onest/OnestBold.eot") format("embedded-opentype"),
    url("../fonts/onest/OnestBold.woff2") format("woff2"),
    url("../fonts/onest/OnestBold.woff") format("woff"),
    url("../fonts/onest/OnestBold.ttf") format("truetype"),
    url("../fonts/onest/OnestBold.svg#OnestBold") format("svg");
}
@font-face {
  font-family: "OnestBlack";
  src: url("../fonts/onest/OnestBlack.eot");
  src: url("../fonts/onest/OnestBlack.eot") format("embedded-opentype"),
    url("../fonts/onest/OnestBlack.woff2") format("woff2"),
    url("../fonts/onest/OnestBlack.woff") format("woff"),
    url("../fonts/onest/OnestBlack.ttf") format("truetype"),
    url("../fonts/onest/OnestBlack.svg#OnestBlack") format("svg");
}
:root {
  --primary-font-light: "OnestLight";
  --primary-font-regular: "OnestRegular";
  --primary-font-medium: "OnestMedium";
  --primary-font-semi-bold: "OnestSemiBold";
  --primary-font-bold: "OnestBold";
  --primary-font-black: "OnestBlack";
  --secondary-font-light: "khandlight";
  --secondary-font-regular: "khandregular";
  --secondary-font-medium: "khandmedium";
  --secondary-font-semi-bold: "khandsemibold";
  --secondary-font-bold: "khandbold";
  --primary-color: #8bc116;
  --secondary-color: #f4f40b;
}

body {
  
}

.blue-eclipses {
  min-height: 100%;
}

.page_name {
  color: #fff;
  font-size: 16px;
  margin: 0;
}
.page_name a {
  color: #fff;
}
.page_name img {
  width: 8px;
  margin: -2px 6px 0 0;
}

.inner_page_wrapper {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  max-width: calc(100% - 30px);
  margin: 0 auto 40px;
  padding: 10px;
}

.value_header {
  margin: 0 0 15px;
}

.wallet_type {
  color: var(--Black, #222);
  font-size: 16px;
  line-height: normal;
  font-family: var(--primary-font-semi-bold);
  margin: 0 0 5px;
  display: flex;
  align-items: center;
}
.wallet_type img {
  width: 20px;
  margin: 0 10px 0 0;
}

.wallet_value {
  margin: 0;
  color: var(--Black, #222);
  
  font-size: 24px;
  line-height: normal;
}

.referral_qr_wrapper {
  background: url(../images/qr_bg.jpeg) center center no-repeat;
  background-size: cover;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin: 0 0 20px;
}

.referral_qr {
  max-width: 200px;
}

.form-group {
  margin-bottom: 10px;
}
.form-group label {
  padding: 0;
  color: rgba(34, 34, 34, 0.5);
  
  font-size: 13px;
  line-height: normal;
  margin: 0 0 5px;
}
.form-group .form-control {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: 1px solid var(--Grey, #aaa);
  background: var(--White, #fff);
  color: #0d2954;
  
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  padding: 6px;
  height: 45px;
  min-height: 45px;
}
.form-group .form-control::placeholder {
  color: var(--Grey, #aaa);
}
.form-group .form-control:hover,
.form-group .form-control:focus,
.form-group .form-control:visited,
.form-group .form-control :active {
  outline: none;
  box-shadow: none;
}

.select_custom {
  position: relative;
}
.select_custom::before {
  position: absolute;
  content: "";
  right: 14px;
  top: 15px;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border: 2px solid transparent;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  z-index: 1;
}
.select_custom::after {
  pointer-events: none;
  width: 40px;
  height: 41px;
  background: #fff;
  position: absolute;
  content: "";
  right: 2px;
  top: 2px;
}

.wallet_adderss_input {
  position: relative;
}
.wallet_adderss_input button.copy_btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  padding: 0;
}

.payment_two_side_wrapper .payment_two_side_row {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  justify-content: space-between;
}
.payment_two_side_wrapper .payment_two_side_row .payment_label {
  color: rgba(34, 34, 34, 0.5);
  
  font-size: 13px;
  line-height: normal;
  width: 40%;
  margin: 0;
}
.payment_two_side_wrapper .payment_two_side_row .payment_value {
  margin: 0;
  width: 60%;
  color: var(--Black, #222);
  
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.primary-btn {
  border-radius: 6px;
  background: var(--Blue-1, #0d2954);
  color: #fff;
  text-align: center;
  
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  min-height: 45px;
}

.custom-modal-content {
  margin: 70px 0;
  border-radius: 10px;
  border: 2px solid transparent;
  position: relative;
}
.custom-modal-content::before,
.custom-modal-content::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.custom-modal-content .modal-body {
  background: none;
  padding-top: 40px;
}
.custom-modal-content button.close {
  position: absolute;
  bottom: -60px;
  left: calc(50% - 20px);
  opacity: 1;
}

.stake_modal_content {
  backdrop-filter: blur(4px);
  border: 2px solid var(--Gold, #cfa75f);
  background: radial-gradient(
    192.25% 54.55% at 48.12% -1.97%,
    #f5cc6e 0%,
    #ffe999 17.1%,
    #fff 44.67%
  );
}
.stake_modal_content::before {
  top: -70px;
  right: 10px;
  width: 130px;
  height: 133px;
  background: url(../images/icons/stake_coin_icon_01.svg) center center
    no-repeat;
  background-size: cover;
}
.stake_modal_content::after {
  top: -52px;
  right: 80px;
  width: 95px;
  height: 50px;
  background: url(../images/icons/stake_coin_icon_02.svg) top center no-repeat;
  background-size: cover;
  z-index: -1;
}

.buy_package_modal_content {
  backdrop-filter: blur(4px);
  border: 2px solid var(--blue-gra, #c1e8f9);
  background: radial-gradient(
    192.25% 54.55% at 48.12% -1.97%,
    #5bb4ec 0%,
    #c0e8f9 17.1%,
    #fff 44.67%
  );
}
.buy_package_modal_content::before {
  top: -70px;
  right: 10px;
  width: 130px;
  height: 133px;
  background: url(../images/icons/buy_package_icon_01.svg) center center
    no-repeat;
  background-size: cover;
}
.buy_package_modal_content::after {
  top: -52px;
  right: 80px;
  width: 95px;
  height: 50px;
  background: url(../images/icons/buy_package_icon_02.svg) top center no-repeat;
  background-size: cover;
  z-index: -1;
}

.modal_heading {
  color: var(--Black, #222);
  text-align: center;
  
  font-size: 24px;
  font-style: normal;
  line-height: normal;
  margin: 0 0 20px;
}

.column_values_boxes_wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.column_values_boxes_wrapper .column_values_box_single {
  width: 31%;
  font-size: 16px;
  min-height: 45px;
  font-style: normal;
  line-height: normal;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  color: var(--Grey, #aaa);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background: var(--White, #fff);
  border: 1px solid var(--Grey, #aaa);
  font-family: var(--primary-font-medium);
}

.form_discription {
  margin: 0 0 10px;
}
.form_discription h6 {
  color: var(--Grey, #aaa);
  
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.form_discription h6 strong {
  font-family: var(--primary-font-bold);
}

.column_values_boxes_wrapper .option {
  position: relative;
  width: 31%;
  font-family: var(--primary-font-medium);
}
.column_values_boxes_wrapper .option input {
  opacity: 0;
  position: absolute;
}
.column_values_boxes_wrapper .option input:checked + span {
  background: linear-gradient(180deg, #ffe05c 0%, #cba32a 100%);
  color: #fff;
  border: none;
}
.column_values_boxes_wrapper .option input:checked + span:hover,
.column_values_boxes_wrapper .option input:checked + span:focus,
.column_values_boxes_wrapper .option input:checked + span:active {
  background: linear-gradient(180deg, #ffe05c 0%, #cba32a 100%);
  color: #fff;
}
.column_values_boxes_wrapper .option .btn-option {
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  min-height: 45px;
  font-style: normal;
  line-height: normal;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  color: var(--Grey, #aaa);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background: var(--White, #fff);
  border: 1px solid var(--Grey, #aaa);
}
.column_values_boxes_wrapper .option .btn-option:hover,
.column_values_boxes_wrapper .option .btn-option:focus,
.column_values_boxes_wrapper .option .btn-option:active {
  background-color: transparent;
}

.blue_select_active_boxes .option input:checked + span {
  background: var(
    --blue-gra,
    linear-gradient(180deg, #c1e8f9 0%, #52afea 100%)
  );
  color: #fff;
  border: none;
}
.blue_select_active_boxes .option input:checked + span:hover,
.blue_select_active_boxes .option input:checked + span:focus,
.blue_select_active_boxes .option input:checked + span:active {
  background: var(
    --blue-gra,
    linear-gradient(180deg, #c1e8f9 0%, #52afea 100%)
  );
  color: #fff;
  border: none;
}

.column_values_boxes_wrapper .option.selected-grey span.btn-option {
  background: #aaaaaa;
  color: #fff;
}

.btn:before {
  background: none;
}

.nav_list li {
  margin: 0 0 20px 0 !important;
}
.nav_list li a {
  font-size: 16px !important;
  line-height: 20px;
}

td {
  padding: 0 10px 5px;
}

.main-container {
  padding: 17px 15px;
}

.diagram-link .link {
  word-break: break-all;
}

.inner_page_wrapper.stake-page-wrapper {
  margin-top: 30px;
}

.modal-dialog {
  margin: 0.5rem 1.5rem;
}

.custom-select {
  padding: 0;
}
.custom-select::after {
  top: 20px;
  right: 15px;
}

.modal-close-absolute.close-filter {
  bottom: -50px;
}

.dashboard-body {
  padding: 0 0 50px;
  color: #0d2954;
}

.grapbox {
  overflow: hidden;
  overflow-x: auto;
  margin: 20px 0 0;
}

.diagram_table {
  background: none;
  box-shadow: none;
  min-width: 320px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.diagram_table tr {
  background: #5a8daf;
}
.diagram_table tr:nth-child(1) {
  background: none;
}
.diagram_table tr th {
  padding: 6px 10px 6px;
  white-space: nowrap;
  background: none;
  color: rgba(34, 34, 34, 0.5);
  font-weight: initial;
  font-family: var(--primary-font-light);
}
.diagram_table tr td {
  padding: 10px 10px 8px;
}
.diagram_table tr td:nth-child(1) {
  width: 100px;
}
.diagram_table tr td:nth-last-child(1) {
  min-width: 5%;
}

.phoneview {
  margin: 0;
}

.diagram_table_downline_main {
  padding: 0 0 0 20px;
}

.diagram_table_downline {
  margin: 10px 0;
  border: 1px solid #dfdfdf;
  background: rgba(255, 255, 255, 0.2);
}
.diagram_table_downline tr {
  background: #dfdfdf;
}
.diagram_table_downline tr td {
  background: #dfdfdf;
}

body .walletbgforprogram .tabcontent1 .nt_rk .archive_0 li {
  list-style: none !important;
}

.imgbox img {
  width: 40px;
}

.profile-card-header {
  margin: 0 0 10px;
}

.profile-card-header-content .profile-card-heading {
  font-size: 16px;
}
.profile-card-header-content .profile-card-id {
  font-size: 16px;
}

.two-side-content .two-side-content-row {
  display: flex;
  margin: 0 0 10px;
  align-items: center;
  justify-content: space-between;
}
.two-side-content .two-side-content-row h5 {
  font-size: 13px;
  margin: 0;
}
.two-side-content .two-side-content-row h6 {
  font-size: 16px;
  margin: 0;
}

.profile-card {
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 20px;
}

.arrow_td {
  text-align: right;
}

.diagram_refer_link_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d2954;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.diagram_refer_link_wrapper .diagram_refer_link {
  border-radius: 5px;
  background: var(--Blue-1, #0d2954);
  font-size: 16px;
  height: 36px;
  font-family: var(--primary-font-regular) !important;
  color: #fff !important;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  opacity: 1 !important;
  flex-grow: 1;
  padding: 0 10px;
  word-break: break-all;
  height: auto;
}
.diagram_refer_link_wrapper .diagram_refer_btn {
  color: #000;
  font-family: "khandregular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid var(--Gold, #cfa75f);
  background: linear-gradient(180deg, #fff 0%, #fff2ca 50.52%);
  height: 36px;
  margin-left: 0;
  min-width: 100px;
  border: 1px solid var(--Gold, #cfa75f);
  background: linear-gradient(180deg, #fff 0%, #fff2ca 50.52%);
}

/*# sourceMappingURL=new_layout.css.map */
