/*================================================
[ Table of Contents ]

01: General CSS
  1.1: Variables
  1.2: Common CSS
02: custom scrollbar CSS
03: button CSS
04: padding CSS
05: margin CSS
06: font-size CSS
07: font-weight CSS
08: radius CSS
09: gap CSS
10: page-title CSS
11: input-field CSS
12: custom-pagination CSS
13: modal CSS
14: modal-bg CSS
15: search CSS
16: bottom-nav CSS
17: place-card CSS
18: hot items CSS
19: details-body CSS
20: facilities CSS
21: date Modal CSS
22: filter Modal CSS
23: toggle-switch CSS
24: menu CSS
25: main css 
26: dark-mode CSS

==================================================*/

/*===========================================================
01: General CSS
=============================================================*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* 1.1: Variables */
:root {
  --primary: #D3A12A;
  --secondary: #FFFFFF;
  --primary-text: #111111;
  --secondary-text: #78828A;
  --secondary-circle: #FFD100;
  --sky: #ed1c24;
  --success: #00C566;
  --alert: #E53935;
  --warning: #FACC15;
  --additional1: #6C6C6C;
  --additional2: #E3E7EC;
  --additional3: #F7F7F7;
  --additional4: #E9EBED;
  --additional5: #FF784B;
  --gray-10: #FDFDFD;
  --gray-20: #ECF1F6;
  --gray-30: #E3E9ED;
  --gray-40: #D1D8DD;
  --gray-50: #BFC6CC;
  --gray-60: #9CA4AB;
  --gray-70: #78828A;
  --gray-80: #66707A;
  --gray-90: #434E58;
  --gray-100: #171725;
}

/* 1.2: Common CSS */
body {
  width: 100%;
  max-width: 100%;
  font-family: 'Outfit', sans-serif;
}

body.dark-mode {
  background: var(--gray-100);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

a,
p,
i,
h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

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

textarea,
select,
input {
  border: 0;
  outline: none;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

::-moz-selection {
  color: white;
  background: var(--primary);
}

::selection {
  color: white;
  background: var(--primary);
}

.scroll-lock {
  overflow: hidden;
}

.shrink-0 {
  flex-shrink: 0;
}

.tournament-title {
  flex-shrink: 0;
  padding: 0px 24px 0px 0px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.flex-grow {
  flex-grow: 1;
}

.backface-hidden {
  backface-visibility: hidden;
}

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


/*===========================================================
02: custom scrollbar CSS
=============================================================*/
.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
}

.custom-scrollbar::-moz-scrollbar {
  width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: var(--gray-bg);
}

.custom-scrollbar::-moz-scrollbar-track {
  background-color: var(--gray-bg);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.custom-scrollbar::-moz-scrollbar-thumb {
  background: var(--primary);
}

/* scrollbar hide */
body::-webkit-scrollbar,
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
  width: 0;
  scrollbar-width: none;
}

body,
.scrollbar-hidden {
  scrollbar-width: none;
}

/*===========================================================
03: button CSS
=============================================================*/
/* .btn-primary {
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary);
  width: 100%;
  border-radius: 8px;
} */

.btn-primary:disabled {
  color: var(--gray-60);
  background: var(--gray-20);
}

.btn-primary-outline {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  border-radius: 32px;
}

.btn-primary-outline-square {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}

.btn-primary-outline:disabled {
  border-color: var(--gray-60);
}

/*===========================================================
04: padding CSS
=============================================================*/
.pt-04 {
  padding-top: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

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

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.p-24 {
  padding: 24px;
}

.p-16 {
  padding: 16px;
}

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

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

.pr-24 {
  padding-right: 24px;
}

/*===========================================================
05: margin CSS
=============================================================*/
.mb-04 {
  margin-bottom: 4px;
}

.mt-24 {
  margin-top: 24px;
}

.mx-24 {
  margin-left: 24px;
  margin-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-04 {
  margin-top: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-70 {
  margin-bottom: 70px;
}

/*===========================================================
06: font-size CSS
=============================================================*/

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

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

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

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

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

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

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

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fs-34 {
  font-size: 34px;
}

.fs-36 {
  font-size: 36px;
}

.fs-38 {
  font-size: 38px;
}

.fs-40 {
  font-size: 40px;
}

/*===========================================================
07: font-weight CSS
=============================================================*/
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

/*===========================================================
08: radius CSS
=============================================================*/
.rounded-full {
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*===========================================================
09: gap CSS
=============================================================*/
.gap-04 {
  gap: 4px;
}

.gap-6 {
  gap: 6px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-14 {
  gap: 14px;
}

.gap-16 {
  gap: 16px;
}

.gap-18 {
  gap: 18px;
}

.gap-20 {
  gap: 20px;
}

.gap-22 {
  gap: 22px;
}

.gap-24 {
  gap: 24px;
}

/*===========================================================
10: page-title CSS
=============================================================*/
.page-title {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 16px 24px 32px 24px;
  border: 0;
  align-items: center;
  background: white;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.page-title .back-btn {
  background: rgba(18, 18, 18, 0.08);
  height: 48px;
  width: 48px;
}

.page-title .main-title {
  grid-column: span 4;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

/*===========================================================
11: input-field CSS
=============================================================*/
.input-field {
  width: 100%;
  height: 52px;
  background: var(--gray-20);
  padding: 0 16px;
  border-radius: 16px;
  color: var(--primary-text);
  font-size: 14px;
  font-weight: 500;
}

.input-field::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-60);
}

/*===========================================================
12: custom-pagination CSS
=============================================================*/
.swiper-pagination .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  border-radius: 8px;
  background: var(--gray-40);
  opacity: 1;
  transition: all linear 0.3s;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--primary);
}

/*===========================================================
13: Pop Up modal CSS
=============================================================*/
.modal-body ul,
li,
p {
  font-size: 14px;
  line-height: 26px;
}

.modal-body .border-t {
  border-top: 1px solid var(--additional2);
}

/*===========================================================
13: modal CSS
=============================================================*/
.bottomModal .modal-dialog {
  margin: 0;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.bottomModal .modal-content {
  border-radius: 16px 16px 0 0;
}

.bottomModal .modal-body {
  padding: 0 24px 45px 24px;
}

.bottomModal .modal-header {
  padding: 0px;
  border: 0;
}

.bottomModal .modal-header .modal-close {
  border: 1.4px solid var(--secondary);
  height: 28px;
  width: 28px;
  position: absolute;
  right: 12px;
  top: 12px;
}

.bottomModal .modal-header img {
  border-radius: 12px 12px 0px 0px;
  width: 100%;
}

.bottomModal .modal-header .modal-title {
  grid-column: span 4;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-text);
}

/*===========================================================
14: modal-bg CSS
=============================================================*/
.modal .modal-content {
  border: 0;
}

.modalBg {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
}

/*===========================================================
15: search CSS
=============================================================*/
.search label,
.search .form-inner,
.search .message-search,
.search .help-search {
  background: var(--gray-20);
  padding: 0 16px;
}

.search .form-inner input,
.search label input {
  padding: 0;
}

.search .filter {
  padding-left: 8px;
  border-left: 1px solid var(--additional2);
}

/*===========================================================
16: bottom-nav CSS
=============================================================*/
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 40;
  background: white;
  padding: 0 24px;
  box-shadow: 10px 5px 10px 10px #e7e7e7;
}

.bottom-nav div {
  color: #000000;
  font-size: 10px;
  text-align: center;
}

.bottom-nav .container {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
}

.bottom-nav .router-link-active .gameshop-img {
  background-image: url('/assets/svg/bottom-nav/gameshop-active.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .gameshop-img {
  background-image: url('/assets/svg/bottom-nav/gameshop.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .router-link-active .tournament-img {
  background-image: url('/assets/svg/bottom-nav/tournament-active.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .tournament-img {
  background-image: url('/assets/svg/bottom-nav/tournament.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .router-link-active .casualgames-img {
  background-image: url('/assets/svg/bottom-nav/casualgames-active.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .casualgames-img {
  background-image: url('/assets/svg/bottom-nav/casualgames.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .router-link-active .my-account-img {
  background-image: url('/assets/svg/bottom-nav/my-account-active.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .my-account-img {
  background-image: url('/assets/svg/bottom-nav/my-account.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
}

.bottom-nav .router-link-active div {
  font-size: 10px;
  text-align: center;
  color: #D3A12A;
}

.bottom-nav .router-link-active .img-active {
  display: bloc;
}

.bottom-nav .img-inactive {
  display: none;
}

/*===========================================================
17: place-card CSS
=============================================================*/
.place-card .image span {
  height: 28px;
  width: 28px;
  background: white;
  position: absolute;
  top: 13px;
  right: 8px;
}

.place-card .content {
  margin-top: 8px;
}

.place-card .img-tag {
  padding: 5px 5px;
  background: #1d1919db;
  border-radius: 5px 5px 0px 0px;
  margin: -28px 24px 0px 30px;
  position: relative;
  z-index: 10;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.place-card .content h4 {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 600;
  padding-bottom: 4px;
}

.place-card .content .location {
  font-size: 10px;
  font-weight: 500;
  color: var(--secondary-text);
}

.place-card .content .price {
  margin-top: 8px;
}

.place-card .content .price h3 {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 700;
}

.place-card .content .price p {
  font-size: 12px;
  font-weight: 600;
  color: var(--warning);
}

.place-card .content .price p span {
  color: var(--secondary-text);
}

/*===========================================================
18: Hot items CSS
=============================================================*/
.hot .all-cards {
  overflow-x: auto;
}

.hot .item .image {
  width: 114px;
  height: auto;
}

.hot .item .original-price {
  position: relative;
  color: #ffffff;
  font-size: 8px !important;

  &::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    border-top: 1px solid rgb(244, 240, 240);
    transform: rotate(-360deg);
  }
}

.original-price {
  position: relative;
  color: #ffffff;
  font-size: 8px !important;

  &::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    border-top: 1px solid rgb(244, 240, 240);
    transform: rotate(-360deg);
  }
}

.hot .item .image .guide-img {
  width: 100%;
  height: 134px;
  opacity: 0.2;
}

.hot .item .rating {
  display: grid;
  padding: 5px 12px;
  background: var(--primary-text);
  border-radius: 30px;
  margin: -15px auto 0 auto;
  position: relative;
  z-index: 10;
  color: white;
  line-height: normal;
}

.hot .item .rating span {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.hot .tag {
  height: 14px;
  background: #FFD100;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 10px;
  padding: 0px 8px 0px 8px;
  border-radius: 0px 4px 0px 4px;
  color: var(--primary-text);
  font-weight: 700;
  text-align: right;
}

.hot .logo {
  width: 95px;
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 10px;
  padding: 0px 8px 0px 8px;
}

.hot .gameitem {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 70px;
  left: 30px;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-text);
}

.hot .discount {
  position: absolute;
  top: 95px;
  left: 35px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: line-through;
}

/* .hot .all-cards {
  overflow-x: auto;
}

.hot .item .image {
  width: 114px;
  height: auto;
}

.hot .item .image .guide-img {
  width: 100%;
  height: 134px;
  opacity: 0.2;
}

.hot .item .rating {
  padding: 5px 12px;
  background: var(--primary-text);
  border-radius: 30px;
  margin: -15px auto 0 auto;
  position: relative;
  z-index: 10; 

  padding: 5px;
  background: #000000;
  border-radius: 2px;
  margin: 5px;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 102px;
  color: #FFFFFF;
  text-align: center;
  height: 33px;
}

.hot .item .rating p {
  line-height: 5px !important;
}

.hot .item .rating span {
  font-weight: 400;
  color: white;
}

.hot .tag {
  height: 14px;
  background: #FFD100;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 10px;
  padding: 0px 8px 0px 8px;
  border-radius: 0px 4px 0px 4px;
  color: var(--primary-text);
  font-weight: 700;
  text-align: right;
}

.hot .logo {
  width: 95px;
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 10px;
  padding: 0px 8px 0px 8px;
}

.hot .gameitem {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 62px;
  left: 30px;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-text);
}

.hot .discount {
  position: absolute;
  top: 95px;
  left: 35px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: line-through;
} */

/*===========================================================
18: Game Card CSS
=============================================================*/
.gamecard .all-cards {
  overflow-x: auto;
  margin-top: 20px;
}

.gamecard .item .image {
  width: 258px;
  height: 220px;
}

.gamecard .item .image .guide-img {
  width: 100%;
  height: 219px;
}

.gamecard .item .rating {
  padding: 5px 12px;
  background: var(--primary-text);
  border-radius: 30px;
  margin: -15px auto 0 auto;
  position: relative;
  z-index: 10;
}

.gamecard .item .rating span {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.gamecard .item .content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

.gamecard .item .content h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-text);
  padding-top: 8px;
  padding-bottom: 16px;
}

.gamecard .item .content .location {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-90);
}

/*===========================================================
18: Upcoming Card CSS
=============================================================*/
.upcoming .all-cards {
  overflow-x: auto;
}

.upcoming .item .image {
  width: 258px;
  height: 125px;
}

.upcoming .item .image .guide-img {
  width: 100%;
  height: 219px;
}

.upcoming .item .rating {
  padding: 5px 12px;
  background: var(--primary-text);
  border-radius: 30px;
  margin: -15px auto 0 auto;
  position: relative;
  z-index: 10;
}

.upcoming .item .rating span {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.upcoming .item .content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

.upcoming .item .content h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-text);
  padding-top: 8px;
  padding-bottom: 16px;
}

.upcoming .item .content .location {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-90);
}

/*===========================================================
18: Watch Card CSS
=============================================================*/
.watchcard .all-cards {
  overflow-x: auto;
  margin-top: 0px;
}

.watchcard .item .image {
  width: 142px;
  height: auto;
}

.watchcard .item .image .guide-img {
  width: 100%;
  height: 99px;
}

.watchcard .item .rating {
  padding: 5px 12px;
  background: var(--primary-text);
  border-radius: 30px;
  margin: -15px auto 0 auto;
  position: relative;
  z-index: 10;
}

.watchcard .item .rating span {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.watchcard .item .content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

.watchcard .item .content h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-text);
  padding-top: 8px;
  padding-bottom: 16px;
}

.watchcard .item .content .location {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-90);
}

/*===========================================================
18: Coming up video CSS
=============================================================*/
.comingup-vdo {
  background: #E0E0E0;
  padding: 10px 10px;
}

.comingup-vdo .content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

.comingup-vdo .content .rating {
  font-size: 12px;
  font-weight: 600;
}

.comingup-vdo .image {
  width: 83px;
  height: 83px;
}

.comingup-vdo .content .location {
  color: var(--gray-90);
  font-size: 12px;
  font-weight: 500;
}

.comingup-vdo .card-title span {
  display: inline-block;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: 50px;
  background: #FFF2ED;
  color: var(--additional5);
}

/*===========================================================
18: Circle CSS
=============================================================*/
.circle .all-cards {
  overflow-x: auto;
}

.circle .item .image {
  width: 32px;
  height: auto;

}

.circle img {
  width: 32px;
  height: auto;

}

.circleModal .item .image,
.circle .item .image {
  height: 64px;
  width: 64px;
  background: var(--secondary-circle);
}

.circleeModal .item figcaption,
.circle .item figcaption {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-text);
}

/*===========================================================
18: Static Banner CSS
=============================================================*/
.static-banner {
  margin-top: 10px;
  width: 100%;
  height: auto;
}

.static-banner img {
  width: 100%;
  height: auto;
}

.product-banner img {
  width: 100%;
  height: 142px;
  margin-top: 20px;
}

/*===========================================================
18:Paragraph CSS
=============================================================*/
.paragraph {
  width: 100%;
  height: auto;
}

.paragraph h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

.paragraph p {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  opacity: 0.7;
  line-height: 18px;
}

.paragraph li {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  opacity: 0.7;
  list-style: disc;
  list-style-position: inside;
}

/*===========================================================
20: Join CSS
=============================================================*/
.join .all-cards {
  overflow-x: auto;
  /* margin-bottom: 70px; */
}

.join .card-item {
  padding: 10px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}

.join .card-item-tournament {
  border-radius: 8px;
}

.join .image {
  height: 165px;
  width: 165px;
  background: white;
  position: absolute;

}

.join .image-tournament {
  /* height: 200px; */
  width: 200px;
  background: white;
  position: absolute;

}

.join span {
  height: 14px;
  width: 100px;
  background: #FFD100;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 10px;
  padding: 0px 0px 0px 5px;
  border-radius: 0px 4px 0px 4px;
}

.join .content {
  margin-top: 8px;
  text-align: center;
}

.join .content h4 {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 600;
  padding-bottom: 5px;
}

.join .content-tournament {
  margin-top: 8px;
  text-align: left;
}

.join .content-tournament h4 {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 600;
  padding-bottom: 5px;
}

.join .content h3 {
  font-size: 12px;
  color: var(--primary-text);
  font-weight: 700;
  padding-bottom: 5px;
}

.join .content p {
  font-size: 10px;
  color: var(--primary-text);
  font-weight: 600;
  padding: 5px 0px;
}

/* .join .content p {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-text);
} */

.join .content .location {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-text);
}

.join .content .price {
  margin-top: 8px;
}

.join .content .price h3 {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 700;
}

.join button {
  display: inline-block;
  padding: 6px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  background: var(--primary);
  border: 1px solid var(--primary);
  text-align: center;
}

/*===========================================================
19: details-body CSS
=============================================================*/

.details-body .title {
  margin-bottom: 16px;
}

.details-body .title h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text);
}

.details-body .title button,
.details-body .title a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

/*===========================================================
20: facilities CSS
=============================================================*/
.facilities .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facilities .item .icon {
  height: 56px;
  width: 56px;
  background: var(--secondary);
  margin: auto;
}

.facilities .item p {
  padding-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-70);
}


/*===========================================================
21: date Modal CSS
=============================================================*/

.dateModal .modal-body .btns button {
  line-height: 52px;
  color: white;
  background: var(--primary);
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}

.dateModal .modal-body .btns .cancel-btn {
  background: transparent;
  color: var(--alert);
}

.dateModal .modal-header {
  border: 0;
}

.dateModal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-text);
}

/*===========================================================
22: filter Modal CSS
=============================================================*/
.filter {
  padding: 0px 24px;
}

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

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

.filterModal .modal-body {
  padding-bottom: 24px;
}

.filterModal .content-title {
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-text);
}

.filterModal .filter-range input {
  width: 110px;
  padding: 6px 0;
  border-radius: 16px;
  height: auto;
  border: 1px solid var(--additional2);
  background-color: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  outline: none;
}

.filterModal .filter-range .price-range {
  margin-top: 16px;
}

.filterModal .filter-range .ui-slider-handle {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 0;
  cursor: pointer;
  outline: none;
  top: -7px;
}

.filterModal .filter-range .ui-widget.ui-widget-content {
  border: none;
  height: 2px;
  background-color: var(--additional2);
  position: relative;
  border-radius: 22px;
}

.filterModal .filter-range .ui-slider-horizontal .ui-slider-range {
  background: var(--primary);
}

.filterModal .star-rating,
.filterModal .popular-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filterModal .star-rating .filter-label,
.filterModal .popular-filters .filter-label {
  padding: 7px 15px;
  border: 1px solid var(--additional2);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-text);
  border-radius: 24px;
}

.filterModal .star-rating .filter-label input,
.filterModal .popular-filters .filter-label input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.filterModal .popular-filters .filter-label:has(input:checked) {
  color: var(--primary);
  border-color: var(--primary);
}

.filterModal .star-rating .filter-label:has(input:checked) {
  border-color: var(--warning);
}

.filterModal .apply-filter-btn {
  font-size: 14px;
  padding: 12px 0;
}

.filterModal .clear-all-btn {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  text-align: center;
  color: var(--alert);
}

.filterModal .modal-dialog {
  margin: 0;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.filterModal .modal-content {
  border-radius: 16px 16px 0 0;
}

.filterModal .modal-header {
  display: grid;
  padding: 0px;
  border: 0;
}

.filterModal .modal-header .modal-close {
  border: 1.4px solid var(--primary-text);
  height: 28px;
  width: 28px;
  position: absolute;
  right: 12px;
  top: 12px;
}

.filter-header img {
  border-radius: 12px 12px 0px 0px;
  width: 100%;
}

.filterModal .modal-header .modal-title {
  grid-column: span 4;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-text);
  padding-top: 12px;
}

/*===========================================================
23: toggle-switch CSS
=============================================================*/

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

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

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-30);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch input:checked+.slider {
  background-color: var(--primary);
}

.toggle-switch input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/*===========================================================
24: menu CSS
=============================================================*/
/* menu css */
.wrapper .menu {
  background: #f9f9f9;
  position: fixed;
  width: 100%;
  height: 55px;
  top: 0;
  left: 0;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  z-index: 110;
  box-shadow: 0px 5px 10px 0px #e7e7e7;
}

.wrapper .m-menu__checkbox {
  display: none;
}

.wrapper label.m-menu__toggle {
  cursor: pointer;
}

.wrapper .menu .title {
  font-weight: 600;
  font-size: 16px;
}

.wrapper .m-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100vh;
  -moz-transform: translate3d(-450px, 0, 0);
  -o-transform: translate3d(-450px, 0, 0);
  -ms-transform: translate3d(-450px, 0, 0);
  -webkit-transform: translate3d(-450px, 0, 0);
  transform: translate3d(-450px, 0, 0);
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  -webkit-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 9999;
  overflow: hidden;
  background: white;
}

.wrapper .m-menu::-webkit-scrollbar {
  display: none;
}

.wrapper .m-menu.show {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.wrapper .m-menu__overlay {
  background: rgba(103, 103, 103, 0.5);
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 999;
  display: none;
}

.wrapper .m-menu__overlay.show {
  display: block;
}

.wrapper .btn-grp .mode-change input {
  opacity: 0;
  position: absolute;
}

.wrapper .btn-grp .mode-change .sun {
  display: none;
}

.wrapper .btn-grp .mode-change input:checked~.moon {
  display: none;
}

.wrapper .btn-grp .mode-change input:checked~.sun {
  display: block;
}

.wrapper .m-menu__header {
  padding: 16px;
  background: var(--primary);
  position: relative;
}

.wrapper .m-menu__header .m-menu__close {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.wrapper ul .m-menu__header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.wrapper .m-menu__header .m-menu__toggle {
  height: 36px;
  width: 36px;
}

.wrapper .m-menu__header .m-menu__header-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  grid-column: span 10;
  text-align: center;
  text-transform: capitalize;
}

.wrapper .m-menu__header .menu-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wrapper .m-menu__header .menu-user img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wrapper .m-menu__header .menu-user a {
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: white;
  text-transform: capitalize;
}

.wrapper .m-menu__header .menu-user h3 {
  font-size: 16px;
  line-height: 22px;
  color: white;
  display: flex;
  align-items: center;
}

.wrapper .m-menu .m-menu {
  -moz-transform: translate3d(480px, 0, 0);
  -o-transform: translate3d(480px, 0, 0);
  -ms-transform: translate3d(480px, 0, 0);
  -webkit-transform: translate3d(480px, 0, 0);
  transform: translate3d(480px, 0, 0);
}

.wrapper .m-menu ul {
  height: calc(100% - 85px);
  overflow-y: auto;
}

.wrapper .m-menu ul .menu-title {
  padding: 15px 15px 10px 15px;
  font-size: 16px;
  color: var(--primary-text);
  text-transform: capitalize;
  font-weight: 600;
}

.wrapper .m-menu ul::-webkit-scrollbar {
  display: none;
}

.wrapper .m-menu ul li a,
.wrapper .m-menu ul li .a-label__chevron {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 0 15px;
  line-height: 47px;
  text-decoration: none;
  color: var(--grey70);
  cursor: pointer;
  font-size: 16px;
  color: var(--primary-text);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  text-transform: capitalize;
}

.wrapper .m-menu ul li .a-label__chevron .icon,
.wrapper .m-menu ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: white;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--primary);
}

.wrapper .m-menu ul li .-invisible {
  border-bottom: 0;
}

.wrapper .m-menu .m-menu label.m-menu__toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border-bottom: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.wrapper .m-menu .m-menu label.m-menu__toggle:after {
  display: none;
}

.wrapper .m-menu__checkbox:checked~.m-menu__overlay {
  display: block;
}

.wrapper .m-menu__checkbox:checked~.m-menu {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*===============================================
25: main css 
================================================*/
/* appbar */
.appbar {
  text-align: center;
  background: var(--primary);
  padding: 15px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.appbar button,
.appbar a {
  background: transparent;
  text-transform: capitalize;
  font-size: 17px;
  color: white;
  display: flex;
  align-items: center;
}

.appbar .back-page-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.appbar h1 {
  font-size: 18px;
  color: white;
  text-transform: capitalize;
}

/* content */

.page-content {
  padding: 45px 15px 65px 15px;
}

.page-content .pages-title {
  padding: 15px 0 10px 0;
}

.page-content .pages-title h2 {
  font-size: 16px;
  color: var(--grey-40);
  line-height: 28px;
  text-transform: capitalize;
  font-weight: 600;
}

.page-content .page-list ul {
  background: var(--secondary);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.page-content .page-list ul li {
  padding: 6px 15px;
  border-bottom: 1px solid var(--grey-10);
}

.page-content .page-list ul li:last-child {
  border: 0;
}

.page-content .page-list ul li a {
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--grey-70);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.page-content .page-list ul li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--primary);
}


/*===========================================================
26: dark-mode CSS
=============================================================*/
.dark-mode .wrapper .m-menu {
  background: var(--gray-100);
}

.dark-mode .page-content .page-list ul {
  background: var(--gray-80);
}

.dark-mode .page-title,
.dark-mode .bottom-nav,
.dark-mode .modal-content {
  background: var(--gray-100);
}

.dark-mode .wrapper .m-menu ul li a,
.dark-mode .wrapper .m-menu ul li .a-label__chevron,
.dark-mode .wrapper .m-menu ul .menu-title,
.dark-mode .page-content .pages-title h2,
.dark-mode .page-content .page-list ul li a,
.dark-mode .page-title .main-title,
.dark-mode .filterModal .content-title,
.dark-mode .filterModal .star-rating .filter-label,
.dark-mode .filterModal .popular-filters .filter-label,
.dark-mode .dateModal .modal-header .modal-title,
.dark-mode .bottomModal .modal-header .modal-title {
  color: white;
}

.dark-mode .page-title .back-btn,
.dark-mode .bottomModal .modal-header .modal-close {
  background: rgba(255, 255, 255, 0.2);
}

.dark-mode .search img,
.dark-mode .page-title .back-btn img,
.dark-mode .bottomModal .modal-header .modal-close img,
.dark-mode .wrapper .m-menu ul li a img,
.dark-mode .wrapper .m-menu ul li .a-label__chevron img,
.dark-mode .page-content .page-list ul li a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(322deg) brightness(102%) contrast(102%);
}

.dark-mode .search label,
.dark-mode .search .form-inner,
.dark-mode .search .message-search,
.dark-mode .search .help-search .dark-mode .search input {
  background: var(--gray-80);
  color: white;
}

.dark-mode .input-field {
  background: var(--gray-80);
  color: white;
}

.dark-mode .auth .social-btn {
  color: white;
  border-color: white;
}

.dark-mode .facilities .item .icon {
  background: var(--gray-60);
}

header {
  /* background: #333;
  color: #fff;
  padding: 10px 0; */

  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: white;
  padding: 0 12px;
  box-shadow: 10px 5px 10px 10px #e7e7e7;
  position: fixed;
  top: 0;
}

.headerProfile {
  /* background: #333;
  color: #fff;
  padding: 10px 0; */

  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 40;
  background: white;
  padding: 0 12px;
  box-shadow: none;
  position: fixed;
  top: 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; */
}

.logo {
  font-size: 15px;
  font-weight: 700;
  color: #221E20;
}

.nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav ul li {
  margin-left: 20px;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

a .menu-toggle .bar {
  height: 3px;
  width: 25px;
  background: gray;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
  }

  .nav ul {
    flex-direction: column;
  }

  .nav ul li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }
}

.card_header {
  position: absolute;
  right: 0;
  top: 0;
  float: right;
  margin-left: 0.5rem;
  background-color: rgba(255, 212, 36, .9);
  font-size: 10px;
  font-weight: bold;
  color: black;
  padding: 0px 2px 0px 3px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.d-inline-block {
  font-size: 12px;
  display: inline-block !important;
}

.d-unline-block {
  font-size: 10px !important;
}

.btn-share img{
  width: 50%;
}

.btn-create img{
  width: 50%;
}

.btn-create {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #D3A12A !important;
  font-size: 16px;
  font-weight: 600;
  background: none;
  width: 100%;
  height: 48px;
  border-radius: 4px !important;
  border-color: #D3A12A;
}

.btn-create:hover {
  color: #FBE39B !important;
  background: #D3A12A;
}

.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 40;
  background: white;
  padding: 0 24px;
  /* box-shadow: 10px 5px 10px 10px #e7e7e7; */
}

.router-link {
  display: contents !important;
  padding: 6px 16px !important;
  color: var(--secondary) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  border: 0px solid var(--primary) !important;
  text-align: left !important;
  justify-content: center !important;

}

.invoice-card-header {
  display: flex;
  flex-direction: column;
  /* position: absolute; */
  padding: 5px 0;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* min-height: 25em; */
  /* width: 22em; */
  background-color: #fff;
  /* border-radius: 5px;
  box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.15); */
}

.invoice-card-header>div {
  margin: 5px 0;
}

.invoice-card {
  display: flex;
  flex-direction: column;
  /* position: absolute; */
  padding: 12px 16px 12px 16px;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* min-height: 25em; */
  /* width: 22em; */
  background-color: #F9F9F9;
  border-color: rgba(224, 224, 224, 1);
  border-radius: 1px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}


.invoice-card>div {
  margin: 5px 0;
}

.invoice-card-price {
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 19px !important;
}

.invoice-card-link {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 19px !important;
  color: #ED1C24 !important;
  border-radius: 0px !important;
  border: 0px solid var(--primary) !important;
  padding: 0px !important;
}

.invoice-title {
  flex: 3;
}

.invoice-title #date {
  display: block;
  margin: 8px 0;
  font-size: 12px;
}

.invoice-title #main-title {
  display: flex;
  justify-content: space-between;
  /* margin-top: 2em; */
}

.invoice-title #main-title h4 {
  /* letter-spacing: 2.5px; */
  line-height: 32px;
  font-size: 24px;
  font-weight: 400;
}

.invoice-title #main-title h5 {
  /* letter-spacing: 2.5px; */
  line-height: 17.78px;
  font-size: 15px;
  font-weight: 600;
}

.invoice-title span {
  color: rgba(0, 0, 0, 0.4);
}

.invoice-details {
  flex: 1;
  /* border-top: 0.5px dashed grey;
  border-bottom: 0.5px dashed grey; */
  display: flex;
  align-items: center;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
}

.invoice-table a {
  color: rgba(34, 30, 32, 1);
}

.invoice-table thead tr td {
  font-size: 12px;
  letter-spacing: 1px;
  color: grey;
  padding: 8px 0;
}

.invoice-table thead tr td:nth-last-child(1),
.row-data td:nth-last-child(1),
.calc-row td:nth-last-child(1) {
  text-align: right;
}

.invoice-table tbody th {
  padding: 8px 0;
  letter-spacing: 0;
  color: #221E20;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
}

.invoice-table tbody td {
  padding: 8px 0;
  letter-spacing: 1.5px;
  color: #221E20;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
}

.invoice-table .row-data #unit {
  text-align: center;
}

.invoice-table .row-data span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.invoice-table .row-data .content {
  display: grid;
  justify-content: space-between;
}

.invoice-footer {
  /* flex: 1; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding-right: 12px; */
}

.invoice-footer button {
  border-radius: 21px !important;
  padding: 8px 16px 8px 16px !important;
  gap: 10px;
  width: 87px;
  height: 30px;
}

.invoice-footer #later {
  margin-right: 5px;
}

.radio-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.radio-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.banner-image {
  width: 100% !important;
  height: 147px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Profile container */
.profile {
  margin-right: 0px;
  padding-right: calc(var(--bs-gutter-x)* .5);
  margin-top: 20px;
}

/* Profile sidebar */
.profile-sidebar {
  padding: 20px 0 10px 0;
  border-radius: 4px 0px 0px 0px;
  background: rgba(244, 244, 244, 1);
  height: 134px;
}

.profile-sidebar-payment-success {
  padding: 20px 0 10px 0;
  border-radius: 4px 0px 0px 0px;
  background: none;

}

.portlet {
  padding: 12px 0px 12px 0px;
  gap: 10px;
  border-radius: 4px 0px 0px 0px;
}

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

.profile-userpic-payment-success {
  text-align: center;
}

.profile-userpic-payment-success img {
  float: none;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
}

.profile-userpic img {
  float: none;
  margin: 0 auto;
  /* width: 50%;
  height: 50%; */
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
}

.profile-usertitle {
  text-align: center;
  margin-top: 20px;
}

.profile-usertitle-name {
  color: #5a7391;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}

.profile-usertitle-job {
  /* text-transform: uppercase;
  color: #5b9bd1;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px; */
  font-family: Rubik;
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  color: rgba(92, 184, 62, 1);
}

.profile-usertitle-job-fail {
  /* text-transform: uppercase;
  color: #5b9bd1;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px; */
  font-family: Rubik;
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  color: red;
}

.profile-userbuttons {
  text-align: center;
  margin-top: 10px;
}

.profile-userbuttons .btn {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 15px;
  margin-right: 5px;
}

.profile-userbuttons .btn:last-child {
  margin-right: 0px;
}

.profile-usermenu {
  margin-top: 10px;
}

.profile-usermenu ul li {
  border-bottom: 1px solid #f0f4f7;
}

.profile-usermenu ul li:last-child {
  border-bottom: none;
}

.profile-usermenu ul li a {
  color: #93a3b5;
  font-size: 14px;
  font-weight: 400;
}

.profile-usermenu ul li a i {
  margin-right: 8px;
  font-size: 14px;
}

.profile-usermenu ul li a:hover {
  background-color: #fafcfd;
  color: #5b9bd1;
}

.profile-usermenu ul li.active {
  border-bottom: none;
}

.profile-usermenu ul li.active a {
  color: #5b9bd1;
  background-color: #f6f9fb;
  border-left: 2px solid #5b9bd1;
  margin-left: -2px;
}

/* Profile Content */
.profile-content {
  padding: 20px;
  background: #fff;
  min-height: 460px;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FBE39B;
  background-color: #58595b;
  color: #FBE39B;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  outline: none;
}

.btn-share:hover {
  background-color: #FBE39B;
  /* Hover background color */
  color: #ffffff;
  /* Hover icon color */
}

.btn-share:focus {
  outline: none;
  /* Removes the default outline on focus */
}

.faq-section {
  width: 100%;
  /* margin: 0 auto; */
}

.faq-section h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  color: rgba(137, 137, 137, 1);
}

.faq-item {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px auto;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 17.78px;
  color: #342906;
}

.faq-answer {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(52, 41, 6, 1);
  font-weight: 400;
  /* padding: 10px;
  background-color: #f9f9f9; */
}

.arrow {
  font-size: 14px;
  color: #333;
}

.faq-answer-enter-active,
.faq-answer-leave-active {
  transition: opacity 0.5s;
}

.faq-answer-enter,
.faq-answer-leave-to {
  opacity: 0;
}

/* The full-page container */
.spinner-container {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
  height: 100vh;
  position: relative;
  text-align: center;
  /* Full height of the viewport */
}

/* The spinner itself */
.spinner {
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid #D3A12A;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  /* Rotation animation */
}

/* Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.check-game-account {
  border-radius: 17.22px;
  width: Hug(136px) px;
  height: Hug(34px) px;
  padding: 8px 16px 8px 16px;
  border-radius: 17.22px;
  opacity: 0px;
  background: #5CB83E4D;
}

.check-game-account-danger {
  border-radius: 17.22px;
  width: Hug(136px) px;
  height: Hug(34px) px;
  padding: 8px 16px 8px 16px;
  border-radius: 17.22px;
  opacity: 0px;
  background: red;
}

.modal.show .modal-dialog {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
}

iframe {
  border: 0;
  position: static;
  width: 100% !important;
}

.download {
  font-family: Noto Sans;
  font-size: 10px;
  font-weight: 400;
  line-height: 13.62px;
  text-align: left;
  color: #D3A12A;
}

.share {
  font-family: Noto Sans;
  font-size: 10px;
  font-weight: 400;
  line-height: 13.62px;
  text-align: left;
  color: #D3A12A;
}

.place-card img {
  min-height: 135px;
  max-height: 300px;
}

.four {
  /* width: 32.26%;
  max-width: 32.26%; */
}


/* COLUMNS */

.col {
  display: grid;
  float: left;
  margin: 1% 0 1% 1.6%;
}

.col:first-of-type {
  margin-left: 0;
}

/* CLEARFIX */

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

/* .cf {
    *zoom: 1;
} */

/* FORM */

.radio .plan input,
.radio .payment-plan input,
.radio .payment-type input {
  display: none;
}

.radio label {
  position: relative;
  color: #fff;
  background-color: #D9D9D9;
  font-size: 12px;
  text-align: center;
  width: 100%;
  height: auto;
  /* line-height: 150px; */
  display: block;
  cursor: pointer;
  /* border: 3px solid transparent; */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 7px;
}

.radio img {
  width: 28px;
  height: 21px;
  padding: 5px;
}

.radio .header {
  width: 100%;
  height: 55px;
  font-weight: 600;
  font-size: 15px;
  color: black;
}

.radio .footer {
  width: 100%;
  height: 30px;
  background: #000000;
  padding: 2px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
}

.radio input:checked+label .footer {
  background: #D3A12A;
}

.radio .plan input:checked+label,
.radio .payment-plan input:checked+label,
.radio .payment-type input:checked+label {
  border: 2px solid #D3A12A;
  background-color: #f8edee;
}

.radio .plan input:checked+label:after,F
.radio .payment-plan input:checked+label:after,
.radio .payment-type input:checked+label:after {
  content: "\2713";
  width: 18px;
  height: 18px;
  /* line-height: 40px; */
  border-radius: 100%;
  /* border: 2px solid #333; */
  background-color: #D3A12A;
  z-index: 900;
  position: absolute;
  top: -10px;
  right: -10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

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

.word-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .word-wrap {
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    margin: 0;
  }

  .place-card img {
    min-height: 135px;
    height: 145px;
  }

  .banner-image {
    width: 100% !important;
    height: 147px !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Optional: Responsive design */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .word-wrap {
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    width: 130px;
    margin: 0;
  }

  .place-card img {
    min-height: 135px;
    height: 145px;
  }

  .banner-image {
    width: 100% !important;
    height: 147px !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

input.form-control {
  color: black !important;
  background-color: white;
}

.receipt-container {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}

.receipt-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.receipt-footer {
  color: white;
  text-align: center;
  padding: 10px 0;
}

.product-paragraph {
  width: 100%;
  height: auto;
  margin-top: 200px;
  margin-bottom: 200px;
}

.product-banner{
  position: fixed;
  /* top: 0;          */
  left: 0;      
  width: 100%;    
  background-color: #fff;
  color: white;
  padding: 10px;
  z-index: 999; 
}