@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
* {
  font-family: "Roboto", sans-serif;
}

:root {
  --layout-bg: #E8EFDD;
  --navigate-bg: #D6E5BD;
  --navigate-text-color: #272C22;
  --link-color: #AFD191;
  --btn-bg-color: #8EAF82;
  --btn-text-color: #FFFFFF;
  --header-text-color: #141415;
  --block-bg-color: #FFFFFF;
  --block-text-color: #141415;
  --layout-bg-image: ;

  /* --theme-deafult: #e4604a; */
  --theme-deafult: var(--link-color);
}

html,
body {
  overflow: hidden;
  font-size: 14px;
  background-color: #ffffff;
  max-width: 450px;
  margin: 0 auto;
}

#root {
  display: flex;
  justify-content: center;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

input[type="checkbox"] {
  accent-color: #4fa467;
}

.zaui-routes {
  overflow-anchor: none;
  max-width: 72rem;
  flex: 1;
}

.zaui-page {
  overflow-anchor: none;
}

.page {
  padding: 40px 16px 96px 16px;
}

.section-container {
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 24px;
}

.img-border {
  width: 70px;
  height: 70px;
  border-radius: 100%;
}

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

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.text-right {
  text-align: right;
}

.text-truncate {
  white-space: nowrap; /* Ngăn không cho văn bản xuống dòng */
  overflow: hidden; /* Ẩn nội dung vượt ra khỏi phạm vi của phần tử */
  text-overflow: ellipsis; /* Hiển thị dấu '...' khi văn bản bị cắt bớt */
  /*max-width: 200px;  Độ rộng tối đa của phần tử trước khi bắt đầu cắt bớt */
}

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

.f-w-n {
  font-weight: normal !important;
}

.f-w-b {
  font-weight: 500;
}

.w-25 {
  width: 25px;
}

.w-30 {
  width: 30px;
}

.w-100 {
  width: 100px;
}

.w-100vw {
  width: 100vw;
}

.w-60 {
  width: 60px;
}

.w-115 {
  width: 115px !important;
}

.w-95 {
  width: 95px;
}

.w-full {
  width: 100%;
}

.w-max-content {
  width: max-content;
}

.w-max-225 {
  max-width: 225px;
}

.h-max-80 {
  max-height: 80px;
}

.h-full {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.h-25 {
  height: 25px;
}

.h-30 {
  height: 30px;
}

.h-13rem {
  height: 13rem;
}

.h-11rem {
  height: 11rem;
}

.p-5 {
  padding: 5px !important;
}

.p-12{
  padding: 12px !important;
}

.p-05em {
  padding: 0.5em !important;
}

.p-left-right-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

.color-black {
  color: black !important;
}

.color-disabled {
  color: rgb(120, 120, 120) !important;
}

.section-t-space {
  padding-top: 30px;
}

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

.text-uppercase {
  text-transform: uppercase;
}

.text-info {
  color: #17a2b8 !important;
}

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

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

.text-orange {
  color: #ff8c00;
}

.text-success {
  color: #23ae4a !important;
}

.text-dark {
  color: #999;
}

.text-disabled {
  color: rgba(0, 0, 0, 0.26) !important;
}

.text-primary {
  color: var(--link-color) !important;
}

.text-white {
  color: white;
}

.while-space-nowrap {
  white-space: nowrap;
}

.bg-solid {
  background-color: var(--theme-deafult);
}

.border-active {
  border-color: var(--theme-deafult) !important;
}

.zaui-switch:checked {
  background-color: var(--theme-deafult);
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.zaui-bottom-navigation-content {
  background-color: var(--navigate-bg);
}

.zaui-bottom-navigation-item-label {
  color: var(--navigate-text-color);
}

.zaui-bottom-navigation-item-icon {
  color: var(--navigate-text-color);
}

.zaui-tabs-tabbar-item.zaui-tabs-tabbar-item-active {
  color: var(--theme-deafult);
}

.zaui-tabs-tabbar-active-line {
  background-color: var(--theme-deafult);
}

.color-primary {
  color: var(--theme-deafult);
}

.color-danger {
  color: #dc3545;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.deal-item-image {
  display: flex;
}

.deal-item-image img {
  width: 100%;
  height: 100%;
}

.m-l-15 {
  margin-left: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-12 {
  margin-right: 12px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-auto {
  margin-top: auto !important;
}

.m-b-auto {
  margin-bottom: auto !important;
}

.m-b-8 {
  margin-bottom: 8px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-5rem {
  margin-bottom: 5rem !important;
}

.m-l-s-10 {
  margin-left: -20px;
}

.gap-5px {
  gap: 5px !important;
}

.gap-8px {
  gap: 8px !important;
}

.gap-10px {
  gap: 10px !important;
}

.gap-15px {
  gap: 15px !important;
}

.gap-20px {
  gap: 20px !important;
}

.gap-1\.5rem {
  gap: 1.5rem !important;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.flex-5 {
  flex: 5;
}

.flex-item-1 div {
  flex: 1;
}

.font-weight-bold {
  font-weight: 500 !important;
}

.m-a {
  margin: auto;
}

.img-square-50px {
  width: 50px;
  height: 50px;
}

.space {
  margin: 20px;
}

.font-style-italic {
  font-style: italic;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-15 {
  font-size: 15px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-35 {
  font-size: 35px;
}

.content-note-open-external {
  font-size: 14px;
  font-style: italic;
  font-size: 12px;
}

.deals-joined-price {
  font-size: 14px;
  color: #777777;
  margin: 0;
}

.view-deal-item-title {
  text-transform: uppercase;
  padding: 30px 0px 10px 0px;
  margin: auto;
  font-size: 1.2em;
  line-height: 1.5em;
  color: #222222;
  font-weight: bold !important;
  text-align: center;
  width: 100%;
}

.view-deal-item-price {
  display: flex;
  margin: auto;
  /* gap: 5px; */
  justify-content: center;
  width: 100%;
}

.view-deal-item-price .deal-item-price {
  font-size: 1.1em;
  color: #007bff;
  font-weight: 500;
  margin-right: 5px;
}

.view-deal-item-price .deal-item-cashback {
  font-size: 1.1em;
  color: red;
  font-weight: 500;
  margin-left: 5px;
}

.view-deal-item-description {
  margin-top: 10px;
  text-align: justify;
}

.border-product {
  margin-top: 15px;
  margin-bottom: 20px;
  border-top: 1px dashed #858181;
  width: 100%;
  text-align: center;
}

.float-right {
  float: right;
}

.view-title-mutiple-step-join-deal {
  margin: auto;
}

.view-title-mutiple-step-join-deal label {
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
}

.view-deal-item-process {
  margin-top: 15px;
  width: 100%;
}

.process-step {
  display: flex;
}

.step-bar {
  width: 21px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 12px;
  position: relative;
}

.step-bar-circle {
  margin-top: 6px;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  background-color: rgb(0, 153, 0);
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
  border: none;
}

.step-bar-circle:before {
  display: block;
  content: "";
  width: 21px;
  height: 21px;
  opacity: 0.2;
  background-color: rgb(0, 153, 0);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
}

.step-bar-line {
  margin-bottom: -6px;
  width: 1px;
  height: 100%;
  background-color: rgb(0, 153, 0);
  opacity: 0.2;
  z-index: 0;
}

.process-step.active .step-bar .step-bar-circle {
  opacity: 1;
}

.step-info {
  flex: 1 1 0%;
}

.step-info-status-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: rgb(120, 120, 120);
  margin-bottom: 15px;
}

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.tich-luy-select-with-search-wrapper.disabled {
  color: #767a7f;
  background-color: #0000001a;
  border: none;
}

.form-control.disabled {
  color: #767a7f;
  background-color: transparent;
  border: none;
}

.form-control-large {
  line-height: 2.5 !important;
  border-radius: 0.5rem !important;
}

.btn {
  text-transform: inherit;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  display: inline-block;
}

.btn-solid {
  padding: 8px 20px;
  color: #ffffff !important;
  letter-spacing: 0.05em;
  border: 2px solid var(--theme-deafult);
  background-image: linear-gradient(
    30deg,
    var(--theme-deafult) 50%,
    transparent 50%
  );
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.btn-warning {
  padding: 8px 20px;
  color: #212529 !important;
  letter-spacing: 0.05em;
  border: 2px solid #ffc107;
  background-image: linear-gradient(30deg, #ffc107 50%, transparent 50%);
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.btn-danger {
  padding: 8px 20px;
  color: #fff !important;
  letter-spacing: 0.05em;
  border: 2px solid #bd2130;
  background-image: linear-gradient(30deg, #c82333 50%, transparent 50%);
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.btn-dark {
  padding: 8px 20px;
  color: #343a40 !important;
  letter-spacing: 0.05em;
  border: 2px solid #343a40;
  background-image: linear-gradient(30deg, #343a40 50%, transparent 50%);
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.btn-light {
  padding: 8px 20px;
  color: #212529 !important;
  letter-spacing: 0.05em;
  border: 2px solid #e7e7e7;
  background-image: linear-gradient(30deg, #f8f9fa 50%, transparent 50%);
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.btn-border {
  border-radius: 20px;
}

.btn-small {
  padding: 5px 15px !important;
}

.btn-very-small {
  padding: 6px 15px !important;
  font-size: 11px;
  height: 37px;
}

.btn-outline-solid {
  padding: 8px 20px;
  letter-spacing: 0.05em;
  border: 1px solid var(--theme-deafult);
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  background-color: transparent;
  color: var(--theme-deafult) !important;
}

.btn-outline-dark {
  padding: 8px 20px;
  color: #343a40 !important;
  letter-spacing: 0.05em;
  border: 1px solid #343a40;
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  background-color: transparent;
}

.border {
  border-radius: 20px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-50 {
  border-radius: 50px;
}

.border-radius-right-12 {
  border-radius: 0 12px 12px 0;
}

.border-radius-left-12 {
  border-radius: 12px 0 0 12px;
}

.border-radius-left-20 {
  border-radius: 20px 0 0 20px;
}


.border-radius-top-20 {
  border-radius: 20px 20px 0 0;
}

.border-radius-12 {
  border-radius: 12px;
}

.border-radius-max {
  border-radius: 9999px;
}

.btn-disabled {
  color: #fff;
  background-color: #dddddd;
  border-color: #dddddd;
  cursor: not-allowed !important;
}

.step-info-divider {
  margin: 15px 0px;
  border-top: 1px solid rgb(213 209 209);
}

.product-box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  margin: 0 10px 20px !important;
  max-width: calc(50% - 20px);
  width: 100%;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.product-box .img-wrapper,
.product-wrap .img-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.product-box .img-wrapper .front {
  height: 108px;
}

.product-box .product-detail {
  padding-left: 8px;
  padding-bottom: 8px;
  background-color: #ffffff;
}

.product-box .product-detail .rating {
  padding-top: 8px;
}

.product-box .product-detail h6,
.product-box .product-info h6,
.product-wrap .product-detail h6,
.product-wrap .product-info h6 {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
  padding-top: 2px;
  padding-bottom: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box a {
  text-decoration: none;
}

.product-box .text-deal {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  display: block !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  text-overflow: ellipsis !important;
  height: 2.8em !important;
  color: #444444 !important;
  overflow: hidden !important;
  width: 90% !important;
  line-height: 1.3em !important;
  margin-top: 0px;
  font-weight: 400;
}

.theme-tab {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.theme-tab .tabs {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.zaui-page {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding: 40px 16px 96px 16px;
  /* fix tự động scroll lên top trên iphone, vì giá trị height và min-height của zalo đang khác nhau */
  overflow-y: auto;
  height: 100vh;
  min-height: 100vh;
}

.display-none {
  display: none;
}

.page::-webkit-scrollbar {
  display: none;
}

.theme-tab .tabs::-webkit-scrollbar {
  display: none;
}

.theme-tab .tab-title,
.theme-tab .tab-title2 {
  flex-basis: 100%;
  white-space: nowrap;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 25px;
  text-align: center;
  overflow-y: hidden;
  padding: 0;
}

.theme-tab .tab-border li {
  padding: 5px !important;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.theme-tab .tab-border li:not(:first-child) {
  margin-left: 10px;
}

.theme-tab .tab-title li.current,
.theme-tab .tab-title2 li.current {
  border-bottom: 2px solid var(--theme-deafult);
}

.theme-tab .tab-title .current a,
.theme-tab .tab-title2 .current a {
  color: var(--theme-deafult);
}

.theme-tab .tab-title.tab-border li.current {
  border: 1px solid var(--theme-deafult);
}

.theme-tab .tab-title a,
.theme-tab .tab-title2 a {
  text-transform: none;
  font-size: 15px;
  color: rgb(56, 56, 61);
  text-decoration: unset;
}

.theme-tab .tab-title li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
}

.title hr[role="tournament6"] {
  border: 0px solid;
  height: 1px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0)),
    color-stop(var(--theme-deafult)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    var(--theme-deafult),
    rgba(0, 0, 0, 0)
  );
  display: block;
  width: 25%;
  margin: 15px auto 30px auto;
}

.zaui-modal.hide-modal-main .zaui-modal-content-main {
  display: none;
}

.slide-img {
  width: 100%;
  height: auto;
  display: block;
}

.border-solid-1 {
  border: 1px solid #ddd;
}

.border-solid-1-active {
  border: 1px solid var(--theme-deafult);
}

.border-bottom-solid-1-dark {
  border-bottom: 1px solid #f5f5f5;
}

.border-025 {
  border-radius: 0.25rem;
}

.border-12 {
  border-radius: 12px;
}

.border-top-10 {
  border-radius: 10px 10px 0px 0px;
}

.block-container {
  margin-bottom: 15px;
}

.swiper-custom-container {
  position: relative;
}

.swiper-custom-button-prev {
  background-color: #0000002e;
  cursor: pointer;
  color: white;
  top: 45%;
  position: absolute;
  display: none;
}

.swiper-custom-button-next {
  background-color: #0000002e;
  cursor: pointer;
  color: white;
  top: 45%;
  right: 0;
  position: absolute;
  display: none;
}

.scrolling-wrapper {
  display: flex;
  /* gap: 12px; */
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.block-with-text-container {
  border-radius: 12px;
  border: solid 1px #ccc;
  padding-bottom: 15px;
  flex: none;
  overflow: hidden;
}

.block-with-text-line-1 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  display: block !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  text-overflow: ellipsis !important;
  color: #444 !important;
  overflow: hidden !important;
  line-height: 1.3em !important;
  margin-top: 5px;
  white-space: normal;
  height: 2.6em;
  padding: 0 10px 0 10px;
}

.block-with-text-line-2 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  display: block !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  text-overflow: ellipsis !important;
  color: #dc3545 !important;
  overflow: hidden !important;
  margin-top: 5px;
  white-space: normal;
  height: 1.3em;
  padding: 0 10px 0 10px;
}

.row-2-colum .block-with-text-line-2 {
  height: 2.3em;
}

.modal-collect-categorires .zaui-modal-content-description {
  text-align: center;
}

.merchant-cashback-text {
  padding: 10px;
  display: flex;
  color: #dc3545;
  font-size: 12px;
}

.collect-categories-text {
  padding: 10px;
  display: flex;
  color: #212836;
  font-size: 12px;
}

.home-block-merchant,
.home-block-collect-categories,
.block-with-text-vertical-container {
  margin: 0 6px 12px !important;
  flex: 0 0 calc(50% - 12px);
  /* flex: 0 0 calc(50% + 6px - 12px); */
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.home-block-collect-categories.selected {
  border: 1px solid var(--theme-deafult);
}

.home-block-merchant-image {
  height: 70px;
  display: flex;
}

.home-block-collect-categories-image {
  opacity: 0.5;
  height: 50px;
  display: flex;
  padding-top: 5px;
}

.home-block-collect-categories.selected .home-block-collect-categories-image {
  opacity: 1;
}

.home-block-collect-categories-image img {
  height: 40px;
  margin: auto;
}

.home-block-merchant-image img {
  margin: auto;
  width: 80%;
}

.row-2-colum {
  /* gap: 12px; */
  display: flex;
  flex-wrap: wrap;
}

.row-3-colum{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.row-3-colum .home-block-merchant-image img{
  width: 90%;
}

.row-3-colum .home-block-merchant-image{
  height: 50px;
  overflow-y: hidden;
}

.row-3-colum .merchant-cashback-text{
  padding-top: 0;
  justify-content: center;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-basis-100 {
  flex-basis: 100%;
}

.flex-basis-70 {
  flex-basis: 70%;
}

.flex-basis-30 {
  flex-basis: 30%;
}

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

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-fill {
  object-fit: fill;
}

.modal-merchant-detail .zaui-modal-content-cover {
  display: flex;
}

.modal-merchant-detail .zaui-modal-content-title {
  margin: 0;
}

.modal-merchant-detail .zaui-modal-content-main {
  padding-top: 0;
}

.modal-merchant-detail .zaui-modal-content-cover img {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  width: 50%;
}

.list-group {
  margin-top: 5px;
}

.list-group-item-title {
  font-weight: 500;
}

.zaui-list.item-m-b-20 .zaui-list-item:not(:last-child) {
  margin-bottom: 0;
}

.zaui-list {
  border: 1px solid #ebebeb;
  border-radius: 12px;
}

.html-inject-fix ol li {
  white-space: normal !important;
}

.html-inject-fix ul li {
  white-space: normal !important;
}

.j-c-center {
  justify-content: center;
}

.j-c-space-between {
  justify-content: space-between;
}

.modal-account-verify .zaui-modal-content {
  justify-content: center;
  /* height: 100%; */
}

.modal-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  margin-bottom: 12px;
}

.modal-account-verify .zaui-modal-content-title,
.modal-account-verify .zaui-modal-content-description {
  display: none;
}

.zaui-spinner-dot::after {
  background-color: var(--theme-deafult) !important;
}

.zaui-spinner-ring {
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(255, 255, 255, 0.0001) -89.96deg,
    rgba(255, 255, 255, 0.0001) 180.44deg,
    var(--theme-deafult) 258.75deg,
    var(--theme-deafult) 270deg,
    rgba(255, 255, 255, 0.0001) 270.04deg,
    rgba(255, 255, 255, 0.0001) 540.44deg
  ) !important;
}

.border-left-1 {
  border-left: 1px solid #ddd;
}

.list-order {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.list-order .list-order-item {
  display: flex;
  /* gap: 5px; */
  padding: 15px 5px 15px 10px;
}

.list-order .list-order-item:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}

.list-order .list-order-item .list-order-item-left {
  flex-basis: 20%;
  padding-top: 15px;
  margin-right: 5px;
}

.list-order .list-order-item .list-order-item-center {
  flex-basis: 60%;
  font-size: 12px;
  max-width: 100%;
}

.list-order .list-order-item .list-order-item-right {
  flex-basis: 20%;
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
}

.list-order .list-order-item.status-0 .list-order-item-status-text,
.list-order .list-order-item.status-0 .list-order-item-cashback-amount,
.modal-order-detail .text-status.status-0 {
  color: #ff8c00;
}

.list-order .list-order-item.status-2 .list-order-item-status-text,
.list-order .list-order-item.status-2 .list-order-item-cashback-amount,
.modal-order-detail .text-status.status-2 {
  color: #dc3545;
}

.list-order .list-order-item.status-1 .list-order-item-status-text,
.list-order .list-order-item.status-1 .list-order-item-cashback-amount,
.modal-order-detail .text-status.status-1 {
  color: var(--theme-deafult);
}

.page-orders {
  padding: 28px 0 96px 0;
}

.truncate {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  display: block !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  text-overflow: ellipsis !important;
  height: 1.5em !important;
  overflow: hidden !important;
}

.m-w-100 {
  max-width: 100%;
}
.m-w-full{
  max-width: 100%;
}

.m-w-70-percent {
  max-width: 70%;
}

.modal-order-detail .zaui-modal-content-cover {
  display: flex;
}

.modal-order-detail .zaui-modal-content-title {
  margin: 0;
}

.modal-order-detail .zaui-modal-content-main {
  padding: 0px 10px 20px 10px;
}

.modal-order-detail .zaui-modal-content-cover img {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  width: 50%;
}

.modal-order-detail .list-group-item {
  display: flex;
  padding: 0;
}

.modal-order-detail .list-group-item .col-product-name {
  padding: 5px;
  flex-basis: 37%;
  width: 100%;
  font-size: 12px;
}

.modal-order-detail .list-group-item .col-product-amount {
  padding: 5px;
  flex-basis: 26%;
  border-left: 1px solid #ddd;
  width: 100%;
  font-size: 12px;
}

.modal-order-detail .list-group-item .col-product-cashback {
  padding: 5px;
  flex-basis: 37%;
  border-left: 1px solid #ddd;
  width: 100%;
  font-size: 12px;
}

.modal-order-detail .list-group {
  margin-bottom: 10px;
}

.no-outline:focus {
  outline: none;
}

.p-l-5 {
  padding-left: 5px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.p-r-10 {
  padding-right: 10px;
}

.p-0{
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-16 {
  padding: 16px;
}

.p-20 {
  padding: 20px;
}

.p-t-0 {
  padding-top: 0;
}

.modal-data-loading .zaui-spinner {
  margin: auto;
}

.modal-select-with-search .zaui-modal-content-title,
.modal-select-with-search .zaui-modal-content-title {
  display: none;
}

.modal-select-with-search .zaui-select-header {
  min-height: 25px;
}

.modal-select-with-search .zaui-select-title {
  padding-bottom: 0;
  padding-top: 0;
}

.modal-select-with-search .zaui-select-option {
  padding: 16px 16px 16px 16px;
}

.modal-select-with-search .zaui-modal-content {
  width: calc(100vw - 30px);
}

.modal-select-with-search .container-header {
  padding-top: 18px;
  width: calc(100% - 66px);
  max-width: 440px;
  background-color: #ffffff;
  position: fixed;
  z-index: 1;
}

.modal-select-with-search .zaui-modal-content-main {
  padding: 0 20px 20px 20px;
}

.modal-select-with-search .zaui-select-options {
  margin-top: 100px;
}

.list-style-decimal {
  list-style: decimal;
}

.modal-tich-luy-home-popup-fullscreen .zaui-modal-content {
  background-color: transparent;
  border-radius: 0;
}

.modal-tich-luy-home-popup-fullscreen .zaui-modal-content-main {
  padding: 0;
  text-align: center;
}

.modal-tich-luy-home-popup-fullscreen .zaui-modal-content-title,
.modal-tich-luy-home-popup-fullscreen .zaui-modal-content-description {
  display: none;
}

.zaui-modal-content-title-hide {
  display: none;
}

.zaui-modal-content-description-hide {
  display: none;
}

.zaui-modal-content-main-padding-0 {
  padding: 0;
}

.zaui-modal-content-main-text-center {
  text-align: center;
}

.modal-tich-luy-home-popup-fullscreen .zaui-modal-content-cover {
  width: 100%;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  padding-bottom: 15px;
}

.modal-tich-luy-home-popup-fullscreen .zaui-modal-content-cover img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  max-width: 330px;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-info {
  color: #fff;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.tag-deposit {
  bottom: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}

#bottomNavigation {
  left: auto;
  max-width: 450px;
  height: fit-content;
}

.header-logo {
  z-index: 999;
  padding: 10px 10px 0px 0px;
  background-color: #ffffff;
  max-width: 450px;
  width: 100%;
  position: fixed;
  top: 0;
}

.header-logo .btn-back {
  padding-left: 10px;
  float: left;
}

.modal-merchant-detail-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.overflow-hidden {
  overflow: hidden;
}

.w-20px {
  width: 20px;
}

.w-30px {
  width: 30px;
}

.w-50px {
  width: 50px;
}

.w-120px {
  width: 120px;
}

.h-20px {
  height: 20px;
}

.h-30px {
  height: 30px;
}

.h-50px {
  height: 50px;
}

.h-80px {
  height: 80px;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.bottom-35 {
  bottom: 35px;
}

.bottom-40 {
  bottom: 40px;
}

.bottom-minus-20 {
  bottom: -20px;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.line-height-15 {
  line-height: 15px;
}

.line-height-25 {
  line-height: 25px;
}

.line-height-35 {
  line-height: 35px;
}

.background-color-solid {
  background-color: var(--theme-deafult) !important;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.text-line-max-4 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  display: block !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  text-overflow: ellipsis !important;
  height: 7rem !important;
  overflow: hidden !important;
  line-height: 1.5rem;
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-small {
  height: 0.5rem !important;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: var(--theme-deafult);
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

.bg-dark {
  background-color: #fafafa;
}

.hr-line-dark {
  border: 0;
  border-top: 1px solid #eee;
}

.modal-donation-topup .zaui-modal-content {
  font-size: 14px;
}

.modal-donation-topup-success .zaui-modal-content-description,
.modal-donation-topup-success .zaui-modal-content-title {
  display: none;
}

.modal-donation-topup-success .zaui-modal-content-main {
  padding: 0;
  text-align: center;
}

.cursor-pointer {
  cursor: pointer;
}

.zaui-input:hover,
.zaui-input:focus,
.zaui-input:focus-visible {
  border-color: var(--theme-deafult) !important;
}

.zaui-input-affix-wrapper-focused {
  border-color: var(--theme-deafult) !important;
}

.zaui-input-affix-wrapper:hover,
.zaui-input-affix-wrapper:focus,
.zaui-input-affix-wrapper:focus-visible {
  border-color: var(--theme-deafult) !important;
}

.zaui-input-textarea {
  min-height: auto;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-2-1-1 {
    grid-template-columns: 1fr 1fr;
  }

  #bottomNavigation {
    /* display: none; */
  }
}

@media (min-width: 1024px) {
  ::-webkit-scrollbar-track {
    background-color: #fafafa;
  }

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

  ::-webkit-scrollbar-thumb {
    background-image: linear-gradient(-45deg, #d6d8d4, #e7e9e7);
    border-radius: 50px;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-2-2-1 {
    grid-template-columns: 2fr 1fr;
  }

  #bottomNavigation {
    /* display: none; */
  }

  .swiper-custom-button-prev {
    display: block;
  }

  .swiper-custom-button-next {
    display: block;
  }
}

.zaui-btn-primary,
.zaui-btn-primary.zaui-btn-highlight {
  background-color: var(--btn-bg-color);
  color: var(--btn-text-color) !important;
}

.zaui-btn-primary:active,
.zaui-btn-primary.zaui-btn-highlight:active {
  background-color: var(--theme-deafult);
}

.tich-luy-select-with-search-wrapper {
  padding: 7px 12px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  border: 1px solid #b9bdc1;
  border-radius: 8px;
  margin: 4px 0px;
  margin-bottom: 0 !important;
  flex-flow: row;
}

.zaui-input-helper-text-content {
  text-align: lef;
}

.zalo-ui-list-item-title-word-wrap .zaui-list-item-title {
  white-space: normal;
}

.btn-paste-custom-merchant-redirect {
  height: 30px;
  min-width: 68px;
  padding: 0;
  top: 37px;
  right: 6px;
  position: absolute;
  border-radius: 5px;
  color: var(--theme-deafult) !important;
  background-color: #ffffff;
  border: 1px solid var(--theme-deafult);
}

.zaui-btn {
  border-radius: 12px;
}

.zaui-modal-content-actions.zaui-btn-primary,
.zaui-modal-content-action.zaui-btn-primary {
  min-width: 96px;
  padding: 8px 24px;
}

.zaui-modal-content-actions.zaui-btn-primary:hover,
.zaui-modal-content-action.zaui-btn-primary:hover {
  background-color: var(--theme-deafult);
}

/* .zaui-btn-tertiary,
.zaui-btn-tertiary.zaui-btn-highlight {
  color: var(--theme-deafult);
} */

.zaui-btn-secondary,
.zaui-btn-secondary.zaui-btn-highlight {
  color: var(--theme-deafult);
  background-color: #d3ffdf;
}

.zaui-btn-secondary:active,
.zaui-btn-secondary.zaui-btn-highlight:active {
  background-color: #d3ffdf;
}

.zaui-btn-primary.zaui-btn-outline {
  color: var(--theme-deafult) !important;
  background-color: #ffffff;
  border: 1px solid var(--theme-deafult);
  display: flex;
  align-items: center;
}

.zaui-btn-primary.zaui-btn-outline:active {
  background-color: #ffffff;
}

.zalo-ui-list-no-border{
  border: none;
}

@media (max-width: 767px) {
  .zaui-page,
  .page {
    padding-bottom: 200px;
  }
}

.zaui-modal-content-fullscreen .zaui-modal-content{
  max-width: 100vw;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    border-radius: none;
}

/* Class cho home-block-product tương tự home-block-merchant */
.home-block-product,
.home-block-product-categories {
  margin: 0 6px 12px !important;
  flex: 0 0 calc(50% - 12px);
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.home-block-product.selected {
  border: 1px solid var(--theme-deafult);
}

.home-block-product-image {
  height: 160px;
  display: flex;
  overflow: hidden;
}

.home-block-product-categories-image {
  opacity: 0.5;
  height: 50px;
  display: flex;
  padding-top: 5px;
}

.home-block-product-categories.selected .home-block-product-categories-image {
  opacity: 1;
}

.home-block-product-categories-image img {
  height: 40px;
  margin: auto;
}

.home-block-product-image img {
  margin: auto;
  width: 100%;
}

.home-block-product-name {
  /* color: #444444 !important; */
  overflow: hidden !important;
  height: 60px;
  display: flex;
}

.home-block-product-name div{
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  text-overflow: ellipsis !important;
  margin: auto;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  overflow: hidden;
}

.row-3-colum .home-block-product-image{
  height: 100px;
}

/* Modal product detail tương tự modal merchant detail */
.modal-product-detail .zaui-modal-content-cover {
  display: flex;
}

.modal-product-detail .zaui-modal-content-title {
  margin: 0;
}

.modal-product-detail .zaui-modal-content-main {
  padding-top: 0;
}

.modal-product-detail .zaui-modal-content-cover img {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  width: 50%;
}

.modal-product-detail-actions {
  position: absolute;
bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
}

.zaui-page.layout-bg{
  background-color: var(--layout-bg);
  background-image: var(--layout-bg-image);
}

.zaui-btn-tertiary, .zaui-btn-tertiary.zaui-btn-highlight{
  color: var(--link-color);
}
:root {
  /* Theme 1: Green */
  --green-layout-bg: #e8efdd;
  --green-navigate-bg: #d6e5bd;
  --green-navigate-text-color: #272c22;
  --green-link-color: #afd191;
  --green-btn-bg-color: #8eaf82;
  --green-btn-text-color: #ffffff;
  --green-header-text-color: #141415;
  --green-block-bg-color: #ffffff;
  --green-block-text-color: #141415;

  /* Theme 2: Pink */
  --pink-layout-bg: #fef9fc;
  --pink-navigate-bg: #ffcbe1;
  --pink-navigate-text-color: #9a5a75;
  --pink-link-color: #e680b3;
  --pink-btn-bg-color: #c16989;
  --pink-btn-text-color: #ffffff;
  --pink-header-text-color: #141415;
  --pink-block-bg-color: #ffffff;
  --pink-block-text-color: #141415;

  /* Theme 3: Orange */
  --orange-layout-bg: #fcefe3;
  --orange-navigate-bg: #ffdab4;
  --orange-navigate-text-color: #974555;
  --orange-link-color: #e3917e;
  --orange-btn-bg-color: #aa8157;
  --orange-btn-text-color: #ffffff;
  --orange-header-text-color: #141415;
  --orange-block-bg-color: #ffffff;
  --orange-block-text-color: #141415;

  /* Theme 4: Purple */
  --purple-layout-bg: #f2edf7;
  --purple-navigate-bg: #dcccec;
  --purple-navigate-text-color: #756B3;
  --purple-link-color: #b29cc9;
  --purple-btn-bg-color: #907ca5;
  --purple-btn-text-color: #ffffff;
  --purple-header-text-color: #141415;
  --purple-block-bg-color: #ffffff;
  --purple-block-text-color: #141415;

  /* Theme 5: Gray-Blue */
  --grayblue-layout-bg: #e3e5e8;
  --grayblue-navigate-bg: #cad0d7;
  --grayblue-navigate-text-color: #579581;
  --grayblue-link-color: #5f656d;
  --grayblue-btn-bg-color: #8a9aac;
  --grayblue-btn-text-color: #ffffff;
  --grayblue-header-text-color: #141415;
  --grayblue-block-bg-color: #ffffff;
  --grayblue-block-text-color: #141415;

  /* Theme 6: Gray */
  --gray-layout-bg: #fbf8f9;
  --gray-navigate-bg: #dedde7;
  --gray-navigate-text-color: #7437E;
  --gray-link-color: #807f8c;
  --gray-btn-bg-color: #74737e;
  --gray-btn-text-color: #ffffff;
  --gray-header-text-color: #141415;
  --gray-block-bg-color: #ffffff;
  --gray-block-text-color: #141415;

  /* Theme style 1 */
  --style-1-layout-bg: #ffffff;
  --style-1-navigate-bg: #e5e5e5;
  --style-1-navigate-text-color: #000000;
  --style-1-link-color: #fe9200;
  --style-1-btn-bg-color: #fe9200;
  --style-1-btn-text-color: #001858;
  --style-1-header-text-color: #14213d;
  --style-1-block-bg-color: #14213d;
  --style-1-block-text-color: #ffffff;
  --style-1-layout-bg-image: none;

/* Theme style 2 */
  --style-2-layout-bg: #000000;
  --style-2-navigate-bg: #ffffff;
  --style-2-navigate-text-color: #011627;
  --style-2-link-color: #ff9f1c;
  --style-2-btn-bg-color: #ff9f1c;
  --style-2-btn-text-color: #000000;
  --style-2-header-text-color: #fdfffc;
  --style-2-block-bg-color: #fdfffc;
  --style-2-block-text-color: #000000;
  --style-2-layout-bg-image: none;

/* Theme style 3 */
  --style-3-layout-bg: #FFE5EC;
  --style-3-navigate-bg: #171717;
  --style-3-navigate-text-color: #ffe5ec;
  --style-3-link-color: #fb6f92;
  --style-3-btn-bg-color: #fb6f92;
  --style-3-btn-text-color: #171717;
  --style-3-header-text-color: #1a1919;
  --style-3-block-bg-color: #1a1919;
  --style-3-block-text-color: #FFE5EC;
  --style-3-layout-bg-image: none;

/* Theme style 4 */
  --style-4-layout-bg: #ff9a9e;
  --style-4-navigate-bg: #171614;
  --style-4-navigate-text-color: #ff9a9e;
  --style-4-link-color: #f25757;
  --style-4-btn-bg-color: #f25757;
  --style-4-btn-text-color: #171614;
  --style-4-header-text-color: #f8f8f8;
  --style-4-block-bg-color: #f8f8f8;
  --style-4-block-text-color: #171614;
  --style-4-layout-bg-image: linear-gradient(rgb(255, 154, 158), rgb(250, 208, 196));

/* Theme style 5 */
  --style-5-layout-bg: #87f5f5;
  --style-5-navigate-bg: #ffe5f1;
  --style-5-navigate-text-color: #7E008A;
  --style-5-link-color: #7E008A;
  --style-5-btn-bg-color: #7E008A;
  --style-5-btn-text-color: #ffe5f1;
  --style-5-header-text-color: #7E008A;
  --style-5-block-bg-color: #ffe5f1;
  --style-5-block-text-color: #7E008A;
  --style-5-layout-bg-image: radial-gradient(rgb(135, 245, 245), rgb(255, 229, 241));

/* Theme style 6 */
  --style-6-layout-bg: #F8E5D2;
  --style-6-navigate-bg: #F3AC95;
  --style-6-navigate-text-color: #635241;
  --style-6-link-color: #635241;
  --style-6-btn-bg-color: #635241;
  --style-6-btn-text-color: #F8E5D2;
  --style-6-header-text-color: #635241;
  --style-6-block-bg-color: #F3AC95;
  --style-6-block-text-color: #635241;
  --style-6-layout-bg-image: linear-gradient(to right bottom, rgb(248, 229, 210), rgb(173, 247, 182));

/* Theme style 7 */
  --style-7-layout-bg: #ffffff;
  --style-7-navigate-bg: #fffffe;
  --style-7-navigate-text-color: #2b2c34;
  --style-7-link-color: #BF4A30;
  --style-7-btn-bg-color: #BF4A30;
  --style-7-btn-text-color: #fffffe;
  --style-7-header-text-color: #733C30;
  --style-7-block-bg-color: #733C30;
  --style-7-block-text-color: #fffffe;
  --style-7-layout-bg-image: url('https://images.unsplash.com/photo-1532484468512-fd9df0aa70f4?ixid=M3wxMTAwMjh8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDkwOTY5NDF8&ixlib=rb-4.1.0&q=80&fm=jpg&crop=entropy&fit=max&h=900');

/* Theme style 8 */
  --style-8-layout-bg: #ffffff;
  --style-8-navigate-bg: #ffffff;
  --style-8-navigate-text-color: #2b2c34;
  --style-8-link-color: #f24c3d;
  --style-8-btn-bg-color: #f24c3d;
  --style-8-btn-text-color: #ffffff;
  --style-8-header-text-color: #ffffff;
  --style-8-block-bg-color: #f88dad;
  --style-8-block-text-color: #ffffff;
  --style-8-layout-bg-image: url('https://images.unsplash.com/photo-1501358569487-cefca38b160b?ixid=M3wxMTAwMjh8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDkwOTc2ODB8&ixlib=rb-4.1.0&q=80&fm=jpg&crop=entropy&fit=max&h=900');
}

