@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplayBlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplayBoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplayBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplayMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplayRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
* {
  font-family: "SFProDisplay";
}

#loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
  margin-top: 23vh;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
body {
  background-color: #212328;
}

.modal-header {
  border-bottom-color: #9b9b9b;
}

.select2-container--default .select2-results__option--selected {
  background-color: #9b9b9b;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #7d7aff;
}

.select2-container--default .select2-selection--single {
  background-color: #212328;
  border-radius: 50px;
  height: 44px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-color: #e9e9e9;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: relative;
  transition: 0.1s;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../icons/chevron-down.svg");
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-radius: 50px !important;
}

.modal-xxs {
  max-width: 380px;
  margin: auto;
}

.select2-container {
  z-index: 9999;
  background-color: transparent !important;
}
.select2-container.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container .select2-dropdown {
  background-color: #212328;
  border: none;
  padding: 4px;
}
.select2-container .select2-dropdown .select2-search--dropdown {
  position: relative;
  box-sizing: border-box;
  color: #fff;
  background: #212328;
  background-clip: padding-box;
  border: solid 1px transparent;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  padding: 0 12px;
  margin: 16px;
  cursor: pointer;
  gap: 8px;
}
.select2-container .select2-dropdown .select2-search--dropdown:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.select2-container .select2-dropdown .select2-search--dropdown input {
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 2;
}
.select2-container .select2-dropdown .select2-results__options li {
  color: #fff;
}

.primary-button {
  background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
  color: #fff;
  font-weight: 400;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 4px;
}
.primary-button:hover {
  color: #fff;
}
.primary-button.small {
  padding: 8px 12px;
}
.primary-button.full-width {
  width: 100%;
}
.primary-button.round {
  border-radius: 50px;
}

.danger-button {
  background: #f5365c;
  color: #fff;
  font-weight: 400;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 4px;
}
.danger-button:hover {
  color: #fff;
}
.danger-button.small {
  padding: 8px 12px;
}
.danger-button.full-width {
  width: 100%;
}
.danger-button.round {
  border-radius: 50px;
}

.outlined-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  color: #fff;
  background: #212328;
  background-clip: padding-box;
  border: solid 1px transparent;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  padding: 12px 16px;
  cursor: pointer;
  gap: 8px;
  text-decoration: none;
}
.outlined-button:hover {
  color: #fff;
}
.outlined-button:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.outlined-button.small {
  padding: 8px 12px;
}
.outlined-button.full-width {
  width: 100%;
}
.outlined-button.round {
  border-radius: 50px;
}

.gradient-box {
  position: relative;
  box-sizing: border-box;
  color: #fff;
  background: #212328;
  background-clip: padding-box;
  border: solid 1px transparent;
  border-radius: 8px;
}
.gradient-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
}

.gradient-text {
  background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 600;
}

.text-gray {
  color: #9b9b9b;
}

.border-gray-bottom {
  border-bottom: 0.5px solid #9b9b9b;
}

.form-checkbox {
  position: relative;
  width: auto;
  padding-left: 28px;
  cursor: pointer;
}
.form-checkbox input {
  display: none;
}
.form-checkbox input:checked ~ label::after {
  display: block;
}
.form-checkbox label {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.form-checkbox label::-moz-selection {
  background-color: transparent;
}
.form-checkbox label::selection {
  background-color: transparent;
}
.form-checkbox label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #a4a1ff;
  border-radius: 4px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.form-checkbox label::after {
  content: "";
  background-image: url("../icons/checked.svg");
  position: absolute;
  width: 11.67px;
  height: 8px;
  background-size: cover;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
}

.radio-box input {
  display: none;
}
.radio-box input:checked ~ label::after {
  display: block;
}
.radio-box label {
  font-size: 18px;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
.radio-box label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #7d7aff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.radio-box label::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #7d7aff;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}

.outlined-rounded-input {
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
  background-color: transparent;
  outline: none;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  max-height: 44px;
  text-align: center;
}
.outlined-rounded-input::-moz-placeholder {
  color: #fff;
  text-align: center;
}
.outlined-rounded-input::placeholder {
  color: #fff;
  text-align: center;
}
.outlined-rounded-input.left-align {
  text-align: left;
}
.outlined-rounded-input.left-align::-moz-placeholder {
  color: #9b9b9b;
  text-align: left;
}
.outlined-rounded-input.left-align::placeholder {
  color: #9b9b9b;
  text-align: left;
}

.input-with-icon {
  width: 100%;
  height: 48px;
  padding: 0 8px 0 28px;
  border-radius: 50px;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-with-icon img {
  width: 24px;
  height: 24px;
}
.input-with-icon input,
.input-with-icon select {
  width: 90%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
}
.input-with-icon .file-label {
  color: #9b9b9b;
}
.input-with-icon .file-label input {
  display: none;
}

.textarea-box {
  width: 100%;
}
.textarea-box textarea {
  width: 100%;
  outline: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid #e9e9e9;
  padding: 4px 8px;
  border-radius: 12px;
}

.close-modal {
  background-color: transparent;
  border: none;
  outline: none;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(100px) !important;
          backdrop-filter: blur(100px) !important;
}

header {
  width: 100%;
  position: relative;
}
header .header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-wrapper .logo a {
  text-decoration: none;
}
header .header-wrapper .logo a span:first-child {
  font-weight: 700;
}
header .header-wrapper .logo a span:last-child {
  font-weight: 500;
  color: #fff;
}
header .header-wrapper .balance {
  position: relative;
}
header .header-wrapper .balance .balance-wrapper {
  display: flex;
  gap: 4px;
  color: #fff;
  padding-bottom: 8px;
  transform: translateY(4px);
}
header .header-wrapper .balance .balance-wrapper span:first-child {
  font-weight: 400;
}
header .header-wrapper .balance .balance-wrapper span:last-child {
  font-weight: 500;
}
header .header-wrapper .balance .balance-dropdown {
  width: 192px;
  min-height: 50px;
  position: absolute;
  top: 30px;
  right: 0;
  opacity: 0;
  z-index: -1;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top {
  padding-bottom: 12px;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top > p {
  padding: 16px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top ul li {
  display: inline-block;
  width: 100%;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 4px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top ul li a:hover {
  background-color: #be33be;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-top ul li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-bottom {
  width: 100%;
  border-top: 0.5px solid #e9e9e9;
}
header .header-wrapper .balance .balance-dropdown .balance-dropdown-bottom a {
  display: flex;
  width: 100%;
  padding: 12px 16px;
  color: 15px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  gap: 4px;
  align-items: center;
}
header .header-wrapper .balance:hover .balance-dropdown {
  opacity: 1;
  z-index: 9999999;
  max-height: 100vh;
}
header::before {
  content: "";
  width: 100%;
  height: 396px;
  background-color: #141014;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

nav {
  width: 100%;
  background-color: #212328;
  position: fixed;
  bottom: -1px;
  display: flex;
  align-items: center;
}
nav .container {
  position: relative;
}
nav .scroll-to-top{
  position: absolute;
  right: 7px;
  top: -100px;
  color: #e9e9e9;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 10;
}
nav .navigation-bar ul {
  display: flex;
  list-style: none;
}
nav .navigation-bar ul li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #e9e9e9;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}
nav .navigation-bar ul li a .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .navigation-bar ul li a .icon img:last-child {
  display: none;
}
nav .navigation-bar ul li.active a {
  color: #7f7aff;
}
nav .navigation-bar ul li.active a .icon img:last-child {
  display: block;
}
nav .navigation-bar ul li.active a .icon img:first-child {
  display: none;
}
.top-filter-bar-wrapper{
  width: 100%;
  padding: 40px;
  position: relative;
  transition: 0.1s;

}
.top-filter-bar-wrapper .hidden-box{
  display: none;
}
.top-filter-bar-wrapper.active-filter .shown-box{
  display: none;
}
.top-filter-bar-wrapper.active-filter .hidden-box{
  display: flex;
}
.top-filter-bar-wrapper.active-filter{
  border-radius: 8px;
  background-color: #212328;
  background-image: url("../images/filter-left.svg"), url("../images/filter-right.svg");
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
}
.top-filter-bar-wrapper-close{
  cursor: pointer;
  position: absolute;
  top: 28px;
  right: 28px;
}
.top-filter-bar-wrapper .top-filter-bar-wrapper-close{
  display: none;
}.top-filter-bar-wrapper.active-filter .top-filter-bar-wrapper-close{
  display: block;
}
.top-filter-bar-wrapper.active-filter::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}
.top-filter-bar {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-filter-bar .seach-input {
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  background-color: #141014;
}
.top-filter-bar .seach-input input {
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  min-width: 280px;
}
.top-filter-bar .checkbox-list {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 16px;
}

.main-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-list .main-list-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  align-items: center;
  border: 1px solid rgba(155, 155, 155, 0.1882352941);
  border-radius: 8px;
  background-color: #212328;
}
.main-list .main-list-item .main-list-item-info {
  display: flex;
  gap: 4px;
}
.main-list .main-list-item .main-list-item-info .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-list .main-list-item .main-list-item-info .item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-list .main-list-item .main-list-item-info .item-info .phone-number {
  margin: 0;
  font-weight: 500;
  color: #fff;
}
.main-list .main-list-item .main-list-item-info .item-info .phone-actions {
  display: flex;
  align-items: center;
}
.main-list .main-list-item .main-list-item-info .item-info .phone-actions img {
  opacity: 0.3;
}
.main-list .main-list-item .main-list-item-info .item-info .phone-actions p {
  margin: 0;
  color: rgb(233 233 233 / 56%);
  font-weight: 400;
}
.main-list .main-list-item .main-list-item-action {
  display: flex;
  align-items: center;
}
.main-list .main-list-item .main-list-item-action .action-name {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
.main-list .main-list-item .main-list-item-action .reserved-box {
  display: flex;
}
.main-list .main-list-item .main-list-item-action .reserved-box span {
  color: rgba(233, 233, 233, 0.5019607843);
}
.main-list .main-list-item .main-list-item-action .reserved-box span:first-child {
  text-decoration: underline;
}

.main-filter-box {
  width: 100%;
    height: 12%;
  padding: 8px 0;
  position: fixed;
  background-color: #212328;
}
.main-filter-box .filter-box-content {
  width: 100%;
}

.filter-wrapper {
  width: 100%;

}
.filter-wrapper > .row{
  row-gap: 12px;
}


.filter-wrapper .seach-input {
  width: 100%;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  background-color: #141014;
}
.filter-wrapper .seach-input input {
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  min-width: 280px;
}
.filter-wrapper .copy-btn {
  width: 42px;
  height: 36px;
}
.filter-wrapper .input-container {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
}
.filter-wrapper .input-container span {
  font-size: 16px;
}
.filter-wrapper .input-container span:first-child {
  padding-right: 9px;
}
.filter-wrapper .input-container .code-input {
  font-size: 13px;
  text-align: center;
  border: 1px solid #7f7aff;
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
  outline: none;
}
.filter-wrapper .input-container .code-input::-webkit-outer-spin-button, .filter-wrapper .input-container .code-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter-wrapper .image-checkbox-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 6px;
}
.filter-wrapper .image-checkbox-list .image-checkbox-item {
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.filter-wrapper .image-checkbox-list .image-checkbox-item input {
  display: none;
}
.filter-wrapper .image-checkbox-list .image-checkbox-item input:checked ~ label {
  background-color: rgba(126, 122, 255, 0.8705882353);
}
.filter-wrapper .image-checkbox-list .image-checkbox-item label {
  background-color: rgba(126, 122, 255, 0.0196078431);
  cursor: pointer;
  padding: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-wrapper .image-checkbox-list .image-checkbox-item img {
  width: 100%;
  /* height: 100%; */
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.filter-wrapper .image-checkbox-list .image-checkbox-item label {
    border-radius: 3px;
}
.filter-wrapper .filter-wrapper-footer button {
  height: 36px;
}
.filter-wrapper .filter-wrapper-footer button.filter-delete-btn {
  background-color: #f5365c;
  border: none;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  outline: none;
}
.filter-wrapper .filter-wrapper-footer button.filter-delete-btn img {
  width: 24px;
  height: 24px;
}

.mask-list-items {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mask-list-items li {
  padding: 12px 0;
  cursor: pointer;
}
.mask-list-items li:not(:last-child) {
  border-bottom: 0.5px solid #e9e9e9;
}

.reserve-modal .reserve-modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 0;
  margin: 0;
}
.reserve-modal .reserve-modal-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item {
  width: 100%;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item:not(:last-child) {
  border-bottom: 0.5px solid #e9e9e9;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item input {
  display: none;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item input:checked ~ label::after {
  display: block;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item label {
  width: 100%;
  padding: 20px 4px 20px 20px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item label::after {
  content: "";
  width: 20px;
  height: 14px;
  background-image: url("../icons/checked.svg");
  background-size: contain;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.reserve-modal .reserve-modal-list .reserve-modal-list-item label::before {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  left: 8px;
  top: 18px;
  background-color: #2dce89;
}
.reserve-modal .reserve-modal-action {
  width: 100%;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.reserve-submit-modal .reserve-submit-modal-title {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  margin: 0;
}
.reserve-submit-modal .submit-modal-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 0.5px solid #e9e9e9;
}
.reserve-submit-modal .submit-modal-list .submit-modal-list-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.reserve-submit-modal .submit-modal-list .submit-modal-list-item .list-images {
  display: flex;
  gap: 2px;
}
.reserve-submit-modal .submit-modal-list .submit-modal-list-item .list-images img {
  width: 24px;
  height: 24px;
}
.reserve-submit-modal .submit-modal-list .submit-modal-list-item p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
}
.reserve-submit-modal .submit-modal-footer {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.reserve-submit-modal .submit-modal-footer p {
  padding: 0;
  margin: 0;
}
.reserve-submit-modal .submit-modal-footer p.submit-modal-footer-title {
  font-size: 13px;
  text-align: center;
}
.reserve-submit-modal .submit-modal-footer .list-item-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 16px;
}
.reserve-submit-modal .submit-modal-footer .list-item-title.infinity {
  font-size: 28px;
  line-height: 16px;
}
.reserve-submit-modal .submit-modal-footer .list-item-name {
  display: inline-block;
  text-align: center;
  color: #9b9b9b;
  font-size: 13px;
}

.bonus-box-item {
  padding: 12px 28px;
  background-color: #141014;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
}
.bonus-box-item span {
  font-size: 16px;
  font-weight: 400;
}
.bonus-box-item span:first-child {
  color: #9b9b9b;
}
.bonus-box-item span:last-child {
  color: #fff;
}

.main-bonus-list {
  width: 100%;
}
.main-bonus-list .list-heading {
  width: 100%;
  border-bottom: 0.5px solid #9b9b9b;
}
.main-bonus-list .list-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-bonus-list .list-wrapper-item {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  align-items: center;
}
.main-bonus-list .list-wrapper-item:not(:last-child) {
  border-bottom: 0.5px solid #9b9b9b;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-info {
  display: flex;
  gap: 4px;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-info .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-info .item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-info .item-info .phone-number {
  margin: 0;
  font-weight: 500;
  color: #fff;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-info .item-info .phone-actions {
  display: flex;
  flex-direction: column;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-info .item-info .phone-actions p {
  margin: 0;
  color: #e9e9e9;
  font-weight: 400;
  font-size: 12px;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-action {
  display: flex;
  gap: 4px;
  flex-direction: row;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-action img {
  width: 20px;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-action.success {
  color: #2dce89;
}
.main-bonus-list .list-wrapper-item .list-wrapper-item-action.error {
  color: #f5365c;
}

.main-partners-list {
  width: 100%;
}
.main-partners-list .list-heading {
  width: 100%;
  border-bottom: 0.5px solid #9b9b9b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-partners-list .list-heading .list-heading-filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.main-partners-list .list-heading .list-heading-filters span {
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-partners-list .list-heading .list-heading-filters span::-moz-selection {
  background-color: transparent;
}
.main-partners-list .list-heading .list-heading-filters span::selection {
  background-color: transparent;
}
.main-partners-list .list-heading .list-heading-filters span#filter-status-all {
  color: #00338a;
  background-color: #6a9df7;
}
.main-partners-list .list-heading .list-heading-filters span#filter-status-2 {
  color: #1aae6f;
  background-color: #b0eed3;
}
.main-partners-list .list-heading .list-heading-filters span#filter-status-1 {
  color: #f80031;
  background-color: #fdd1da;
}
.main-partners-list .list-heading .list-heading-filters span#filter-status-0 {
  color: #ff3709;
  background-color: #fee6e0;
}
.main-partners-list .list-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-partners-list .list-wrapper-item {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  align-items: center;
}
.main-partners-list .list-wrapper-item:not(:last-child) {
  border-bottom: 0.5px solid #9b9b9b;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-info {
  display: flex;
  gap: 4px;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-info .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-info .item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-info .item-info .phone-number {
  margin: 0;
  font-weight: 500;
  color: #fff;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-info .item-info .phone-actions {
  display: flex;
  flex-direction: column;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-info .item-info .phone-actions p {
  margin: 0;
  color: #e9e9e9;
  font-weight: 400;
  font-size: 12px;
}
.main-partners-list .list-wrapper-item .list-wrapper-item-action div span:last-child {
  display: inline-block;
  min-width: 60px;
  text-align: right;
  color: #fff;
  font-weight: 600;
}

@media screen and (min-width: 0px) {
  header .header-wrapper {
    padding: 20px 0;
  }
  header .header-wrapper .logo a span {
    font-size: 20px;
  }
  header .header-wrapper .bonus .bonus-wrapper {
    font-size: 16px;
  }
  nav {
    height: 76px;
  }
  nav .navigation-bar {
    width: 100%;
    overflow-x: auto;
  }
  nav .navigation-bar::-webkit-scrollbar {
    display: none;
  }
  nav .navigation-bar ul {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-left: 0;
    margin: 0;
  }
  nav .navigation-bar ul li {
    width: 94px !important;
  }
  .main-list {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .main-list .main-list-item {
    /*padding: 2px 12px;*/
      padding-right: 12px;
      padding-top: 8px;
  }
  .main-list .main-list-item .main-list-item-info {
    gap: 0px;
  }
  .main-list .main-list-item .main-list-item-info .item-img {
    width: 60px;
    height: 60px;
  }
  .main-list .main-list-item .main-list-item-info .item-info {
    gap: 4px;
  }
  .main-list .main-list-item .main-list-item-info .item-info .phone-number {
    font-size: 15px;
  }
  .main-list .main-list-item .main-list-item-info .item-info .phone-actions p {
    font-size: 10px;
  }
  .main-list .main-list-item .main-list-item-action {
    gap: 4px;
    flex-direction: column-reverse;
  }
  .main-list .main-list-item .main-list-item-action .action-name {
    font-size: 13px;
  }
  .main-list .main-list-item .main-list-item-action button {
    width: 28px;
    height: 24px;
  }
  .main-list .main-list-item .main-list-item-action button img {
    width: 8px;
    height: auto;
  }
  .main-list .main-list-item .main-list-item-action .reserved-box {
    display: flex;
    flex-direction: column;
    font-size: small;
  }
  .main-list .main-list-item .main-list-item-action .reserved-box span {
    color: rgba(233, 233, 233, 0.1882352941);
  }
  .main-list .main-list-item.reserved {
    position: relative;
    padding-bottom: 24px;
  }
  .main-list .main-list-item.reserved .reserved-box {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 80px;
    font-size: 12px;
    gap: 4px;
  }
  .main-page-margin {
    margin-bottom: 160px;
  }
  .margin-for-nav {
    margin-bottom: 60px;
  }
  .main-filter-box {
    bottom: 59px;
  }
  .filter-box-content > .row > div:first-child {
    order: 2;
    padding-top: 8px;
  }
  .filter-box-content > .row > div:nth-child(2) {
    order: 1;
  }
  .filter-box-content > .row > div:last-child {
    order: 3;
    padding-top: 8px;
  }
  .filter-wrapper .input-container {
    gap: 2px;
  }
  .filter-wrapper .input-container .code-input {
    width: 24px;
    height: 24px;
  }
  .reserve-modal-action {
    margin-top: 12px;
  }
  .reserve-modal-action button {
    width: 100%;
    height: 44px;
  }
  .main-bonus-list .list-heading {
    padding: 16px;
  }
  .main-bonus-list .list-wrapper {
    padding: 0 16px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item {
    padding: 2px 0;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info {
    gap: 4px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-img {
    width: 60px;
    height: 60px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info {
    gap: 4px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .phone-number {
    font-size: 15px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .phone-actions p {
    font-size: 12px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-action span {
    display: none;
  }
  .main-partners-list .list-heading {
    padding: 16px;
    font-size: 20px;
  }
  .main-partners-list .list-heading button {
    width: 28px;
    height: 28px;
  }
  .main-partners-list .list-wrapper {
    padding: 0 16px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item {
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info {
    gap: 8px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-img {
    width: 36px;
    height: 36px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info {
    gap: 4px;
    display: flex;
    flex-direction: column;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller {
    position: relative;
    padding-left: 12px;
    margin: 0;
    font-size: 15px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #2dce89;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller.no-badge {
    padding-left: 0px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller.no-badge::before {
    display: none;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller span {
    color: #e9e9e9;
    font-size: 15px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller-action-item {
    display: flex;
    gap: 4px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller-action-item span {
    color: #9b9b9b;
    font-size: 13px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller-action-item img {
    width: 16px;
    height: 16px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action {
    display: flex;
    flex-direction: column;
    padding-left: 44px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action div span:last-child {
    display: inline-block;
    min-width: 60px;
    text-align: right;
    color: #fff;
    font-weight: 600;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action.qr-action {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .orders-top {
    width: 100%;
    padding: 20px;
  }
  .orders-top .orders-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .orders-top .orders-box .title {
    width: 100%;
    border-radius: 50px;
    padding: 8px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .orders-top .orders-box .title:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .orders-top .orders-box p {
    color: #9b9b9b;
    font-size: 15px;
    text-align: center;
  }
  .main-orders-list {
    width: 100%;
  }
  .main-orders-list .list-heading {
    width: 100%;
    border-bottom: 0.5px solid #9b9b9b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-size: 20px;
  }
  .main-orders-list .list-heading button {
    width: 28px;
    height: 28px;
  }
  .main-orders-list .list-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }
  .main-orders-list .list-wrapper-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 8px 0;
    gap: 8px;
  }
  .main-orders-list .list-wrapper-item:not(:last-child) {
    border-bottom: 0.5px solid #9b9b9b;
  }
  .main-orders-list .list-wrapper-item .list-wrapper-item-info span {
    font-size: 20px;
    position: relative;
    padding-left: 12px;
  }
  .main-orders-list .list-wrapper-item .list-wrapper-item-info span::before {
    content: "";
    width: 2px;
    height: 24px;
    background-color: #2dce89;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .main-orders-list .list-wrapper-item .list-wrapper-item-action span {
    font-size: 15px;
    color: #e9e9e9;
  }
  .profile-top {
    width: 100%;
    padding: 20px;
    display: flex;
    gap: 4px;
  }
  .profile-top .profile-info-actions {
    width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
  .profile-top .profile-info-actions button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: transparent;
    outline: none;
    border: 1px solid #c1c1c2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .profile-top .profile-info-actions a {
    color: #7d7aff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
  }
  .profile-top .profile-info {
    width: 100%;
  }
  .profile-top .profile-info .profile-info-top {
    display: flex;
    gap: 24px;
    flex-direction: column;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name .avatar {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name .avatar:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name .avatar span {
    font-size: 20px;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name > span {
    font-size: 20px;
    font-weight: 500;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name button {
    background-color: transparent;
    border: none;
    outline: none;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name button img {
    width: 20px;
    height: 20px;
  }
  .profile-top .profile-info .profile-info-top .account-verify .account-verified {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .profile-top .profile-info .profile-info-top .account-verify .account-verified span {
    color: #fff;
    font-size: 15px;
  }
  .profile-top .profile-info .profile-info-top .account-verify .account-verified img {
    width: 20px;
    height: 20px;
  }
  .profile-top .profile-info .profile-info-top .account-verify .account-not-verified span {
    color: #fff;
    font-size: 15px;
  }
  .profile-top .profile-info .profile-info-top .account-verify .account-not-verified span:last-child {
    color: #7f7aff;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
  }
  .profile-top .profile-info .profile-info-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }
  .profile-top .profile-info .profile-info-items .profile-info-item {
    display: flex;
    flex-direction: column;
  }
  .profile-top .profile-info .profile-info-items .profile-info-item span {
    font-size: 11px;
    font-weight: 400;
  }
  .profile-top .profile-info .profile-info-items .profile-info-item span:first-child {
    color: #e9e9e9;
  }
  .profile-top .profile-info .profile-info-items .profile-info-item span:last-child {
    color: #fff;
  }
  .bank-card {
    padding: 20px;
    display: flex;
    justify-content: space-between;
  }
  .bank-card .card-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bank-card .card-info p {
    margin: 0;
  }
  .bank-card .card-info p:first-child {
    font-size: 20px;
    font-weight: 500;
  }
  .bank-card .card-info p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
  }
  .bank-card .card-info p:last-child {
    font-size: 16px;
    font-weight: 400;
  }
  .bank-card .card-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bank-card .card-actions button {
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }
  .bank-card .card-actions button::before {
    border-radius: 4px;
  }
  .bank-card .card-actions button:last-child {
    background-color: #f5365c;
    border: none;
    outline: none;
  }
  .verify-modal .heading-title {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    padding: 8px;
  }
  .verify-modal .heading-title:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .verify-modal .verify-box {
    width: 100%;
  }
  .verify-modal .verify-box p {
    color: #fff;
    font-size: 15px;
    text-align: center;
  }
  .verify-modal .verify-box label {
    display: block;
    position: relative;
    border-radius: 4px;
    height: 116px;
    overflow: hidden;
  }
  .verify-modal .verify-box label img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  .verify-modal .verify-box label:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .verify-modal .verify-box label input {
    display: none;
  }
  .verify-modal .verify-box label .primary-button {
    position: absolute;
    bottom: 8px;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .reserve-phone {
    width: 100%;
    padding-bottom: 28px;
  }
  .reserve-phone .title-box {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    font-size: 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .reserve-phone .reserve-phone-inner {
    padding-top: 28px;
    width: 100%;
  }
  .reserve-phone .reserve-phone-inner .timer-box {
    width: 188px;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
  }
  .reserve-phone .reserve-phone-inner .timer-box:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .reserve-phone .reserve-phone-inner .info-text {
    font-size: 20px;
    font-weight: 500;
    font-size: 20px;
  }
  .reserve-phone .reserve-phone-inner .info-text span {
    color: #7d7aff;
  }
  .reserve-action-item p {
    font-size: 18px;
  }
  .reserve-action-item p.title {
    font-size: 20px;
    font-weight: 500;
  }
  .reserve-action-item ul li {
    font-size: 18px;
  }
  .reserve-action-item input,
  .reserve-action-item textarea {
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
  }
  .auth {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
  .auth .banner {
    width: 100%;
  }
  .auth .h-100 {
    min-height: 100vh;
    align-items: center;
  }
  .auth-box {
    width: 100%;
  }
  .auth-box .auth-title {
    font-size: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-weight: 500;
  }
  .auth-box .auth-title span:last-child {
    color: #fff;
  }
  .auth-box .auth-wrapper {
    margin-top: 12px;
    width: 100%;
    padding: 24px;
    position: relative;
    background-color: #212328;
    border-radius: 12px;
  }
  .auth-box .auth-wrapper button {
    height: 40px;
  }
  .auth-box .auth-wrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(270deg, #ff49ba -12.5%, #7d7aff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .auth-box .auth-wrapper .auth-wrapper-title {
    font-size: 18px;
    color: #fff;
    text-align: center;
  }
  .auth-box .auth-wrapper > div {
    position: relative;
    z-index: 2;
  }
  .auth-box .auth-wrapper .auth-form-control {
    width: 100%;
    background-color: #fff;
    padding: 0 18px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    position: relative;
  }
  .auth-box .auth-wrapper .auth-form-control img {
    width: 24px;
    height: 24px;
  }
  .auth-box .auth-wrapper .auth-form-control input {
    width: 100%;
    border: none;
    outline: none;
  }
  .auth-box .auth-wrapper .auth-form-control .action-icon {
    position: absolute;
    right: 20px;
    cursor: pointer;
  }
}
@media screen and (min-width: 992px) {
  .auth {
    background-image: url("../images/auth.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
  .auth .banner {
    width: 100%;
  }
  .auth .h-100 {
    min-height: 100vh;
    align-items: center;
  }
  .auth-box .auth-title {
    font-size: 48px;
    gap: 12px;
  }
  .auth-box .auth-wrapper {
    margin-top: 12px;
    padding: 40px;
  }
  .auth-box .auth-wrapper .auth-wrapper-title {
    font-size: 24px;
  }
  header .header-wrapper {
    padding: 40px 0 20px;
  }
  header .header-wrapper .logo a span {
    font-size: 28px;
  }
  header .header-wrapper .bonus .bonus-wrapper {
    font-size: 20px;
  }
  nav {
    height: 60px;
  }
  nav .navigation-bar {
    display: flex;
    justify-content: center;
  }
  nav .navigation-bar ul {
    justify-content: center;
    width: 100%;
  }
  nav .navigation-bar ul li {
    width: 120px;
  }
  .main-list {
    /*padding: 0 28px;*/
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .main-list .main-list-item {
    padding: 8px 12px;
  }
  .main-list .main-list-item.reserved {
    padding-bottom: 0;
  }
  .main-list .main-list-item .main-list-item-info {
    gap: 8px;
  }
  .main-list .main-list-item .main-list-item-info .item-img {
    width: 80px;
    height: 80px;
  }
  .main-list .main-list-item .main-list-item-info .item-info {
    gap: 8px;
  }
  .main-list .main-list-item .main-list-item-info .item-info .phone-number {
    font-size: 20px;
  }
  .main-list .main-list-item .main-list-item-info .item-info .phone-actions p {
    font-size: 15px;
  }
  .main-list .main-list-item .main-list-item-action {
    gap: 8px;
    flex-direction: row;
  }
  .main-list .main-list-item .main-list-item-action .action-name {
    font-size: 20px;
  }
  .main-list .main-list-item .main-list-item-action button {
    width: 56px;
    height: 48px;
  }
  .main-list .main-list-item .main-list-item-action button img {
    width: 16px;
    height: auto;
  }
  .main-list .main-list-item .main-list-item-action .reserved-box {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    position: relative;
    left: initial;
    bottom: inherit;
  }
  .main-list .main-list-item .main-list-item-action .reserved-box span {
    font-size: 15px;
    color: rgba(233, 233, 233, 0.5019607843);
  }
  .main-page-margin {
    margin-bottom: 140px;
  }
  .margin-for-nav {
    margin-bottom: 80px;
  }
  .main-filter-box {
    /*bottom: 59px;*/
  }
  .filter-box-content > .row > div {
    order: initial !important;
    padding-top: 0 !important;
  }
  .filter-wrapper .input-container {
    gap: 5px;
  }
  .filter-wrapper .input-container .code-input {
    width: 32px;
    height: 28px;
  }
  .reserve-modal-action button {
    width: 200px;
  }
  .main-bonus-list .list-heading {
    padding: 28px;
    font-size: 20px;
    font-weight: 500;
  }
  .main-bonus-list .list-wrapper {
    padding: 0 16px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item {
    padding: 28px 0;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info {
    gap: 8px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-img {
    width: 80px;
    height: 80px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info {
    gap: 8px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .phone-number {
    font-size: 20px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .phone-actions p {
    font-size: 15px;
  }
  .main-bonus-list .list-wrapper .list-wrapper-item .list-wrapper-item-action span {
    display: inline-block;
  }
  .main-partners-list .list-heading {
    padding: 28px;
    font-size: 20px;
    font-weight: 500;
  }
  .main-partners-list .list-heading button {
    width: 40px;
    height: 40px;
  }
  .main-partners-list .list-heading .list-heading-filters {
    grid-template-columns: repeat(4, 1fr);
  }
  .main-partners-list .list-wrapper {
    padding: 0 16px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item {
    padding: 28px 0;
    flex-direction: row;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info {
    gap: 8px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-img {
    width: 80px;
    height: 80px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller {
    font-size: 20px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller span {
    font-size: 15px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller-action-item {
    gap: 4px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller-action-item span {
    color: #9b9b9b;
    font-size: 15px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-info .item-info .seller-action-item img {
    width: 20px;
    height: 20px;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action {
    justify-content: flex-end;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action span {
    display: inline-block;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action.qr-action {
    display: flex;
    flex-direction: column !important;
    align-items: center;
  }
  .main-partners-list .list-wrapper .list-wrapper-item .list-wrapper-item-action.qr-action .date span {
    color: rgba(233, 233, 233, 0.5019607843);
    font-weight: 400;
  }
  .orders-top {
    width: 100%;
    padding: 28px;
  }
  .orders-top .orders-title {
    font-size: 20px;
  }
  .main-orders-list .list-heading {
    padding: 28px;
    font-size: 20px;
    font-weight: 500;
  }
  .main-orders-list .list-heading button {
    width: 40px;
    height: 40px;
  }
  .main-orders-list .list-wrapper {
    padding: 0 16px;
  }
  .main-orders-list .list-wrapper .list-wrapper-item {
    padding: 28px 0;
    flex-direction: row;
  }
  .profile-top {
    padding: 28px;
  }
  .profile-top .profile-info-actions button {
    width: 36px;
    height: 36px;
  }
  .profile-top .profile-info .profile-info-top {
    flex-direction: row;
    align-items: center;
  }
  .profile-top .profile-info .profile-info-top .profile-info-name .avatar {
    width: 60px;
    height: 60px;
  }
  .bank-card {
    padding: 28px;
  }
  .verify-modal .heading-title {
    font-size: 24px;
    padding: 12px;
  }
  .verify-modal .verify-box {
    width: 100%;
  }
  .verify-modal .verify-box p {
    color: #fff;
    font-size: 15px;
    text-align: center;
  }
  .verify-modal .verify-box label {
    height: 248px;
  }
  .verify-modal .verify-box label .primary-button {
    bottom: 12px;
  }
  .reserve-phone {
    padding-bottom: 40px;
  }
  .reserve-phone .title-box {
    font-size: 24px;
  }
  .reserve-phone .reserve-phone-inner {
    padding-top: 40px;
  }
  .reserve-action-item p {
    font-size: 20px;
    font-weight: 400;
  }
  .reserve-action-item p.title {
    font-size: 24px;
    font-weight: 500;
  }
  .reserve-action-item ul li {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .margin-bottom-xs{
    margin-bottom: 12px;
  }
  /* .filter-wrapper .image-checkbox-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    width: 100%;
    justify-content: flex-start;
  } */
  .filter-wrapper .image-checkbox-list .image-checkbox-item{
    border: none;
    border-radius: 0;
  }
  .filter-wrapper .image-checkbox-list .image-checkbox-item label{
    padding: 0;
  }
  .filter-wrapper .image-checkbox-list .image-checkbox-item img{
    max-height: 50px;
  }
  .filter-wrapper .image-checkbox-list::-webkit-scrollbar {
    display: none;
  }
  .d-none-xs {
    display: none !important;
  }
  .flex-column-xs {
    flex-direction: column;
  }
  .verify-box .primary-button {
    font-size: 11px !important;
    padding: 4px;
  }
  .filter-wrapper .seach-input input {
    min-width: 180px;
  }
  .form-checkbox label {
    font-size: 13px;
  }
  .top-filter-bar-wrapper{
    background-image: none !important;
    padding: 0px 20px 20px;
  }
  .top-filter-bar-wrapper-close{
    top: 10px;
    right: 20px;
  }
  .justify-content-center-xs{
    justify-content: center;
  }
  nav .scroll-to-top span{
    display: none;
  }
  nav .scroll-to-top{
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 50%;
    right: 24px;
    top: -104px;
  }
}

.main-list-item-action .action-name b {
    white-space: nowrap;
}

.selected-badge {
    border: 1px solid #000;
    opacity: 0.8;
}

.input-with-icon svg{
    color: #7d7aff;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: unset !important;
}

@supports (-webkit-touch-callout: none) {
    nav {
        height: 95px !important;
    }
    .main-filter-box {
        margin-bottom: 20px !important;
    }
}

@media only screen and (max-width: 991px) {
    .filter-box-content {
        padding-bottom: 20px;
    }
}

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