/* ---------------- Web fonts ------------------ */
@font-face {
  font-family: "Cooperative";
  src: url("../webfonts/cooperative-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cooperative";
  src: url("../webfonts/cooperative-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ---------------- Basic css ------------------ */
html {
  font-size: 0.694vw;
  overflow-x: hidden;
}
@media (min-width: 1450px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 2.415vw;
  }
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
}
a:hover {
  color: inherit;
}

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

/* body */
body {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.06rem;
  color: #fff;
  background: #0e0e0e;
  padding: 0 !important;
}

.container {
  max-width: 136rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .container {
    max-width: 74rem;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 55rem;
  }
}

.title_box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .title_box {
    padding-bottom: 3rem;
  }
}

.title_xl {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 110%;
  letter-spacing: 0.15rem;
}
@media (max-width: 991px) {
  .title_xl {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .title_xl {
    font-size: 3rem;
  }
}

.title_md {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 125%;
}
@media (max-width: 767px) {
  .title_md {
    font-size: 2.4rem;
  }
}

.title_sm {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 120%;
}
@media (max-width: 767px) {
  .title_sm {
    font-size: 2.1rem;
  }
}

.subtitle {
  font-family: "Cooperative", sans-serif;
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 400;
  font-size: 2rem;
  line-height: 170%;
  letter-spacing: -2%;
  padding-top: 1.4rem;
}
@media (max-width: 767px) {
  .subtitle {
    font-size: 1.8rem;
  }
}

.title_r_border {
  padding-right: 2.4rem;
  position: relative;
}
.title_r_border::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 4rem;
  background: #da232d;
}
@media (max-width: 767px) {
  .title_r_border::before {
    height: 3rem;
  }
}

.button {
  font-size: 1.6rem;
  font-weight: 400;
  color: #f9f9ff;
  background: #212121;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  transition: 0.2s all ease;
  position: relative;
  outline: none;
}
@media (max-width: 991px) {
  .button {
    font-size: 1.5rem;
    padding: 1rem 1.8rem;
  }
}
.button img {
  width: 2rem;
}
.button .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.button .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.button .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.button .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.button:hover, .button.active {
  background: radial-gradient(#e14638, #da232d, #e14638);
  border-color: #e76a4c;
}
.button:hover span, .button.active span {
  border-color: #fde9bb;
}

.button_red {
  width: 15.4rem;
  height: 3.8rem;
  padding: 0.6rem 2rem;
  justify-content: center;
  color: #f5f6ff;
  background: #f02731;
  border: 1px solid #f23d46;
}
@media (max-width: 767px) {
  .button_red {
    width: 14rem;
  }
}
.button_red .border_tl {
  top: -0.1rem;
  left: -0.1rem;
}
.button_red .border_tr {
  top: -0.1rem;
  right: -0.1rem;
}
.button_red .border_bl {
  bottom: -0.1rem;
  left: -0.1rem;
}
.button_red .border_br {
  bottom: -0.1rem;
  right: -0.1rem;
}
.button_red:hover {
  background: #281415;
  border-color: #651418;
}
.button_red:hover span {
  border-color: #da232d;
}

.input_item {
  text-align: right;
}
.input_item label {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #cecece;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.input_item label span {
  color: #c22129;
}
.input_item .input_wrap {
  position: relative;
}
.input_item .input_wrap .form_field {
  width: 100%;
  height: 4.4rem;
  display: block;
  text-align: right;
  font-size: 1.4rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  background: #212121;
  color: #d3d3d3;
  text-align: right;
  border: 1px solid #303030;
  padding: 1rem 1.2rem;
  outline: none;
  resize: none;
}
.input_item .input_wrap .form_field::placeholder {
  color: #d3d3d3;
  opacity: 1;
}
.input_item .input_wrap .form_field:focus {
  border-color: #3f1717;
}
.input_item .input_wrap textarea {
  padding: 1.2rem 1.2rem !important;
  height: 14.8rem !important;
}
@media (max-width: 767px) {
  .input_item .input_wrap textarea {
    height: 12rem !important;
  }
}
.input_item .input_wrap .date_input {
  direction: ltr;
}
.input_item .input_wrap .select_field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/down.svg");
  background-repeat: no-repeat;
  background-position: 1.2rem center;
  background-size: 2rem;
  padding-left: 3.6rem;
  cursor: pointer;
}
.input_item .input_wrap .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.input_item .input_wrap .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.input_item .input_wrap .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.input_item .input_wrap .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.input_item .textarea_wrap .border_tr,
.input_item .textarea_wrap .border_tl,
.input_item .textarea_wrap .border_br,
.input_item .textarea_wrap .border_bl {
  width: 1.8rem;
  height: 1.6rem;
}

.modal {
  z-index: 999999;
  background: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
  max-width: 83rem;
}
@media (max-width: 991px) {
  .modal-dialog {
    max-width: 65rem;
  }
}
@media (max-width: 767px) {
  .modal-dialog {
    max-width: 50rem;
  }
}
.modal-dialog .modal-content {
  background: #080808;
  border-radius: 0rem;
}
.modal-dialog .modal-content .modal_body {
  padding: 6rem 6rem;
}
@media (max-width: 991px) {
  .modal-dialog .modal-content .modal_body {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .modal-dialog .modal-content .modal_body {
    padding: 3rem 1.5rem;
  }
}
.modal-dialog .modal-content .modal_body .modal_title h3 {
  color: #f5f5f5;
  letter-spacing: 0.05rem;
}
.modal-dialog .modal-content .modal_body .modal_text {
  padding-top: 4.5rem;
}
@media (max-width: 767px) {
  .modal-dialog .modal-content .modal_body .modal_text {
    padding-top: 3rem;
  }
}
.modal-dialog .modal-content .modal_body .modal_text .input_item {
  margin-bottom: 1.6rem;
}
.modal-dialog .modal-content .modal_body .modal_text .input_item label {
  margin-bottom: 0.8rem;
}
.modal-dialog .modal-content .modal_body .done_btn {
  padding-top: 2.6rem;
}
@media (max-width: 767px) {
  .modal-dialog .modal-content .modal_body .done_btn {
    padding-top: 1.6rem;
  }
}

.swiper-pagination-bullet {
  width: 1.2rem;
  height: 0.6rem;
  background: #818081;
  border-radius: 3rem;
  margin: 0rem 0.3rem !important;
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 4rem;
  background: #a91b23;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 3rem;
  }
}

.custom_select {
  width: 100%;
  position: relative;
}
.custom_select .select_btn {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #d4d4d4;
  width: 100%;
  height: 4.4rem;
  background: #262626;
  border: 1px solid #353535;
  padding-left: 1rem;
  padding-right: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.custom_select .select_btn .arrow {
  transition: 0.2s all ease;
}
.custom_select .select_btn .arrow img {
  width: 2rem;
}
.custom_select .select_btn .border_tl {
  width: 0.4rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.custom_select .select_btn .border_tr {
  width: 0.4rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.custom_select .select_btn .border_bl {
  width: 0.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.custom_select .select_btn .border_br {
  width: 0.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.custom_select .select_btn:focus {
  border-color: #3f1717;
}
.custom_select .select_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 25rem;
  overflow: auto;
  background: #666666;
  border: 1px solid #7e7e7e;
  margin-top: 1rem;
  display: none;
  z-index: 2026;
}
.custom_select .select_dropdown li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 132%;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #7e7e7e;
  text-align: right;
  cursor: pointer;
  transition: 0.2s all ease;
}
.custom_select .select_dropdown li:last-child {
  border-bottom: none;
}
.custom_select .select_dropdown li:hover {
  background: #f02731;
  color: #fff;
}
.custom_select.open .arrow {
  transform: rotate(180deg);
}
.custom_select.open .select_dropdown {
  display: block;
}

.calendar-wrapper {
  position: relative;
}
.calendar-wrapper .calendar-input {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #d4d4d4;
  width: 100%;
  height: 4.4rem;
  background: #262626;
  border: 1px solid #353535;
  padding-left: 1rem;
  padding-right: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.calendar-wrapper .calendar-input .calendar-arrow {
  transition: 0.2s all ease;
}
.calendar-wrapper .calendar-input .calendar-arrow img {
  width: 2rem;
}
.calendar-wrapper .calendar-input .border_tl {
  width: 0.4rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.calendar-wrapper .calendar-input .border_tr {
  width: 0.4rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.calendar-wrapper .calendar-input .border_bl {
  width: 0.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.calendar-wrapper .calendar-input .border_br {
  width: 0.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.calendar-wrapper .calendar-input:focus {
  border-color: #3f1717;
}
.calendar-wrapper .calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: auto;
  background: #666666;
  border: 1px solid #7e7e7e;
  padding: 1.2rem 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  display: none;
  z-index: 2030;
}
@media (max-width: 991px) {
  .calendar-wrapper .calendar-dropdown {
    padding: 1.2rem 0.6rem;
  }
}
.calendar-wrapper .calendar-dropdown .calendar-header {
  font-family: "Cooperative", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.calendar-wrapper .calendar-dropdown .calendar-header .month-year {
  font-weight: 700;
}
.calendar-wrapper .calendar-dropdown .calendar-header .cal-arrow {
  font-family: "Cooperative";
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  font-size: 2.2rem;
  font-weight: 500;
  color: #f02731;
  cursor: pointer;
}
.calendar-wrapper .calendar-dropdown .calendar-days {
  font-family: "Cooperative", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #fee9ea;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.6rem;
}
.calendar-wrapper .calendar-dropdown .calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.calendar-wrapper .calendar-dropdown .calendar-dates span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #f2f2f2;
  text-align: center;
  display: inline-block;
  padding: 0.4rem;
  cursor: pointer;
}
.calendar-wrapper .calendar-dropdown .calendar-dates span:hover {
  background: #f02731;
  color: #fff;
}
.calendar-wrapper .calendar-dropdown .calendar-dates span.muted {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 991px) {
  .calendar-wrapper .calendar-dropdown .calendar-dates span {
    padding: 0.4rem 0.1rem;
  }
}
.calendar-wrapper.open .calendar-arrow {
  transform: rotate(180deg);
}

.copy_btn img {
  width: 2rem;
}
.copy_btn.copied {
  opacity: 0.6;
  pointer-events: none;
}

.custom_checkBox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.custom_checkBox .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
  border: 1px solid #ffffff;
  display: block;
  border-radius: 0.3rem;
  margin: 0;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}
.custom_checkBox .form-check-input:focus {
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}
.custom_checkBox .form-check-input:checked[type=checkbox] {
  background-image: url(../img/check-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem;
  background-color: transparent;
  border-color: #fff;
}
.custom_checkBox label {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: right;
  cursor: pointer;
  margin: 0;
}
.custom_checkBox label img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
}

.page_title {
  padding-bottom: 5.2rem;
  text-align: center;
}
.page_title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.3rem;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #68181c;
  -webkit-text-stroke: 0.3px #f02731;
  position: relative;
}
.page_title h2::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: #68181c;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
}
@media (max-width: 991px) {
  .page_title h2 {
    font-size: 3.8rem;
    letter-spacing: 0.2rem;
    -webkit-text-stroke: 0.2px #f02731;
  }
}
@media (max-width: 767px) {
  .page_title h2 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .page_title {
    padding-bottom: 4rem;
  }
}

.language_dropdown {
  position: relative;
}
.language_dropdown .lang-toggle {
  width: 5rem;
  height: 5.2rem;
  background: #080808;
  border: none;
  outline: none;
  padding: 0rem;
  position: relative;
  cursor: pointer;
  transition: 0.2s all ease;
}
.language_dropdown .lang-toggle img {
  width: 2.4rem;
  height: 1.75rem;
  object-fit: cover;
}
.language_dropdown .lang-toggle .border_tl {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #6e6e6e;
  border-left: 1px solid #6e6e6e;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.language_dropdown .lang-toggle .border_tr {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #6e6e6e;
  border-right: 1px solid #6e6e6e;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.language_dropdown .lang-toggle .border_bl {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #6e6e6e;
  border-left: 1px solid #6e6e6e;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.language_dropdown .lang-toggle .border_br {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #6e6e6e;
  border-right: 1px solid #6e6e6e;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.language_dropdown .lang-toggle:hover {
  background: #323232;
}
.language_dropdown .lang-toggle:hover span {
  border-color: #fff;
}
.language_dropdown .lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 14.5rem;
  max-height: 20rem;
  list-style: none;
  background: #666666;
  border: 1px solid #7e7e7e;
  margin-top: 1rem;
  display: none;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  z-index: 1025;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.language_dropdown .lang-menu::-webkit-scrollbar {
  display: none;
}
.language_dropdown .lang-menu.active {
  display: block;
}
.language_dropdown .lang-menu li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 132%;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #7e7e7e;
  text-align: right;
  cursor: pointer;
  transition: 0.2s all ease;
}
.language_dropdown .lang-menu li:last-child {
  border-bottom: none;
}
.language_dropdown .lang-menu li:hover {
  background: #f02731;
  color: #fff;
}
.language_dropdown .lang-menu li img {
  width: 2rem;
  height: 1.45rem;
  object-fit: cover;
}

.return_btn {
  margin-bottom: 1.8rem;
}
.return_btn a {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  color: #f9f9ff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.return_btn a img {
  width: 2.4rem;
}
@media (max-width: 991px) {
  .return_btn {
    margin-bottom: 1rem;
  }
  .return_btn a {
    font-size: 1.8rem;
  }
  .return_btn a img {
    width: 2.1rem;
  }
}

.header_section {
  width: 100%;
  background: #0D0D0D;
  display: block;
  background-image: url("../img/header-shape.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 2rem 0rem 2.6rem;
  position: fixed;
  top: 0;
  z-index: 2026;
}
@media (max-width: 991px) {
  .header_section {
    padding: 1.6rem 0rem 2rem;
  }
}
.header_section .container-fluid {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (min-width: 1200px) and (max-width: 1449px) {
  .header_section .container-fluid {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_section .container-fluid {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 991px) {
  .header_section .container-fluid {
    max-width: 74rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .header_section .container-fluid {
    max-width: 55rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header_section .container-fluid .navbar-nav {
  margin-right: 4rem;
}
.header_section .navbar-brand img {
  width: 16.1rem;
}
.header_section .navbar-nav {
  align-items: center;
}
.header_section .navbar-nav li {
  padding: 0 0.8rem;
}
.header_section .navbar-nav li a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #B2B2B6;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li a:hover {
  color: #FFF;
}
.header_section .navbar-nav li a img {
  width: 2.2rem;
}
.header_section .navbar-nav li a.active {
  color: #F02731;
}
.header_section .navbar-nav li a.active img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(4082%) hue-rotate(342deg) brightness(94%) contrast(102%);
}
.header_section .navbar-nav li .premium_btn {
  width: 11rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F02731;
  color: #F9F9FF;
  box-shadow: 0rem 0.3rem 1rem rgba(249, 204, 97, 0.45) inset;
  margin-right: 0.3rem;
  position: relative;
}
.header_section .navbar-nav li .premium_btn .border_topLeft {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .premium_btn .border_topRight {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .premium_btn .border_bottomLeft {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .premium_btn .border_bottomRight {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .premium_btn:hover span {
  transform: scale(1.2);
}
.header_section .navbar-nav li .premium_btn img {
  width: 1.8rem;
}
.header_section .navbar-nav li .task_btn {
  border: 1px solid #482C14;
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.06) 3.38%, rgba(228, 105, 18, 0.06) 22.95%, rgba(246, 153, 41, 0.06) 63.01%, rgba(253, 172, 51, 0.06) 77.92%);
  height: 3.5rem;
  position: relative;
  padding-left: 1.2rem;
  padding-right: 1rem;
}
.header_section .navbar-nav li .task_btn .task_text {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-edge: cap;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header_section .navbar-nav li .task_btn img {
  width: 2.5rem;
}
.header_section .navbar-nav li .task_btn .border_topLeft {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #EA7819;
  border-left: 1px solid #EA7819;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .task_btn .border_topRight {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #EA7819;
  border-right: 1px solid #EA7819;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .task_btn .border_bottomLeft {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #EA7819;
  border-left: 1px solid #EA7819;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-nav li .task_btn .border_bottomRight {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #EA7819;
  border-right: 1px solid #EA7819;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .header_left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.header_section .navbar-toggler {
  width: 4rem;
  height: 3.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.2rem;
  transition: 0.2s all ease;
  position: relative;
}
.header_section .navbar-toggler .border_tl {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #8C8681;
  border-left: 1px solid #8C8681;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-toggler .border_tr {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #8C8681;
  border-right: 1px solid #8C8681;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-toggler .border_bl {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #8C8681;
  border-left: 1px solid #8C8681;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-toggler .border_br {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #8C8681;
  border-right: 1px solid #8C8681;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.header_section .navbar-toggler:hover span {
  border-color: #FFF;
}
.header_section {
  /*hamburger*/
}
.header_section .hamburger-box {
  width: 2.5rem;
  height: 2.4rem;
  display: inline-block;
  position: relative;
}
.header_section .hamburger-box .hamburger-inner {
  width: 2.5rem;
  height: 0.2rem;
  display: block;
  background-color: #FFF;
  margin-top: -0.2rem;
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
}
.header_section .hamburger-box .hamburger-inner::before {
  content: "";
  width: 2.5rem;
  height: 0.2rem;
  display: block;
  background-color: #FFF;
  border-radius: 0.4rem;
  position: absolute;
  top: -0.9rem;
  outline: none;
}
.header_section .hamburger-box .hamburger-inner::after {
  content: "";
  width: 2.5rem;
  height: 0.2rem;
  display: block;
  background-color: #FFF;
  border-radius: 0.4rem;
  position: absolute;
  bottom: -0.9rem;
  outline: none;
}
.header_section .container,
.header_section .container-fluid {
  position: relative;
  z-index: 9;
}

.admin_btn {
  background: #080808;
}
.admin_btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.admin_btn a .admin_profile {
  flex-shrink: 0;
}
.admin_btn a .admin_profile img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.admin_btn a .admin_text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.admin_btn a .admin_text h4 img {
  width: 1.2rem;
}
.admin_btn a .admin_text span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #EAEAEA;
  background: #323232;
  width: 4.4rem;
  display: block;
  text-align: center;
  border-radius: 0.2rem;
  margin-top: 0.4rem;
}
.admin_btn a .down_icon {
  width: 1.4rem;
  margin-right: 0.3rem;
}

.button_border {
  padding: 0.5rem 1.2rem;
  position: relative;
  height: 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s all ease;
}
.button_border .border_topLeft {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #6E6E6E;
  border-left: 1px solid #6E6E6E;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.button_border .border_topRight {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #6E6E6E;
  border-right: 1px solid #6E6E6E;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.button_border .border_bottomLeft {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #6E6E6E;
  border-left: 1px solid #6E6E6E;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.button_border .border_bottomRight {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #6E6E6E;
  border-right: 1px solid #6E6E6E;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.button_border:hover {
  background: #323232;
}
.button_border:hover span {
  border-color: #FFF;
}

.add_btn {
  background: #080808;
}
.add_btn a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.add_btn a img {
  width: 3.4rem;
}
.add_btn a span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
}
.add_btn a span .gray_text {
  color: rgba(255, 255, 255, 0.6);
}
.add_btn a span .text_color {
  color: #F02731;
  display: inline-block;
  margin-top: 0.3rem;
}

.icon_btn {
  background: #080808;
}
.icon_btn a {
  width: 5rem;
  height: 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  transition: 0.2s all ease;
}
.icon_btn a img {
  width: 2.4rem;
}
.icon_btn a .notify_red {
  width: 1rem;
  height: 1rem;
  display: block;
  background: #F02731;
  border-radius: 50%;
  position: absolute;
  left: 1.3rem;
  top: 1.3rem;
}
.icon_btn a .border_topLeft {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #6E6E6E;
  border-left: 1px solid #6E6E6E;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.icon_btn a .border_topRight {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #6E6E6E;
  border-right: 1px solid #6E6E6E;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.icon_btn a .border_bottomLeft {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #6E6E6E;
  border-left: 1px solid #6E6E6E;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.icon_btn a .border_bottomRight {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #6E6E6E;
  border-right: 1px solid #6E6E6E;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.icon_btn a:hover {
  background: #323232;
}
.icon_btn a:hover span {
  border-color: #FFF;
}

.offcanvas {
  background: #0E0E0E;
  width: 32rem !important;
  border-left: 1px solid #460C0F !important;
  z-index: 9999;
}
.offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.6rem 2rem;
  position: relative;
  border-bottom: 1px solid #460C0F;
}
.offcanvas .offcanvas-header a img {
  width: 16rem;
}
.offcanvas .offcanvas-header button {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  left: 1.5rem;
}
.offcanvas .offcanvas-header button img {
  width: 2rem;
}
.offcanvas .offcanvas-header button .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #8C8681;
  border-left: 1px solid #8C8681;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas-header button .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #8C8681;
  border-right: 1px solid #8C8681;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas-header button .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #8C8681;
  border-left: 1px solid #8C8681;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas-header button .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #8C8681;
  border-right: 1px solid #8C8681;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas-header button:hover span {
  border-color: #FFF;
  transform: scale(1.15);
}
.offcanvas .offcanvas-body {
  padding: 0rem;
  display: flex;
  flex-direction: column;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #C52029 #1D1D1D;
}
.offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.offcanvas .offcanvas-body::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 2rem;
}
.offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background: #C52029;
  border-radius: 2rem;
}
.offcanvas .offcanvas_menu {
  padding: 2rem 2rem 2.5rem;
}
.offcanvas .offcanvas_menu a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  color: #B2B2B6;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #6F6F6F;
  padding: 1.4rem 0.5rem;
}
.offcanvas .offcanvas_menu a:hover {
  color: #FFF;
  border-color: #FFF;
}
.offcanvas .offcanvas_menu a img {
  width: 2.2rem;
}
.offcanvas .offcanvas_menu .task_btn {
  border: 1px solid #482C14;
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.06) 3.38%, rgba(228, 105, 18, 0.06) 22.95%, rgba(246, 153, 41, 0.06) 63.01%, rgba(253, 172, 51, 0.06) 77.92%);
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  padding-left: 1.2rem;
  padding-right: 1rem;
  margin-top: 1.5rem;
}
.offcanvas .offcanvas_menu .task_btn .task_text {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-edge: cap;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offcanvas .offcanvas_menu .task_btn img {
  width: 2.5rem;
}
.offcanvas .offcanvas_menu .task_btn .border_topLeft {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #EA7819;
  border-left: 1px solid #EA7819;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_menu .task_btn .border_topRight {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #EA7819;
  border-right: 1px solid #EA7819;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_menu .task_btn .border_bottomLeft {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #EA7819;
  border-left: 1px solid #EA7819;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_menu .task_btn .border_bottomRight {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #EA7819;
  border-right: 1px solid #EA7819;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_menu .task_btn:hover {
  border-color: #6B3B13;
}
.offcanvas .offcanvas_btn {
  text-align: center;
  display: none;
}
.offcanvas .offcanvas_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: radial-gradient(#E14638, #DA232D, #E14638);
  padding: 1.2rem 3rem;
  position: relative;
}
.offcanvas .offcanvas_btn a img {
  width: 1.8rem;
  margin-top: -0.1rem;
}
.offcanvas .offcanvas_btn a .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_btn a .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_btn a .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_btn a .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas_btn a:hover {
  background: linear-gradient(to right, #E14638, #DA232D);
}
.offcanvas .offcanvas_btn a:hover span {
  transform: scale(1.15);
}

.offcanvas {
  z-index: 999999;
}

.offcanvas-backdrop.show {
  opacity: 0.7;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* for Safari */
  z-index: 99999;
}

.admin_wraper {
  background: #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.6rem;
  padding: 1.6rem 2rem;
}
.admin_wraper .button_border {
  background: #0E0E0E;
}

.icon_wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem 3.2rem;
}

.chat_bot {
  position: fixed;
  left: 4rem;
  bottom: 18rem;
  z-index: 1024;
}
@media (max-width: 767px) {
  .chat_bot {
    bottom: 12rem;
    left: 2rem;
  }
}
.chat_bot a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #DA232D;
  border-radius: 50%;
}
.chat_bot a:hover {
  opacity: 0.9;
}
.chat_bot a img {
  width: 2.8rem;
}
@media (max-width: 767px) {
  .chat_bot a img {
    width: 2.4rem;
  }
}
@media (max-width: 767px) {
  .chat_bot a {
    width: 4rem;
    height: 4rem;
  }
}

.before_index_header {
  max-width: 100%;
  background-image: none;
  border-bottom: 1px solid #2B1111;
}
@media (max-width: 767px) {
  .before_index_header .navbar-brand img {
    width: 14.5rem;
  }
}

.header_button {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
@media (max-width: 767px) {
  .header_button {
    gap: 1.2rem;
  }
}
.header_button a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F9F9FF;
  background: #212121;
  display: inline-block;
  padding: 1.3rem 3rem;
  position: relative;
  transition: 0.2s all ease;
}
@media (max-width: 767px) {
  .header_button a {
    font-size: 1.45rem;
    padding: 1rem 2rem;
  }
}
.header_button a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.header_button a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.header_button a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.header_button a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.header_button a:hover {
  background: radial-gradient(rgb(225, 70, 56), rgb(218, 35, 45), rgb(225, 70, 56));
  opacity: 0.85;
}
.header_button a:hover span {
  border-color: #FDEABD;
}
.header_button a.active {
  background: radial-gradient(rgb(225, 70, 56), rgb(218, 35, 45), rgb(225, 70, 56));
}
.header_button a.active span {
  border-color: #FDEABD;
}

.tournament_joinBanner::after {
  content: "";
  width: 100%;
  height: 30rem;
  display: block;
  background-image: url("../img/tournament-join-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .tournament_joinBanner::after {
    height: 28rem;
    background-size: cover;
  }
}

.client_headerBanner::after {
  content: "";
  width: 100%;
  height: 41.6rem;
  display: block;
  background-image: url("../img/client-header-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .client_headerBanner::after {
    height: 34rem;
    background-size: cover;
  }
}

.admin_headerBanner::after {
  content: "";
  width: 100%;
  height: 34rem;
  display: block;
  background-image: url("../img/admin-header-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .admin_headerBanner::after {
    height: 28rem;
    background-size: cover;
  }
}

.admin_sideBar {
  width: 31rem;
  height: calc(100vh - 11rem);
  position: fixed;
  left: -110%;
  bottom: 0;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s all ease;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F02731 #1D1D1D;
}
.admin_sideBar::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.admin_sideBar::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 2rem;
}
.admin_sideBar::-webkit-scrollbar-thumb {
  background: #F02731;
  border-radius: 2rem;
}
.admin_sideBar .admin_bar {
  width: 100%;
  position: static;
  padding-top: 0rem;
}
.admin_sideBar.show {
  left: 0;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  .admin_sideBar.show {
    z-index: 9999999;
    height: calc(100vh - 9rem);
  }
  .admin_sideBar.show .admin_bar {
    max-width: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
}

.footer_section {
  background: #080808;
  margin-top: 5rem;
  position: relative;
  padding: 6rem 6rem 0.6rem;
}
@media (max-width: 991px) {
  .footer_section {
    padding: 5rem 5rem 0.6rem;
  }
}
@media (max-width: 767px) {
  .footer_section {
    padding: 5rem 3rem 0.6rem;
  }
}
.footer_section .border_tl {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #B5B5B5;
  border-left: 1px solid #B5B5B5;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.footer_section .border_tr {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #B5B5B5;
  border-right: 1px solid #B5B5B5;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.footer_section .border_bl {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #B5B5B5;
  border-left: 1px solid #B5B5B5;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.footer_section .border_br {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #B5B5B5;
  border-right: 1px solid #B5B5B5;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.footer_section .footer_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 6.2rem;
}
.footer_section .footer_wrapper .footer_item {
  width: 40%;
}
@media (max-width: 991px) {
  .footer_section .footer_wrapper .footer_item {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.footer_section .footer_wrapper .footer_item .footer_logo img {
  width: 28.7rem;
}
@media (max-width: 991px) {
  .footer_section .footer_wrapper .footer_item .footer_logo img {
    width: 24rem;
  }
}
@media (max-width: 767px) {
  .footer_section .footer_wrapper .footer_item .footer_logo img {
    width: 21rem;
  }
}
.footer_section .footer_wrapper .footer_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #CECECE;
  margin: 0.8rem 0rem 2rem;
}
.footer_section .footer_wrapper .footer_item ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer_section .footer_wrapper .footer_item ul img {
  width: 2.4rem;
  transition: 0.2s all ease;
}
.footer_section .footer_wrapper .footer_item ul img:hover {
  filter: brightness(0) saturate(100%) invert(17%) sepia(54%) saturate(6786%) hue-rotate(349deg) brightness(91%) contrast(86%);
}
.footer_section .footer_wrapper .footer_text {
  position: relative;
}
.footer_section .footer_wrapper .footer_text::before {
  content: "";
  width: 1rem;
  height: 14.5rem;
  display: block;
  background-image: url(../img/vertical-border-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: -7rem;
}
.footer_section .footer_wrapper .footer_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: initial;
  color: #6B6B6B;
  margin-bottom: 1.2rem;
}
.footer_section .footer_wrapper .footer_text a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: 0.2s all ease;
}
.footer_section .footer_wrapper .footer_text a:hover {
  color: #DA242D;
}
.footer_section .footer_wrapper .footer_colum2 {
  width: 25%;
}
@media (max-width: 991px) {
  .footer_section .footer_wrapper .footer_colum2 {
    width: 30%;
  }
  .footer_section .footer_wrapper .footer_colum2::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer_section .footer_wrapper .footer_colum2 {
    width: 60%;
  }
}
.footer_section .footer_wrapper .footer_colum3 {
  width: 20%;
}
@media (max-width: 991px) {
  .footer_section .footer_wrapper .footer_colum3 {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .footer_section .footer_wrapper .footer_colum3 {
    width: 40%;
  }
  .footer_section .footer_wrapper .footer_colum3::before {
    right: -4.6rem;
  }
}
.footer_section .footer_wrapper .footer_colum4 {
  width: 15%;
}
@media (max-width: 991px) {
  .footer_section .footer_wrapper .footer_colum4 {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .footer_section .footer_wrapper .footer_colum4 {
    width: 50%;
    margin-top: 4.5rem;
  }
  .footer_section .footer_wrapper .footer_colum4::before {
    display: none;
  }
}
.footer_section .copyright_item {
  border-top: 1px solid #2B2B2B;
  padding: 2.4rem 0rem 1.6rem;
}
.footer_section .copyright_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #FFFFFF;
  direction: ltr;
}

#chatBox {
  width: 100%;
  position: fixed;
  bottom: 0rem;
  z-index: 1024;
  display: none;
}
#chatBox.show {
  display: block;
}
@media (max-width: 991px) {
  #chatBox {
    display: none !important;
  }
}
@media screen and (min-width: 1800px) {
  #chatBox {
    right: -18rem;
  }
}

.chat_modal {
  max-width: 33.5rem;
  width: 100%;
  margin-left: auto;
}
.chat_modal .modal-content {
  background: #080808;
  border: 1px solid #322222;
  padding: 2rem 1.6rem 3.2rem;
  position: relative;
  box-shadow: -4.5rem -1.4rem 17rem rgba(255, 26, 26, 0.12) inset;
}
.chat_modal .modal-content .border_tl {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .border_tr {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .border_bl {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .border_br {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .close_btn {
  cursor: pointer;
}
.chat_modal .modal-content .close_btn img {
  width: 2.1rem;
  opacity: 0.8;
}
.chat_modal .modal-content .chatModal_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #390E10;
}
.chat_modal .modal-content .chatModal_heading .chatModal_button {
  display: flex;
  gap: 1rem;
}
.chat_modal .modal-content .chatModal_heading .chatModal_button a img {
  width: 1.4rem;
}
.chat_modal .modal-content .chatModal_heading .chatModal_heading_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.chat_modal .modal-content .chatModal_heading .chatModal_heading_item .chatModal_heading_img {
  width: 5.2rem;
  height: 4.8rem;
  background: #230517;
  border: 1px solid #B01C1D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat_modal .modal-content .chatModal_heading .chatModal_heading_item .chatModal_heading_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat_modal .modal-content .chatModal_heading .chatModal_heading_item .chatModal_heading_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}
.chat_modal .modal-content .chatModal_heading .chatModal_heading_item .chatModal_heading_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.chat_modal .modal-content .chatModal_heading .chatModal_heading_item .chatModal_heading_text p span {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  background: #E51212;
  border: 1px solid #510C0C;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat_modal .modal-content .alert_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(to bottom, #100909, #1C090A);
  border-bottom: 1px solid #370F11;
}
.chat_modal .modal-content .alert_item img {
  width: 3.8rem;
}
.chat_modal .modal-content .alert_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
  max-width: 22.1rem;
  width: 100%;
  display: none;
}
.chat_modal .modal-content .message_item {
  padding: 4rem 0rem;
  text-align: center;
}
.chat_modal .modal-content .message_item img {
  width: 4rem;
}
.chat_modal .modal-content .message_item h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  color: #F5F5F5;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}
.chat_modal .modal-content .message_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 155%;
  color: rgba(255, 255, 255, 0.8);
}
.chat_modal .modal-content .message_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.chat_modal .modal-content .message_wrap button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  flex-shrink: 0;
}
.chat_modal .modal-content .message_wrap button img {
  width: 2rem;
}
.chat_modal .modal-content .message_wrap .message_field {
  width: 24.5rem;
  position: relative;
}
.chat_modal .modal-content .message_wrap .message_field .border_tl {
  width: 0.5rem;
  height: 0.6rem;
  border-top: 1px solid #B31C1C;
  border-left: 1px solid #B31C1C;
  position: absolute;
  left: -0.08rem;
  top: -0.08rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .message_wrap .message_field .border_tr {
  width: 0.5rem;
  height: 0.6rem;
  border-top: 1px solid #B31C1C;
  border-right: 1px solid #B31C1C;
  position: absolute;
  right: -0.08rem;
  top: -0.08rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .message_wrap .message_field .border_bl {
  width: 0.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #B31C1C;
  border-left: 1px solid #B31C1C;
  position: absolute;
  left: -0.08rem;
  bottom: -0.08rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .message_wrap .message_field .border_br {
  width: 0.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #B31C1C;
  border-right: 1px solid #B31C1C;
  position: absolute;
  right: -0.08rem;
  bottom: -0.08rem;
  transition: 0.2s all ease;
}
.chat_modal .modal-content .message_wrap .message_field:focus {
  border-color: #3F1717;
}
.chat_modal .modal-content .message_wrap .message_field input {
  width: 100%;
  height: 3.6rem;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 1.2rem;
  text-align: right;
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
}
.chat_modal .modal-content .message_wrap .message_field input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.chat_modal .modal-content .message_wrap .message_field input:focus {
  border-color: #400E10;
}

.chat_section {
  padding-top: 1rem;
}
.chat_section .chat_wraper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.chat_section .chat_wraper .chat_user {
  width: 26rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_user {
    width: 100%;
    height: calc(100vh - 22rem);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #A01A20 #1B0D0D;
    direction: ltr;
  }
  .chat_section .chat_wraper .chat_user::-webkit-scrollbar {
    width: 0.8rem;
    border-radius: 2rem;
  }
  .chat_section .chat_wraper .chat_user::-webkit-scrollbar-track {
    background: #1B0D0D;
    border-radius: 2rem;
  }
  .chat_section .chat_wraper .chat_user::-webkit-scrollbar-thumb {
    background: #A01A20;
    border-radius: 2rem;
  }
}
.chat_section .chat_wraper .chat_user .user_title {
  background: #121212;
  height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}
.chat_section .chat_wraper .chat_user .user_title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_user .user_title {
    height: 7.5rem;
    direction: rtl;
  }
}
.chat_section .chat_wraper .chat_user .user_box {
  background: #121212;
  border: none;
  width: 100%;
  height: calc(100vh - 25rem);
  overflow: auto;
  display: block;
  padding: 1.6rem 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: #A01A20 #1B0D0D;
  direction: ltr;
}
.chat_section .chat_wraper .chat_user .user_box::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.chat_section .chat_wraper .chat_user .user_box::-webkit-scrollbar-track {
  background: #1B0D0D;
  border-radius: 2rem;
}
.chat_section .chat_wraper .chat_user .user_box::-webkit-scrollbar-thumb {
  background: #A01A20;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_user .user_box {
    height: auto;
    direction: ltr;
  }
}
.chat_section .chat_wraper .chat_user .user_box .user_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem;
  cursor: pointer;
  margin-bottom: 0.3rem;
  border: none;
  border-radius: 0rem;
  transition: 0.2s all ease;
  direction: rtl;
}
.chat_section .chat_wraper .chat_user .user_box .user_item:hover, .chat_section .chat_wraper .chat_user .user_box .user_item.active {
  background: #1E1212;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_user .user_box .user_item.active {
    background: transparent;
  }
  .chat_section .chat_wraper .chat_user .user_box .user_item:hover {
    background: #1E1212;
  }
}
.chat_section .chat_wraper .chat_user .user_box .user_item .user_img {
  width: 3.5rem;
  height: 3.2rem;
  flex-shrink: 0;
  position: relative;
}
.chat_section .chat_wraper .chat_user .user_box .user_item .user_img span {
  width: 0.6rem;
  height: 0.6rem;
  background: #1FE93C;
  display: block;
  border: 1px solid rgba(31, 233, 60, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
}
.chat_section .chat_wraper .chat_user .user_box .user_item .user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat_section .chat_wraper .chat_user .user_box .user_item .user_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
.chat_section .chat_wraper .chat_user .user_box .user_item .user_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.chat_section .chat_wraper .chat_content {
  width: 100%;
}
.chat_section .chat_wraper .chat_content .content_wraper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body {
  max-width: 61.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body {
    background: #121212;
    padding: 1rem 1.5rem;
    max-width: 70rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    z-index: 999999;
    display: none;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body.show {
    display: block;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .close_btn {
    position: absolute;
    top: 3rem;
    left: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s all ease;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .close_btn:hover {
    opacity: 1;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .close_btn img {
    width: 2.4rem;
  }
}
@media (max-width: 767px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body {
    max-width: 51rem;
    padding: 1rem 0rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading {
  background: #121212;
  height: 9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading .chat_heading_img {
  width: 5.5rem;
  height: 5rem;
  border: 1px solid #9B1A1B;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading .chat_heading_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading .chat_heading_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading .chat_heading_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading .chat_heading_text p span {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  background: #E51212;
  border: 1px solid #510C0C;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_heading {
    display: inline-flex;
    cursor: pointer;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox {
  background: #121212;
  height: calc(100vh - 25rem);
  display: flex;
  flex-direction: column;
  padding: 1.4rem 2rem 1.5rem;
  direction: ltr;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox {
    padding-top: 0rem;
    height: calc(100vh - 10rem);
    padding-bottom: 2.6rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .alert_item {
  background: #0E0E0E;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  direction: rtl;
  padding-right: 2.2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .alert_item img {
  width: 2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .alert_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel {
  padding: 1.8rem 0.4rem;
  padding-right: 2.2rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #A01A20 #1B0D0D;
  direction: ltr;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel::-webkit-scrollbar-track {
  background: #1B0D0D;
  border-radius: 2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel::-webkit-scrollbar-thumb {
  background: #A01A20;
  border-radius: 2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_text {
  direction: rtl;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: #2A1313;
  padding: 1rem 2rem;
  border-radius: 1.6rem 1.6rem 0rem 1.6rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_text p {
    font-size: 1.45rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin: 0.4rem 0rem 1rem;
  direction: rtl;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_item .chat_text p {
  border-radius: 1.6rem 1.6rem 1.6rem 0rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_item img {
  width: 5.5rem;
  height: 5rem;
  object-fit: cover;
  border: 1px solid #9B1A1B;
}
@media (max-width: 767px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chat_panel .chat_item img {
    width: 5rem;
    height: 4.5rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap {
  background: #121212;
  margin-top: auto;
  padding-top: 1rem;
  z-index: 9;
  position: relative;
  direction: rtl;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap::before {
  content: "";
  width: 100%;
  height: 2.4rem;
  display: block;
  background: linear-gradient(to bottom, transparent, #121212);
  position: absolute;
  bottom: 100%;
  left: 0;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item {
  max-width: 53.2rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  flex-shrink: 0;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item button img {
  width: 2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input {
  max-width: 47.4rem;
  width: 100%;
  position: relative;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input .border_tl {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input .border_tr {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input .border_bl {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input .border_br {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input:focus {
  border-color: #3F1717;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input input {
  width: 100%;
  height: 3.7rem;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 1.2rem;
  text-align: right;
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input input:focus {
  border-color: #400E10;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item {
    max-width: 100%;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_body .chat_mainBox .chatField_wrap .chatField_item .chat_input {
    max-width: 100%;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details {
  width: 26rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details {
    background: #121212;
    padding: 1rem 1.5rem;
    max-width: 70rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    z-index: 999999;
    display: none;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details.show {
    display: block;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details .close_btn {
    position: absolute;
    top: 3rem;
    left: 1.5rem;
    cursor: pointer;
    opacity: 0.75;
    transition: 0.2s all ease;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details .close_btn:hover {
    opacity: 1;
  }
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details .close_btn img {
    width: 2.4rem;
  }
}
@media (max-width: 767px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details {
    max-width: 51rem;
    padding: 1rem 0rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .chat_profile {
  background: #121212;
  padding: 4.2rem 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .chat_profile img {
  width: 9.9rem;
  height: 9rem;
  border: 1px solid #9B1A1B;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .chat_profile h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.8rem 0rem 0.2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .chat_profile p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .chat_profile p span {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  background: #E51212;
  border: 1px solid #510C0C;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options {
  background: #121212;
  height: calc(100vh - 39rem);
  overflow: auto;
  padding: 2.4rem 2.4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991px) {
  .chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options {
    height: auto;
    padding-right: 3rem;
  }
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  color: #FFFFFF;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #411414;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options ul {
  padding-top: 1.6rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options ul li {
  padding-bottom: 2rem;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options ul li a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: 0.2s all ease;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options ul li a:hover {
  color: #FFF;
}
.chat_section .chat_wraper .chat_content .content_wraper .chat_details .profile_options ul li a img {
  width: 2rem;
}
@media (max-width: 991px) {
  .chat_section {
    padding: 0;
  }
}

.close_icon {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: block;
  margin-right: auto;
  cursor: pointer;
}
.close_icon img {
  width: 2rem;
}

.close_conversition {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: block;
  margin-right: auto;
  cursor: pointer;
}
.close_conversition img {
  width: 1.6rem;
}

.main_body {
  padding-top: 10.8rem;
}
@media (max-width: 991px) {
  .main_body {
    padding-top: 9.1rem;
  }
}

.main_wrapper {
  display: flex;
  align-items: flex-start;
}
.main_wrapper .sidebar {
  width: 14rem;
  height: 100%;
  display: block;
  text-align: center;
  flex-shrink: 0;
  padding-right: 7rem;
  position: fixed;
  right: 0;
  top: 9rem;
  z-index: 99;
}
@media (max-width: 991px) {
  .main_wrapper .sidebar {
    width: 100%;
    height: initial;
    top: initial;
    padding-right: 0rem;
  }
}
@media (max-width: 767px) {
  .main_wrapper .sidebar {
    padding-right: 2rem;
  }
}
.main_wrapper .sidebar .side_item {
  padding-top: 7rem;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.main_wrapper .sidebar .side_item::after {
  content: "";
  width: 10.3rem;
  height: 65rem;
  display: block;
  background-image: url("../img/sidebar-shape.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0rem;
}
.main_wrapper .sidebar .side_item .side_btn {
  width: 7rem;
  height: 6.5rem;
  background: #080808;
  border: 1px solid #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 9;
  transition: 0.2s all ease;
}
@media (max-width: 991px) {
  .main_wrapper .sidebar .side_item .side_btn {
    width: 6.5rem;
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .main_wrapper .sidebar .side_item .side_btn {
    width: 5rem;
    height: 5rem;
  }
}
.main_wrapper .sidebar .side_item .side_btn img {
  width: 3.2rem;
}
@media (max-width: 767px) {
  .main_wrapper .sidebar .side_item .side_btn img {
    width: 2.4rem;
  }
}
.main_wrapper .sidebar .side_item .side_btn .side_iconText {
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFF;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease;
  z-index: 9;
}
@media (max-width: 991px) {
  .main_wrapper .sidebar .side_item .side_btn .side_iconText {
    left: 0%;
    font-size: 1.4rem;
  }
}
.main_wrapper .sidebar .side_item .side_btn .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #4D4D4D;
  border-left: 1px solid #4D4D4D;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.main_wrapper .sidebar .side_item .side_btn .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #4D4D4D;
  border-right: 1px solid #4D4D4D;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.main_wrapper .sidebar .side_item .side_btn .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #4D4D4D;
  border-left: 1px solid #4D4D4D;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.main_wrapper .sidebar .side_item .side_btn .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #4D4D4D;
  border-right: 1px solid #4D4D4D;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.main_wrapper .sidebar .side_item .side_btn:hover {
  background: #F02731;
  border-color: #E76A4C;
  box-shadow: 0rem 0.5rem 1.7rem rgba(249, 204, 97, 0.45) inset;
}
.main_wrapper .sidebar .side_item .side_btn:hover .side_iconText {
  right: 116%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .main_wrapper .sidebar .side_item .side_btn:hover .side_iconText {
    right: 0%;
    top: -40%;
  }
}
.main_wrapper .sidebar .side_item .side_btn:hover span {
  border-color: #FFFFFF;
}
.main_wrapper .sidebar .side_item .side_btn.active {
  background: #F02731;
  border-color: #E76A4C;
  box-shadow: 0rem 0.5rem 1.7rem rgba(249, 204, 97, 0.45) inset;
}
.main_wrapper .sidebar .side_item .side_btn.active span {
  border-color: #FFFFFF;
}
.main_wrapper .main_content {
  padding-top: 2rem;
  width: 87.7%;
  margin-right: auto;
}
@media (max-width: 991px) {
  .main_wrapper {
    flex-direction: column;
    padding-bottom: 17rem;
  }
  .main_wrapper .sidebar {
    background: transparent;
    width: 100%;
    padding-bottom: 1.6rem;
    position: fixed;
    top: initial;
    bottom: 0;
    left: 0;
    z-index: 99999;
  }
  .main_wrapper .sidebar .side_item {
    background: #0F0F0F;
    max-width: 70rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    padding: 0;
    z-index: 1024;
    padding: 2.5rem 4rem;
    border: 1px solid rgba(161, 27, 27, 0.2);
  }
  .main_wrapper .sidebar .side_item::after {
    display: none;
  }
  .main_wrapper .main_content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main_wrapper {
    padding-bottom: 13rem;
  }
  .main_wrapper .sidebar {
    padding: 1rem 2rem;
  }
  .main_wrapper .sidebar .side_item {
    max-width: 51rem !important;
    padding: 1.6rem;
  }
}

.hero_section {
  background-image: url(../img/hero.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4.4rem 5.6rem 8.2rem;
}
@media (max-width: 767px) {
  .hero_section {
    padding: 3.5rem 2rem 7rem;
  }
}
.hero_section .hero_text {
  max-width: 43rem;
  width: 100%;
}
.hero_section .hero_text h1 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .hero_section .hero_text h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .hero_section .hero_text h1 {
    font-size: 3rem;
  }
}
.hero_section .hero_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #CDCCCD;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .hero_section .hero_text p {
    font-size: 1.68rem;
  }
}
.hero_section .hero_text ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero_section .hero_text ul a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08rem;
  color: #F9F9FF;
  background: #212121;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  transition: 0.2s all ease;
  position: relative;
}
.hero_section .hero_text ul a img {
  width: 2rem;
}
.hero_section .hero_text ul a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.hero_section .hero_text ul a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.hero_section .hero_text ul a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.hero_section .hero_text ul a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.hero_section .hero_text ul a:hover {
  background: #F02731;
  border-color: #E76A4C;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
}
.hero_section .hero_text ul a:hover span {
  border-color: #FDE9BB;
  transform: scale(1.25);
}
.hero_section .hero_text ul a.active {
  background: #F02731;
  border-color: #E76A4C;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
}
.hero_section .hero_text ul a.active span {
  border-color: #FDE9BB;
}

.hero_slider .swiper-pagination {
  width: 100%;
  text-align: right;
  padding: 0rem 5.6rem;
  position: absolute;
  bottom: 3.6rem;
}
@media (max-width: 767px) {
  .hero_slider .swiper-pagination {
    padding: 0rem 2rem;
    bottom: 2.6rem;
  }
}

.game_section {
  padding-top: 4.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
.game_section .game_box {
  background: #080808;
  border: 1px solid #171717;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.game_section .game_box .game_title {
  margin-bottom: 2.1rem;
}
.game_section .game_box .game_title img {
  width: 8.8rem;
  margin-top: 0.2rem;
}
.game_section .game_box .game_title h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.game_section .game_box .game_title h3::before {
  content: "";
  width: 0.4rem;
  height: 1.9rem;
  display: block;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  border-radius: 1.6rem;
}
.game_section .game_box .game_wraper {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  padding-bottom: 2.4rem;
  position: relative;
}
.game_section .game_box .game_wraper .game_item {
  text-align: center;
  cursor: pointer;
}
.game_section .game_box .game_wraper .game_item img {
  width: 5.1rem;
  height: 5.1rem;
  border: 1px solid transparent;
  border-radius: 50%;
}
.game_section .game_box .game_wraper .game_item p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #9C9C9C;
  margin-top: 0.8rem;
  overflow: hidden;
}
.game_section .game_box .game_wraper .game_item.active p {
  color: #F02731;
}
.game_section .game_box .game_wraper .game_item.active img {
  border-color: #F02731;
}
.game_section .game_box .game_wraper .swiper-button-prev {
  right: 0;
}
.game_section .game_box .game_wraper .swiper-button-next {
  left: 0;
}
.game_section .game_box .game_wraper .swiper-button-next,
.game_section .game_box .game_wraper .swiper-button-prev {
  user-select: none;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  top: 35%;
}
.game_section .game_box .game_wraper .swiper-button-next img,
.game_section .game_box .game_wraper .swiper-button-prev img {
  width: 0.8rem;
}
.game_section .game_box .game_wraper .swiper-button-next:hover,
.game_section .game_box .game_wraper .swiper-button-prev:hover {
  background: rgba(240, 39, 49, 0.1);
}
.game_section .game_box .game_wraper .swiper-button-next:hover img,
.game_section .game_box .game_wraper .swiper-button-prev:hover img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(70%) saturate(5432%) hue-rotate(338deg) brightness(89%) contrast(114%);
}
.game_section .game_box .game_wraper .swiper-button-next svg,
.game_section .game_box .game_wraper .swiper-button-prev svg {
  display: none;
}
.game_section .game_box .tournament_box {
  background: #121212;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.game_section .game_box .tournament_box .shape_left {
  position: absolute;
  left: 0;
  top: 0;
}
.game_section .game_box .tournament_box .shape_left img {
  width: 5.6rem;
}
.game_section .game_box .tournament_box .shape_right {
  position: absolute;
  right: 0;
  top: 0;
}
.game_section .game_box .tournament_box .shape_right img {
  width: 4.5rem;
}
.game_section .game_box .tournament_box .tournament_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.game_section .game_box .tournament_box .tournament_title h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}
.game_section .game_box .tournament_box .tournament_title img {
  width: 3.5rem;
}
.game_section .game_box .tournament_box .tournament_wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 0.6rem 0rem 1rem;
}
.game_section .game_box .tournament_box .tournament_wraper p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #D0D0D0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.game_section .game_box .tournament_box .tournament_wraper p img {
  width: 2.4rem;
}
.game_section .game_box .tournament_box .tournament_wraper h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFF;
}
.game_section .game_box .tournament_box .tournament_schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.game_section .game_box .tournament_box .tournament_schedule p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #B8B8B8;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.game_section .game_box .tournament_box .tournament_schedule p span {
  width: 0.2rem;
  height: 1.2rem;
  display: block;
  background: #C4232B;
}
.game_section .game_box .tournament_box .tournament_schedule a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #F5F6FF;
  background: #080808;
  display: inline-block;
  padding: 0.3rem 2rem;
  position: relative;
}
.game_section .game_box .tournament_box .tournament_schedule a .border_tl {
  width: 0.8rem;
  height: 0.4rem;
  border-top: 1px solid #B8B8B8;
  border-left: 1px solid #B8B8B8;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .tournament_box .tournament_schedule a .border_tr {
  width: 0.8rem;
  height: 0.4rem;
  border-top: 1px solid #B8B8B8;
  border-right: 1px solid #B8B8B8;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .tournament_box .tournament_schedule a .border_bl {
  width: 0.8rem;
  height: 0.4rem;
  border-bottom: 1px solid #B8B8B8;
  border-left: 1px solid #B8B8B8;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .tournament_box .tournament_schedule a .border_br {
  width: 0.8rem;
  height: 0.4rem;
  border-bottom: 1px solid #B8B8B8;
  border-right: 1px solid #B8B8B8;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .tournament_box .tournament_schedule a:hover span {
  border-color: #8D1616;
  transform: scale(1.15);
}
.game_section .game_box .game_btn {
  margin-top: auto;
  position: relative;
  transition: 0.2s all ease;
}
.game_section .game_box .game_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F5F6FF;
  background: #131313;
  border: 1px solid #2B2B2B;
  display: block;
  text-align: center;
  padding: 1rem 1.5rem;
  transition: 0.2s all ease;
}
.game_section .game_box .game_btn .border_tl {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #BFBFBF;
  border-left: 1px solid #BFBFBF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .game_btn .border_tr {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #BFBFBF;
  border-right: 1px solid #BFBFBF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .game_btn .border_bl {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #BFBFBF;
  border-left: 1px solid #BFBFBF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .game_btn .border_br {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #BFBFBF;
  border-right: 1px solid #BFBFBF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .game_btn:hover a {
  color: #FFF;
}
.game_section .game_box .game_btn:hover span {
  border-color: #860F0F;
}
.game_section .game_box .game_list {
  background: #121212;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 0.2rem;
}
.game_section .game_box .game_list p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #D0D0D0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.game_section .game_box .game_list p img {
  width: 5rem;
  margin-top: -0.6rem;
}
.game_section .game_box .game_list h4 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background: #1A1A1A;
  display: inline-block;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 1rem 1rem;
}
.game_section .game_box .player_box {
  background: #121212;
  padding: 1.5rem 1.5rem;
  margin-bottom: 1.2rem;
}
.game_section .game_box .player_box .player_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.game_section .game_box .player_box .player_title .player_text {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.game_section .game_box .player_box .player_title .player_text .player_status {
  position: relative;
}
.game_section .game_box .player_box .player_title .player_text .player_status span {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  background: #00C147;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.game_section .game_box .player_box .player_title .player_text .player_status img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
}
.game_section .game_box .player_box .player_title .player_text h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
}
.game_section .game_box .player_box .player_title p {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
}
.game_section .game_box .player_box .player_title p span {
  color: #A0A0A0;
}
.game_section .game_box .player_box .player_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game_section .game_box .player_box .player_item .avater_item {
  display: flex;
  align-items: center;
}
.game_section .game_box .player_box .player_item .avater_item img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: -1.4rem;
}
.game_section .game_box .player_box .player_item .avater_item img:first-child {
  margin-right: 0;
}
.game_section .game_box .player_box .player_item .avater_item a {
  display: inline-block;
  margin-right: -1.4rem;
}
.game_section .game_box .player_box .player_item .avater_item a img {
  margin-right: 0rem;
}
.game_section .game_box .player_box .player_item .player_btn a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #F5F6FF;
  background: #080808;
  border: 1px solid #212121;
  display: inline-block;
  padding: 0.5rem 2rem;
  position: relative;
}
.game_section .game_box .player_box .player_item .player_btn a .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #BCBCBC;
  border-left: 1px solid #BCBCBC;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .player_box .player_item .player_btn a .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #BCBCBC;
  border-right: 1px solid #BCBCBC;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .player_box .player_item .player_btn a .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #BCBCBC;
  border-left: 1px solid #BCBCBC;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .player_box .player_item .player_btn a .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #BCBCBC;
  border-right: 1px solid #BCBCBC;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.game_section .game_box .player_box .player_item .player_btn a:hover span {
  border-color: #8D1616;
  transform: scale(1.15);
}
@media (max-width: 991px) {
  .game_section {
    grid-template-columns: repeat(2, 1fr);
  }
  .game_section .game_box .game_title h3 {
    font-size: 2rem;
  }
  .game_section .game_box .game_title img {
    width: 8rem;
  }
  .game_section .game_box .game_wraper .game_item img {
    width: 4.6rem;
    height: 4.6rem;
  }
  .game_section .game_box .game_list p img {
    width: 4.5rem;
  }
  .game_section .game_box .game_list h4 {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .game_section {
    grid-template-columns: 1fr;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 2.4rem !important;
}
.swiper .swiper-button-next img,
.swiper .swiper-button-prev img {
  width: 2.4rem;
}

.tournaments_section {
  padding-top: 4.5rem;
}
.tournaments_section .tab_wrapper {
  padding: 2.4rem 0rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .tournaments_section .tab_wrapper {
    display: block;
  }
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs {
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .tournaments_section .tab_wrapper .tab_links .nav-tabs {
    gap: 0.7rem;
  }
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  background: #212121;
  border: none;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0rem;
  position: relative;
  transition: 0.2s all ease;
}
@media (max-width: 991px) {
  .tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link {
    font-size: 1.5rem;
    padding: 0.9rem 1.6rem;
  }
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #373737;
  border-left: 1px solid #373737;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #373737;
  border-right: 1px solid #373737;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #373737;
  border-left: 1px solid #373737;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #373737;
  border-right: 1px solid #373737;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link:hover span {
  border-color: #DA242D;
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link.active {
  background: radial-gradient(#E24E3A, #DA232D, #E24E3A);
}
.tournaments_section .tab_wrapper .tab_links .nav-tabs .nav-link.active span {
  border-color: #EF9A75;
}
.tournaments_section .tournaments_card {
  background: #070707;
  padding: 0rem 0.8rem 0.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .tournaments_section .tournaments_card {
    max-width: 35rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tournaments_section .tournaments_card .card_shape1 {
  position: absolute;
  top: 8.8rem;
  right: 0;
}
.tournaments_section .tournaments_card .card_shape1 img {
  width: 1rem;
}
.tournaments_section .tournaments_card .card_shape2 {
  position: absolute;
  top: 4.5rem;
  left: 0;
}
.tournaments_section .tournaments_card .card_shape2 img {
  width: 1rem;
}
.tournaments_section .tournaments_card .card_banner {
  position: relative;
}
.tournaments_section .tournaments_card .card_banner img {
  width: 100%;
}
.tournaments_section .tournaments_card .card_banner .status_btn {
  width: 12.5rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background-image: url(../img/status-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.8rem;
}
.tournaments_section .tournaments_card .card_banner .status_btn img {
  width: 1.4rem;
}
.tournaments_section .tournaments_card .card_banner .status_btn span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
}
.tournaments_section .tournaments_card .card_banner .status_btnbg2 {
  background-image: url(../img/status-shape-2.png);
}
.tournaments_section .tournaments_card .card_banner .status_btnbg3 {
  background-image: url(../img/status-shape-1.png);
}
.tournaments_section .tournaments_card .card_banner .status_btnbg4 {
  background-image: url(../img/status-shape-3.png);
}
.tournaments_section .tournaments_card .card_banner .premium {
  width: 6.4rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background-image: url(../img/premium_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 2.7rem;
  padding-top: 0.1rem;
  padding-left: 0.5rem;
}
.tournaments_section .tournaments_card .card_banner .premium img {
  width: 1.3rem;
}
.tournaments_section .tournaments_card .card_banner .premium span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #F02731;
}
.tournaments_section .tournaments_card .card_banner .time {
  width: 7.1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background-image: url(../img/time-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 2.7rem;
  padding-top: 0.1rem;
  padding-right: 0.4rem;
}
.tournaments_section .tournaments_card .card_banner .time img {
  width: 1.3rem;
}
.tournaments_section .tournaments_card .card_banner .time span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
}
.tournaments_section .tournaments_card .card_text {
  background-image: url(../img/card-text-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  min-height: 31rem;
  margin-top: -1.2rem;
  position: relative;
}
.tournaments_section .tournaments_card .card_text .league_btn {
  width: 11.9rem;
  height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/league-btn-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin: 0 auto;
  position: relative;
}
.tournaments_section .tournaments_card .card_text .league_btn span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #B8B8B8;
}
.tournaments_section .tournaments_card .card_text .league_btn .line_1 {
  width: 5.5rem;
  position: absolute;
  left: 88%;
  top: 98%;
}
.tournaments_section .tournaments_card .card_text .league_btn .line_2 {
  width: 5.5rem;
  position: absolute;
  right: 88%;
  top: 98%;
}
.tournaments_section .tournaments_card .card_text .card_title {
  margin-top: 2.3rem;
  text-align: center;
}
.tournaments_section .tournaments_card .card_text .card_title h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
}
.tournaments_section .tournaments_card .card_text .card_date {
  position: relative;
  padding: 0rem 1rem;
}
.tournaments_section .tournaments_card .card_text .card_date .gradient_border {
  width: 100%;
  vertical-align: middle;
}
.tournaments_section .tournaments_card .card_text .card_date ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding-top: 0.3rem;
}
.tournaments_section .tournaments_card .card_text .card_date ul li {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.035rem;
  color: #BCBCBC;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tournaments_section .tournaments_card .card_text .card_date ul li img {
  width: 1.6rem;
}
.tournaments_section .tournaments_card .card_text .registered_item {
  padding: 1.6rem 1.6rem;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_text p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  color: #CECECE;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_text h4 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_text h4 img {
  width: 2.1rem;
  position: relative;
  top: 0.2rem;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_text span {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  color: #EAEAEA;
  background: #2C2C2C;
  display: inline-block;
  padding: 0rem 0.5rem;
  border-radius: 0.1rem;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_text .paid {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  color: #EAEAEA;
  background: #6F090D;
  display: inline-block;
  padding: 0rem 0.5rem;
  border-radius: 0.1rem;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_user {
  padding: 1rem 0rem;
  position: relative;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_user img {
  width: 1.4rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_user .progress_bar {
  width: 100%;
  height: 1rem;
  display: block;
  background: transparent;
  border: 1px solid #858585;
  border-radius: 5rem;
}
.tournaments_section .tournaments_card .card_text .registered_item .registered_user .progress_bar .progress {
  width: 70%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, #200B0C, #9B0D16, #200B0C);
  border-radius: 5rem;
}
.tournaments_section .tournaments_card .card_text .card_button a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F9F9FF;
  width: 16.4rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin: 0 auto;
  background-image: url(../img/card-button-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transition: 0.2s all ease;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.tournaments_section .tournaments_card .card_text .card_button a img {
  width: 1.4rem;
}
.tournaments_section .tournaments_card .card_text .card_button a:hover {
  background-image: url(../img/card-button-shape-active.png);
}
.tournaments_section .tab-content .row {
  --bs-gutter-y: 2.4rem;
}

.broadcasts_section {
  padding: 4.5rem 0 6rem;
}
.broadcasts_section .row {
  --bs-gutter-y: 3rem;
}
@media (max-width: 767px) {
  .broadcasts_section .title_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.broadcast_card .card_img {
  position: relative;
  border: 0.2rem solid #6D6565;
}
.broadcast_card .card_img .bad_ge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.2rem;
  width: 12.5rem;
  z-index: 1;
}
.broadcast_card .card_img .img {
  width: 100%;
  height: 24.4rem;
  object-fit: cover;
  transition: 0.2s all ease;
}
.broadcast_card .card_img:hover img:last-child {
  transform: scale(1.15);
}
.broadcast_card .card_body_top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2.2rem 0 1rem;
}
.broadcast_card .avatar {
  margin-left: 0.4rem;
}
.broadcast_card .avatar img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
}
.broadcast_card .checkmark_badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  line-height: 100%;
}
.broadcast_card .checkmark_badge img {
  width: 1.5rem;
}
.broadcast_card .Value_badge {
  font-size: 1.2rem;
  line-height: 80%;
  background: rgba(255, 26, 26, 0.0784313725);
  border: 1px solid rgba(255, 26, 26, 0.5019607843);
  padding: 0.6rem 0.8rem;
  border-radius: 4rem;
}
.broadcast_card .time_block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
}
.broadcast_card .time_block .item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0.1rem;
  color: rgba(255, 255, 255, 0.6980392157);
}
.broadcast_card .time_block .item img {
  width: 1.6rem;
  flex-shrink: 0;
}

.news_section .row {
  --bs-gutter-y: 2.4rem;
}
@media (max-width: 767px) {
  .news_section .title_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.news_card .card_image {
  border: 1px solid #565656;
  position: relative;
}
.news_card .card_image a {
  width: 100%;
  display: block;
  overflow: hidden;
}
.news_card .card_image a img {
  width: 100%;
  transition: 0.2s all ease;
}
.news_card .card_image a:hover img {
  transform: scale(1.15);
}
.news_card .card_image .border_tl {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.news_card .card_image .border_tr {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.news_card .card_image .border_bl {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.news_card .card_image .border_br {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.news_card .card_image:hover span {
  border-color: #DA232D;
}
.news_card .card_body {
  padding-top: 1.6rem;
}
.news_card .card_body ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
}
.news_card .card_body ul li {
  font-size: 1.4rem;
  font-weight: 400;
  color: #B7B7B7;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news_card .card_body ul li::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  display: block;
  background: #B7B7B7;
  border-radius: 50%;
}
.news_card .card_body ul li:last-child::after {
  display: none;
}
.news_card .card_body h3 {
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.news_card .card_body p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #CFCFCF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.collaboration_section {
  padding-top: 6rem;
  padding-bottom: 8rem;
}
.collaboration_section .collaboration_wraper {
  width: 100%;
  overflow: hidden;
}
.collaboration_section .collaboration_wraper .collaboration_slider {
  padding: 0.1rem;
}
.collaboration_section .collaboration_wraper .partners_logo {
  width: 100%;
  height: 6.4rem;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.collaboration_section .collaboration_wraper .partners_logo img {
  max-width: 12rem;
}
@media (max-width: 991px) {
  .collaboration_section .collaboration_wraper .partners_logo img {
    max-width: 10rem;
  }
}
.collaboration_section .collaboration_wraper .partners_logo .border_tl {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #B5B5B5;
  border-left: 1px solid #B5B5B5;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.collaboration_section .collaboration_wraper .partners_logo .border_tr {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #B5B5B5;
  border-right: 1px solid #B5B5B5;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.collaboration_section .collaboration_wraper .partners_logo .border_bl {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #B5B5B5;
  border-left: 1px solid #B5B5B5;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.collaboration_section .collaboration_wraper .partners_logo .border_br {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #B5B5B5;
  border-right: 1px solid #B5B5B5;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.collaboration_section .collaboration_wraper .partners_logo:hover span {
  border-color: #DA232D;
}
.collaboration_section .collaboration_wraper .swiper-slide-active .partners_logo span {
  border-color: #DA232D;
}

.join_section {
  background-image: url(../img/join.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 12.8rem 2rem 9rem;
}
@media (max-width: 991px) {
  .join_section {
    padding: 10rem 2rem 8rem;
  }
}
@media (max-width: 767px) {
  .join_section {
    padding: 8rem 2rem 6rem;
  }
}
.join_section .join_text {
  text-align: center;
}
.join_section .join_text h3 {
  font-size: 4.8rem;
  font-weight: 400;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  margin-bottom: 2.3rem;
}
.join_section .join_text h3 img {
  width: 11.6rem;
}
@media (max-width: 767px) {
  .join_section .join_text h3 img {
    width: 9rem;
  }
}
@media (max-width: 991px) {
  .join_section .join_text h3 {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .join_section .join_text h3 {
    font-size: 3rem;
    gap: 1.2rem;
  }
}
.join_section .join_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #D0D0D0;
  margin-bottom: 4.6rem;
}
@media (max-width: 767px) {
  .join_section .join_text p {
    margin-bottom: 3rem;
    font-size: 1.9rem;
  }
}
.join_section .join_text a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F9F9FF;
  background: radial-gradient(#E14638, #DA232D, #E14638);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  transition: 0.2s all ease;
  position: relative;
}
.join_section .join_text a img {
  width: 2rem;
}
.join_section .join_text a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.join_section .join_text a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.join_section .join_text a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.join_section .join_text a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.join_section .join_text a:hover {
  opacity: 0.85;
}
.join_section .join_text a:hover span {
  border-color: #FDE9BB;
}

.mainwrap_before_login {
  max-width: 115.8rem;
  width: 100%;
  margin: 0 auto;
}

.alert_bar {
  background: #231312;
  border: 1px solid #4F1414;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.6rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 991px) {
  .alert_bar {
    margin-bottom: 2.4rem;
  }
}
.alert_bar p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #D3D0D0;
  letter-spacing: initial;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .alert_bar p {
    font-size: 1.6rem;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .alert_bar p {
    font-size: 1.5rem;
    width: 85%;
  }
}
.alert_bar img {
  width: 3rem;
}
@media (max-width: 991px) {
  .alert_bar img {
    width: 2.5rem;
  }
}

.roadmap_section {
  padding: 5.8rem 0rem 2.2rem;
}
.roadmap_section .roadmap_wraper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 4rem;
}
@media (max-width: 991px) {
  .roadmap_section .roadmap_wraper {
    flex-wrap: wrap;
    gap: 5rem;
  }
}
.roadmap_section .roadmap_wraper .roadmap_item {
  max-width: 20rem;
  width: 100%;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .roadmap_section .roadmap_wraper .roadmap_item {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .roadmap_section .roadmap_wraper .roadmap_item {
    max-width: 100%;
  }
}
.roadmap_section .roadmap_wraper .roadmap_item h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
  margin: 2.4rem 0rem 1.6rem;
}
.roadmap_section .roadmap_wraper .roadmap_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #CFCFCF;
}
.roadmap_section .roadmap_wraper .roadmap_item .user_icon img {
  width: 3.6rem;
}
.roadmap_section .roadmap_wraper .roadmap_item .group_icon img {
  width: 5.4rem;
}
.roadmap_section .roadmap_wraper .roadmap_item .trofy_icon img {
  width: 4rem;
}
.roadmap_section .roadmap_wraper .roadmap_item .document_icon img {
  width: 5.4rem;
}
.roadmap_section .roadmap_wraper .roadmap_item .gradient_line {
  width: 14.5rem;
  position: absolute;
  right: 94%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .roadmap_section .roadmap_wraper .roadmap_item .gradient_line {
    display: none;
  }
}

.profile_fixed {
  max-width: 18rem;
  width: 100%;
  margin-left: auto;
  position: fixed;
  right: 0;
  bottom: 1rem;
  z-index: 1024;
}
.profile_fixed .profile_box a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(to bottom, #080808, #1E0405);
  border: 1px solid #2F0507;
  padding: 1.2rem 1.4rem;
}
.profile_fixed .profile_box a .profile_img {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: #FBA1A9;
  border: 1px solid #FF5B63;
  border-radius: 50%;
}
.profile_fixed .profile_box a .profile_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.profile_fixed .profile_box a .profile_text p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 120%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.profile_fixed .profile_box a .profile_text p img {
  width: 1.3rem;
}
.profile_fixed .profile_box a .profile_text h4 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.profile_fixed .profile_box a .profile_text h4 span {
  background: #FF000C;
  display: inline-block;
  padding: 0.2rem 0.3rem;
  border-radius: 0.3rem;
}
.profile_fixed .subscription_box {
  background: linear-gradient(to bottom, #080808, #240305);
  border: 1px solid #340406;
  padding: 1.6rem 1rem 1.4rem 1.2rem;
  position: relative;
  margin-top: 1.2rem;
  text-align: center;
}
.profile_fixed .subscription_box img {
  width: 2rem;
  position: absolute;
  left: 1.4rem;
  top: 0.1rem;
}
.profile_fixed .subscription_box p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
}
.profile_fixed .subscription_box h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 100%;
  color: #F02731;
  margin: 0.8rem 0rem;
}
.profile_fixed .subscription_box a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  border: 1px solid #F23D46;
  display: block;
  text-align: center;
  padding: 0.8rem 1.2rem;
  position: relative;
  margin-top: 1.4rem;
  transition: 0.2s all ease;
}
.profile_fixed .subscription_box a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profile_fixed .subscription_box a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profile_fixed .subscription_box a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profile_fixed .subscription_box a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profile_fixed .subscription_box a:hover span {
  border-color: #EF9A75;
  transform: scale(1.2);
}

.offcanvas-body .profile_fixed {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: static;
  top: initial;
  right: initial;
}
.offcanvas-body .profile_fixed .profile_box {
  display: none;
}
.offcanvas-body .profile_fixed .subscription_box {
  padding: 1.8rem 1.5rem;
}
.offcanvas-body .profile_fixed .subscription_box img {
  width: 2.4rem;
}
.offcanvas-body .profile_fixed .subscription_box p {
  font-size: 1.6rem;
}
.offcanvas-body .profile_fixed .subscription_box p br {
  display: none;
}
.offcanvas-body .profile_fixed .subscription_box h4 {
  font-size: 2rem;
}
.offcanvas-body .profile_fixed .subscription_box a {
  font-size: 1.8rem;
}

.alert_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.1rem;
  margin-bottom: 2.6rem;
}
@media (max-width: 991px) {
  .alert_wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.alert_wrapper .daily_box {
  width: 24rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .alert_wrapper .daily_box {
    width: 100%;
  }
}
.alert_wrapper .daily_box a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.1) 3.38%, rgba(228, 105, 18, 0.1) 22.95%, rgba(246, 153, 41, 0.1) 63.01%, rgba(253, 172, 51, 0.1) 77.92%);
  padding: 1.2rem 2rem;
  position: relative;
}
.alert_wrapper .daily_box a img {
  width: 4.5rem;
  flex-shrink: 0;
}
.alert_wrapper .daily_box a .daily_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.alert_wrapper .daily_box a .daily_item .daily_text h4 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.1rem;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.alert_wrapper .daily_box a .daily_item .daily_text p {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.048rem;
  text-transform: capitalize;
  color: #FFF;
}
.alert_wrapper .daily_box a .daily_item .daily_text p span {
  color: #37AE48;
}
.alert_wrapper .daily_box a .daily_item img {
  width: 2rem;
}
.alert_wrapper .daily_box a .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #EA7819;
  border-left: 1px solid #EA7819;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.alert_wrapper .daily_box a .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #EA7819;
  border-right: 1px solid #EA7819;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.alert_wrapper .daily_box a .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #EA7819;
  border-left: 1px solid #EA7819;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.alert_wrapper .daily_box a .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #EA7819;
  border-right: 1px solid #EA7819;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.alert_wrapper .daily_box a:hover span {
  transform: scale(1.2);
}
.alert_wrapper .alert_bar {
  width: 100%;
  margin-bottom: 0rem;
}

.progress_gray {
  background: linear-gradient(90deg, rgba(99, 99, 99, 0) 0%, #636363 50.48%, rgba(99, 99, 99, 0) 100%) !important;
}

.progress_cyan {
  background: linear-gradient(90deg, rgba(37, 105, 178, 0) 0%, #2569B2 50.48%, rgba(37, 105, 178, 0) 100%) !important;
}

.tournaments_section .tournaments_card .card_banner .premium_shapec {
  width: 7.8rem;
  height: 2.9rem;
  background: linear-gradient(-93deg, #FFF -7.74%, rgba(255, 255, 255, 0.15) 159.81%, rgba(255, 255, 255, 0.1) 184.87%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  padding-right: 0.9rem;
  justify-content: start;
  top: 0;
  right: 0.1rem;
}
.tournaments_section .tournaments_card .card_banner .aiicon_shape {
  width: 7.6rem;
  height: 2.9rem;
  background: linear-gradient(91deg, #F02731 -1.46%, rgba(240, 39, 49, 0.15) 86.1%, rgba(240, 39, 49, 0.1) 99.19%);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 1.6rem;
  position: absolute;
  left: 0;
  top: 0;
}
.tournaments_section .tournaments_card .card_banner .aiicon_shape img {
  width: 3.2rem;
}
.tournaments_section .tournaments_card .card_banner .time_v2 {
  top: 11.5rem;
}
.tournaments_section .tournaments_card .card_banner .aiicon_shape2 {
  background: linear-gradient(100deg, #535353 4.92%, rgba(112, 112, 112, 0.3) 84.6%, rgba(185, 185, 185, 0.2) 134.23%);
  padding-left: 2.2rem;
}
.tournaments_section .tournaments_card .card_banner .aiicon_shape2 img {
  width: 2.3rem;
}
.tournaments_section .tournaments_card .card_banner .aiicon_shape3 {
  background: linear-gradient(93deg, #2569B2 -8.01%, rgba(37, 105, 178, 0.15) 84.19%, rgba(37, 105, 178, 0.1) 97.97%);
}
.tournaments_section .tournaments_card .card_banner .aiicon_shape3 img {
  width: 3.1rem;
}

.league_section_nv {
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .league_section_nv {
    padding-top: 2rem;
  }
}
.league_section_nv .league_tab_links {
  justify-content: flex-start;
}
.league_section_nv .league_upper {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .league_section_nv .league_upper {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.league_section_nv .league_upper .league_left {
  width: 28.2rem;
}
@media (max-width: 991px) {
  .league_section_nv .league_upper .league_left {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .league_section_nv .league_upper .league_right {
    width: 100%;
  }
}
.league_section_nv .league_upper .league_item_nv {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 991px) {
  .league_section_nv .league_upper .league_item_nv {
    gap: 2rem;
  }
}
.league_section_nv .league_upper .league_item_nv .league_select {
  width: 18rem;
}
@media (max-width: 991px) {
  .league_section_nv .league_upper .league_item_nv .league_select {
    width: 60%;
  }
}
.league_section_nv .league_upper .league_item_nv .league_select .selected {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.league_section_nv .league_upper .league_item_nv .league_select .selected img {
  width: 1.4rem;
}
.league_section_nv .league_upper .league_item_nv .league_select .select_dropdown li {
  font-family: "Cooperative", sans-serif !important;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  gap: 0.6rem;
}
.league_section_nv .league_upper .league_item_nv .league_select .select_dropdown img {
  width: 1.4rem;
}
.league_section_nv .league_upper .league_item_nv .league_switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.league_section_nv .league_upper .league_item_nv .league_switch p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
.league_section_nv .league_upper .league_item_nv .league_switch p.active {
  color: #FFF;
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch {
  position: relative;
  width: 3.2rem;
  height: 1.8rem;
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch input {
  display: none;
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #3b0a0a;
  border-radius: 5rem;
  border: 1px solid #a30000;
  transition: 0.4s;
  margin: 0 !important;
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch .slider::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, #ff6a5f, #d80000);
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 0 1rem rgba(255, 0, 0, 0.6);
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch {
  /* ON state */
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch input:checked + .slider {
  background: #a30000;
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch {
  /* Move knob */
}
.league_section_nv .league_upper .league_item_nv .league_switch .switch input:checked + .slider::before {
  transform: translate(1.4rem, -50%);
}
.league_section_nv .league_body {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.4rem 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
@media (max-width: 991px) {
  .league_section_nv .league_body {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .league_section_nv .league_body {
    padding: 2rem 0rem;
  }
}
.league_section_nv .league_body .league_title_nv {
  margin-bottom: 2.2rem;
}
.league_section_nv .league_body .league_title_nv h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.league_section_nv .league_body .league_title_nv h3::before {
  content: "";
  width: 0.4rem;
  height: 1.9rem;
  display: block;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  border-radius: 1.6rem;
}
@media (max-width: 575px) {
  .league_section_nv .league_body .league_title_nv h3 {
    font-size: 2rem;
  }
  .league_section_nv .league_body .league_title_nv h3::before {
    height: 1.8rem;
  }
}
.league_section_nv .league_body .league_title_nv2 {
  margin: 2.4rem 0rem;
}
.league_section_nv .league_body .league_title_nv2 h3 span {
  color: #2569B2;
}
.league_section_nv .league_body .league_title_nv2 h3 .red {
  color: #FF2E38;
}
.league_section_nv .league_body .league_progress {
  max-width: 35.8rem;
  width: 100%;
}
@media (max-width: 991px) {
  .league_section_nv .league_body .league_progress {
    max-width: 100%;
  }
}
.league_section_nv .league_body .league_progress .league_progress_box {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: url("../img/progress-cardbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1.7rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxLogo {
  width: 10rem;
  border: 1.923px solid rgba(240, 39, 49, 0.2);
  background: rgba(255, 26, 26, 0.1);
  flex-shrink: 0;
  padding: 0.8rem 0.8rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxLogo img {
  width: 100%;
}
@media (max-width: 575px) {
  .league_section_nv .league_body .league_progress .league_progress_box .progress_boxLogo {
    width: 9rem;
  }
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv {
  width: 100%;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_title h4 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #FFF;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_title h4 span {
  color: #F02731;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_title p {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #FFF;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_text {
  margin-bottom: 0.8rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  color: #FFF;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_text p span {
  color: #F02731;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_client {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_client .client_item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_client .client_item img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  background: #FBA1A9;
  border-radius: 50%;
  box-shadow: 0 0 0 0.588px #FF5B63;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_client .client_item p {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .progress_boxDetails_client .question_sign img {
  width: 2rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider {
  margin: 1rem 0rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider .slider-wrap {
  position: relative;
  height: 1.2rem;
  border-radius: 5rem;
  border: 1px solid rgba(240, 39, 49, 0.5);
  overflow: visible;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider .slider-wrap .progress {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, rgba(255, 13, 28, 0.6) 0%, rgba(255, 13, 28, 0.6) 49.52%, rgba(255, 13, 28, 0.36) 100%);
  border-radius: 5rem;
  z-index: 1;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider .slider-wrap input[type=range] {
  position: absolute;
  width: 100%;
  height: 2.4rem;
  background: transparent;
  -webkit-appearance: none;
  z-index: 2;
  direction: rtl;
  cursor: pointer;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider .slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../img/move-thumb-icon.png") no-repeat center;
  background-size: 2.5rem;
  border: none;
  cursor: pointer;
  margin-top: -1.2rem;
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider .slider-wrap input[type=range]::-moz-range-thumb {
  width: 2.5rem;
  height: 2.5rem;
  background: url("../img/move-thumb-icon.png") no-repeat center;
  background-size: 2.5rem;
  border: none;
  cursor: pointer;
  transform: translateY(-0.8rem);
}
.league_section_nv .league_body .league_progress .league_progress_box .progress_boxDetailsnv .range_slider .slider-wrap input[type=range]::-moz-range-track {
  background: transparent;
}
.league_section_nv .league_body .league_progress .league_progress_team {
  background: #121212;
  box-shadow: 0 0.4rem 5.7rem 0 rgba(255, 255, 255, 0.06) inset, 0 2px 28px 0 rgba(255, 255, 255, 0.25) inset;
  padding: 1.6rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 8.7rem;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_text {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_text h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_text .pteam_logo {
  border: 1px solid rgba(240, 39, 49, 0.2);
  background: rgba(255, 26, 26, 0.1);
  padding: 0.4rem;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_text .pteam_logo img {
  width: 4.4rem;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: initial;
  color: #F9F9FF;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img {
  display: flex;
  align-items: center;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  margin-left: -1.2rem;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img.pi1 {
  z-index: 6;
  position: relative;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img.pi2 {
  z-index: 5;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img.pi3 {
  z-index: 4;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img.pi4 {
  z-index: 3;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img.pi5 {
  z-index: 2;
}
.league_section_nv .league_body .league_progress .league_progress_team .progress_team_img img.pi6 {
  z-index: 1;
  margin-left: 0;
}
.league_section_nv .league_body .league_leaderboard {
  max-width: 40.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .league_section_nv .league_body .league_leaderboard {
    max-width: 100%;
  }
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card {
  background: #121212;
  padding: 2.4rem 1.6rem;
  border-bottom: 1px solid #260F0F;
  box-shadow: 0 4px 57px 0 rgba(255, 26, 26, 0.03) inset, 0 2px 28px 0 rgba(255, 26, 26, 0.4) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 10.4rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card.card_v2 {
  background: #121212;
  border-bottom: 1px solid #260F0F;
  box-shadow: 0 2px 35px 0 rgba(246, 153, 41, 0.35) inset;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card.card_v3 {
  background: #121212;
  border-bottom: 1px solid #260F0F;
  box-shadow: 0 2px 28px 0 rgba(55, 174, 72, 0.4) inset;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
@media (max-width: 575px) {
  .league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left {
    gap: 1.5rem;
  }
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left h5 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: #EE6E15;
  direction: ltr;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left h5.text_color2 {
  color: #91949B;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left h5.text_color3 {
  color: #917969;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left h4 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left h4 span {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  background: var(--Linear, linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_left h4 img {
  width: 1.6rem;
  margin-left: 0.2rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right h3.text2 {
  background: linear-gradient(278deg, #808080 3.38%, #929292 22.02%, #C2C2C2 58.35%, #DEDEDE 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right h3.text3 {
  color: rgba(255, 113, 41, 0.7);
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .leaderboard_card_logo {
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(240, 39, 49, 0.2);
  padding: 0.4rem 0.4rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .leaderboard_card_logo img {
  width: 4.4rem;
}
@media (max-width: 575px) {
  .league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .leaderboard_card_logo img {
    width: 4rem;
  }
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: initial;
  color: #F9F9FF;
  margin-bottom: 1rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile {
  display: flex;
  align-items: center;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  margin-left: -1.2rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img.pi1 {
  z-index: 6;
  position: relative;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img.pi2 {
  z-index: 5;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img.pi3 {
  z-index: 4;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img.pi4 {
  z-index: 3;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img.pi5 {
  z-index: 2;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_card .leaderboard_card_right .team_profile img.pi6 {
  z-index: 1;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_textnv {
  padding: 2.7rem 1.6rem;
  background-image: url("../img/leaderboard-textbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_textnv p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 134%;
  color: #FFF;
  text-align: center;
  max-width: 33.8rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}
@media (max-width: 575px) {
  .league_section_nv .league_body .league_leaderboard .leaderboard_textnv p {
    font-size: 1.6rem;
  }
}
.league_section_nv .league_body .league_leaderboard .leaderboard_textnv a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 15.4rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  margin: 0 auto;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #F02731;
  box-shadow: 0 0.2rem 1.77rem 0 rgba(249, 204, 97, 0.54) inset;
  transition: 0.2s all ease;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_textnv a img {
  width: 2rem;
}
.league_section_nv .league_body .league_leaderboard .leaderboard_textnv a:hover {
  opacity: 0.85;
}
.league_section_nv .league_body .league_awards {
  max-width: 31.2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .league_section_nv .league_body .league_awards {
    max-width: 100%;
  }
}
.league_section_nv .league_body .league_awards .awards_card {
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 2rem;
}
.league_section_nv .league_body .league_awards .awards_card:last-child {
  margin-bottom: 0rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_img img {
  max-width: 12.3rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_img .headphone {
  width: 6.9rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_img .keyboard {
  width: 12.3rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_img .games {
  width: 10rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_text span {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.league_section_nv .league_body .league_awards .awards_card .awards_text span.gray {
  background: linear-gradient(278deg, #808080 3.38%, #929292 22.02%, #C2C2C2 58.35%, #DEDEDE 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.league_section_nv .league_body .league_awards .awards_card .awards_text span.opacity70 {
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.7) 3.38%, rgba(228, 105, 18, 0.7) 22.95%, rgba(246, 153, 41, 0.7) 63.01%, rgba(253, 172, 51, 0.7) 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.league_section_nv .league_body .league_awards .awards_card .awards_text p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin: 0.6rem 0rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_text h4 {
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  background: var(--Linear, linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.league_section_nv .league_body .league_awards .awards_card .awards_text h4 img {
  width: 2.2rem;
}
.league_section_nv .hidden {
  display: none;
}

.leader_img img {
  width: 5.2rem;
}

.leader_phonix {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.leader_phonix span {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
.leader_phonix img {
  width: 2rem;
  background: rgba(255, 26, 26, 0.1);
  border: 0.385px solid rgba(240, 39, 49, 0.2);
  padding: 0.15rem;
}

.progress_boxTeam_profile {
  flex-shrink: 0;
}
.progress_boxTeam_profile img {
  width: 9.4rem;
}
@media (max-width: 575px) {
  .progress_boxTeam_profile img {
    width: 8.5rem;
  }
}

.leader_details_textnv p {
  margin-bottom: 0.8rem;
}

.progress_team_icon img {
  width: 6.1rem;
}

.notify_dropdown {
  width: 40rem;
  background: #080808;
  border: 1px solid #2E2222;
  box-shadow: -4.5rem -1.4rem 17rem rgba(255, 26, 26, 0.12) inset;
  left: -3rem !important;
  right: initial !important;
  margin-top: 1.5rem !important;
}
@media (max-width: 991px) {
  .notify_dropdown {
    position: fixed !important;
    top: 10% !important;
    left: 50% !important;
    bottom: initial !important;
    right: initial !important;
    transform: translateX(-50%) !important;
    z-index: 9999;
  }
}
.notify_dropdown .border_tl {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #FF2A34;
  border-left: 1px solid #FF2A34;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.notify_dropdown .border_tr {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #FF2A34;
  border-right: 1px solid #FF2A34;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.notify_dropdown .border_bl {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #FF2A34;
  border-left: 1px solid #FF2A34;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.notify_dropdown .border_br {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #FF2A34;
  border-right: 1px solid #FF2A34;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}

.notifyModal_body {
  padding: 1.8rem 1.8rem 1.8rem 1.6rem;
  max-height: 56rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #961D23 #1D1D1D;
}
.notifyModal_body::-webkit-scrollbar {
  width: 0.4rem;
  border-radius: 1rem;
}
.notifyModal_body::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 1rem;
}
.notifyModal_body::-webkit-scrollbar-thumb {
  background: #961D23;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .notifyModal_body {
    padding: 2rem 1.5rem;
  }
}
.notifyModal_body .notifyModal_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.notifyModal_body .notifyModal_title h3 {
  font-size: 1.96rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_title h3 {
    font-size: 1.8rem;
  }
}
.notifyModal_body .notifyModal_title a {
  font-family: "Cooperative", sans-serif;
  font-size: 0.984rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #F02731;
  width: initial !important;
  height: initial !important;
  background: transparent !important;
}
.notifyModal_body .notifyModal_links {
  padding: 1.4rem 0rem 1.2rem;
  border-bottom: 1px solid #360E10;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_links {
    gap: 0.6rem;
  }
}
.notifyModal_body .notifyModal_links a {
  font-size: 0.984rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: rgba(240, 39, 49, 0.1);
  border: 0.6px solid rgba(240, 39, 49, 0.3);
  display: inline-block;
  padding: 0.4rem 0.9rem;
  width: initial !important;
  height: initial !important;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_links a:hover, .notifyModal_body .notifyModal_links a.active {
  background: #F02731;
  border-color: rgba(240, 39, 49, 0.3);
  color: #F5F6FF;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_links a {
    font-size: 0.9rem;
  }
}
.notifyModal_body .notifyModal_content {
  padding-top: 2.4rem;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_content {
    padding-top: 2rem;
  }
}
.notifyModal_body .notifyModal_content h3 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.23rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #FFF;
  opacity: 0.8;
  margin: 0;
}
.notifyModal_body .notifyModal_content .notifyModal_item {
  background: #0E0E0E;
  padding: 1.2rem 0.95rem;
  margin-top: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_content .notifyModal_item {
    padding: 1.2rem 0.9rem;
    margin-top: 1rem;
  }
}
.notifyModal_body .notifyModal_content .notifyModal_item .border_tl {
  width: 0.3rem;
  height: 0.3rem;
  border-top: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .border_tr {
  width: 0.3rem;
  height: 0.3rem;
  border-top: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .border_bl {
  width: 0.3rem;
  height: 0.3rem;
  border-bottom: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .border_br {
  width: 0.3rem;
  height: 0.3rem;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text {
  display: flex;
  align-items: center;
  gap: 0.73rem;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text img {
  width: 2.46rem;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text img {
    width: 2.2rem;
  }
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text h4 {
  font-size: 1.23rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text h4.text_green {
  color: #329E42;
}
@media (max-width: 575px) {
  .notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text h4 {
    font-size: 1.15rem;
  }
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 0.984rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: initial;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text p span {
  width: 0.2rem;
  height: 0.2rem;
  display: block;
  background: #D9D9D9;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_text p {
    font-size: 0.9rem;
  }
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_btn a {
  font-size: 0.984rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02rem;
  color: #F5F6FF;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #F02731;
  width: 7rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: 0rem 0.2rem 1.1rem 0rem rgba(249, 204, 97, 0.54) inset;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_btn a .border_tl {
  width: 0.35rem;
  height: 0.35rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_btn a .border_tr {
  width: 0.35rem;
  height: 0.35rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_btn a .border_bl {
  width: 0.35rem;
  height: 0.35rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_btn a .border_br {
  width: 0.35rem;
  height: 0.35rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.notifyModal_body .notifyModal_content .notifyModal_item .notifyModal_btn a:hover span {
  transform: scale(1.25);
}

.user_fixed {
  position: fixed;
  top: 17.8rem;
  left: 6rem;
  z-index: 99999;
}
@media (max-width: 991px) {
  .user_fixed {
    left: 4rem;
    top: 17rem;
  }
}
@media (max-width: 767px) {
  .user_fixed {
    left: 2rem;
    top: 16rem;
  }
}
@media (max-width: 575px) {
  .user_fixed {
    left: 1.5rem;
    top: 10rem;
  }
}
.user_fixed button {
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.user_fixed button img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  box-shadow: 0rem 0rem 1.5rem rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .user_fixed button img {
    width: 4rem;
    height: 4rem;
  }
}

.userfixed_offcanvas {
  width: 31.2rem !important;
  background-image: url("../img/userfixed_offcanvas-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  padding: 2.4rem 2.4rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body {
  padding-top: 3rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .close_btn {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  right: -2rem;
  top: 0rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .close_btn img {
  width: 4rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .title_text {
  margin-bottom: 2rem;
  display: none;
}
.userfixed_offcanvas .userfixed_offcanvas_body .title_text.active {
  display: block;
}
.userfixed_offcanvas .userfixed_offcanvas_body .title_text h3 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
}
.userfixed_offcanvas .userfixed_offcanvas_body .tab_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.userfixed_offcanvas .userfixed_offcanvas_body .tab_links a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.032rem;
  color: #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 49.5%;
  display: block;
  text-align: center;
  padding: 1.6rem 1rem;
  transition: 0.2s all ease;
}
.userfixed_offcanvas .userfixed_offcanvas_body .tab_links a:hover {
  border-color: rgba(240, 39, 49, 0.2);
}
.userfixed_offcanvas .userfixed_offcanvas_body .tab_links a.active {
  background: linear-gradient(180deg, rgba(255, 26, 26, 0) 0%, rgba(255, 26, 26, 0.3) 100%);
  border-color: rgba(240, 39, 49, 0.2);
  color: #FFFFFF;
}
.userfixed_offcanvas .userfixed_offcanvas_body .tab-content {
  margin-top: 2.4rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box {
  background: linear-gradient(180deg, rgba(22, 20, 16, 0) 0%, rgba(208, 29, 33, 0.8) 100%);
  padding: 1.6rem 1.6rem;
  display: none;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box.active {
  display: block;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: #F5F5F5;
  margin: 0;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_btn {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: block;
  padding: 0.8rem 1rem;
  text-align: center;
  box-shadow: 0 0.2rem 1.7rem 0 rgba(249, 204, 97, 0.54) inset;
  position: relative;
  margin-top: 2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_btn .border_tl {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_btn .border_tr {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_btn .border_bl {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_btn .border_br {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_box_user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .lobby_box .lobby_box_user img {
  width: 3.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box {
  background: rgba(240, 39, 49, 0.05);
  padding: 1.6rem 1.6rem;
  margin-top: 1.6rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_title h4 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: #F5F5F5;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_title a img {
  width: 2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #F5F5F5;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_item p img {
  width: 3.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_item .dot_btn .dot_icon {
  width: 2.4rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .group_box_item .add_fbtn {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  width: 7.8rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0.2rem 1.77rem 0 rgba(249, 204, 97, 0.54) inset;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .addgroup_text a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #F5F5F5;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .group_box .addgroup_text a img {
  width: 3.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box {
  background: rgba(240, 39, 49, 0.05);
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box:last-child {
  margin-bottom: 0rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box .request_item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box .request_item img {
  width: 3.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box .request_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  color: #F5F5F5;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box .icon_list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.userfixed_offcanvas .userfixed_offcanvas_body .request_box .icon_list img {
  width: 2.4rem;
}

.signup_form_section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .signup_form_section {
    padding: 5.4rem 0rem;
  }
}
.signup_form_section .section_bg_shape01 {
  position: absolute;
  top: 12.1rem;
  left: 50%;
  transform: translateX(-50%);
}
.signup_form_section .section_bg_shape01 img {
  width: 93.7rem;
}
@media (max-width: 991px) {
  .signup_form_section .section_bg_shape01 img {
    width: 65rem;
  }
}
@media (max-width: 767px) {
  .signup_form_section .section_bg_shape01 img {
    width: 35rem;
  }
}
.signup_form_section .signup_form {
  max-width: 43rem;
  width: 100%;
  margin: 0 auto;
  background: #080808;
  border: 1px solid rgba(44, 19, 25, 0.5019607843);
  padding: 3.4rem 4rem;
  text-align: center;
  z-index: 999;
  position: relative;
}
@media (max-width: 767px) {
  .signup_form_section .signup_form {
    padding: 2.4rem 1.6rem;
  }
}
.signup_form_section .signup_form .form_wrapper {
  position: relative;
  z-index: 9;
}
.signup_form_section .signup_form .form_shape01 {
  position: absolute;
  right: 0;
  top: 0;
}
.signup_form_section .signup_form .form_shape01 img {
  width: 24.6rem;
}
.signup_form_section .signup_form .form_shape02 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.signup_form_section .signup_form .form_shape02 img {
  width: 25.5rem;
}
.signup_form_section .signup_form .form_title_box {
  padding-bottom: 2rem;
}
.signup_form_section .signup_form .form_title_box .form_title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #f5f5f5;
  padding-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .signup_form_section .signup_form .form_title_box .form_title {
    font-size: 3.2rem;
  }
}
.signup_form_section .signup_form .form_title_box .form_subtitle {
  font-size: 2rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.signup_form_section .signup_form .form_title_box .form_subtitle a {
  color: #ff0000;
}
.signup_form_section .signup_form .form_button_group {
  padding-bottom: 0.8rem;
}
.signup_form_section .signup_form .form_button_group .form_button {
  width: 100%;
  position: relative;
  font-size: 1.6rem;
  font-family: "Cooperative";
  font-weight: 400;
  line-height: 1.2;
  background: #281415;
  border: 1px solid #3E2B2C;
  color: #F9F9FF;
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  outline: none;
  margin-bottom: 0.8rem;
}
.signup_form_section .signup_form .form_button_group .form_button img {
  width: 2rem;
}
.signup_form_section .signup_form .form_button_group .form_button .border_tl {
  width: 1.4rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_button_group .form_button .border_tr {
  width: 1.4rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_button_group .form_button .border_bl {
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_button_group .form_button .border_br {
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_button_group .form_button:hover span {
  border-color: #F02731;
}
.signup_form_section .signup_form .option_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding-bottom: 0.8rem;
}
.signup_form_section .signup_form .option_title img {
  width: 8.4rem;
}
.signup_form_section .signup_form .option_title h4 {
  font-size: 1.4rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #CECECE;
}
.signup_form_section .signup_form .input_box {
  text-align: right;
  padding-bottom: 0.9rem;
}
.signup_form_section .signup_form .input_box label {
  font-size: 1.4rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 500;
  line-height: 1.42;
  color: #CECECE;
  padding-bottom: 0.4rem;
}
.signup_form_section .signup_form .input_box .input_field {
  position: relative;
}
.signup_form_section .signup_form .input_box .input_field input {
  width: 100%;
  height: 4.4rem;
  display: block;
  font-size: 1.4rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  background: #212121;
  color: #D3D3D3;
  text-align: right;
  border: 1px solid #303030;
  padding: 0.5rem 1.2rem;
}
.signup_form_section .signup_form .input_box .input_field input::placeholder {
  color: #D3D3D3;
  opacity: 1;
}
.signup_form_section .signup_form .input_box .input_field input:focus {
  border-color: #3F1717;
}
.signup_form_section .signup_form .input_box .input_field .date_input {
  direction: ltr;
}
.signup_form_section .signup_form .input_box .input_field .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .input_box .input_field .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .input_box .input_field .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .input_box .input_field .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .check_box {
  display: flex;
  align-items: flex-start;
  padding: 0.6rem 0 2rem;
  gap: 0.8rem;
}
.signup_form_section .signup_form .check_box .form-check-input {
  width: 1.85rem;
  height: 1.85rem;
  background: #212121;
  border: 1px solid #FFF;
  display: block;
  border-radius: 0.4rem;
  margin: 0;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.signup_form_section .signup_form .check_box .form-check-input:focus {
  border-color: #FFF;
  outline: 0;
  box-shadow: none;
}
.signup_form_section .signup_form .check_box .form-check-input:checked[type=checkbox] {
  background-image: url(../img/check-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
  background-color: #FFF;
  border-color: transparent;
}
.signup_form_section .signup_form .check_box label {
  font-size: 1.54rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  display: block;
  text-align: right;
  cursor: pointer;
}
.signup_form_section .signup_form .form_submit_button {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-family: "Cooperative";
  font-weight: 400;
  line-height: 1.2;
  background: #f02731;
  color: #f9f9ff;
  padding: 1.2rem 2rem;
  border: none;
  outline: none;
}
.signup_form_section .signup_form .form_submit_button img {
  width: 2rem;
}
.signup_form_section .signup_form .form_submit_button .border_tl {
  width: 1.4rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_submit_button .border_tr {
  width: 1.4rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_submit_button .border_bl {
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_submit_button .border_br {
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_form_section .signup_form .form_submit_button:hover span {
  border-color: #FDE9BC;
  transform: scale(1.15);
}
.signup_form_section .section_bg_shape02 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.signup_form_section .section_bg_shape02 img {
  width: 68.7rem;
}
@media (max-width: 991px) {
  .signup_form_section .section_bg_shape02 img {
    width: 35rem;
  }
}
@media (max-width: 767px) {
  .signup_form_section .section_bg_shape02 img {
    width: 30rem;
  }
}
.signup_form_section .section_bg_shape03 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.signup_form_section .section_bg_shape03 img {
  width: 67.5rem;
}
@media (max-width: 991px) {
  .signup_form_section .section_bg_shape03 img {
    width: 35rem;
  }
}
@media (max-width: 767px) {
  .signup_form_section .section_bg_shape03 img {
    width: 30rem;
  }
}

.login_form_section {
  padding: 6rem 0 5rem;
}
@media (max-width: 991px) {
  .login_form_section {
    padding: 8.5rem 0rem;
  }
}
@media (max-width: 767px) {
  .login_form_section {
    padding: 6rem 0rem;
  }
}
.login_form_section .login_form {
  padding: 8.2rem 4rem;
}
@media (max-width: 767px) {
  .login_form_section .login_form {
    padding: 5rem 1.6rem;
  }
}
.login_form_section .login_form .form_title_box .form_subtitle {
  text-align: center;
  padding: 0;
}
.login_form_section .login_form .form_submit_button {
  margin: 2rem 0;
}
.login_form_section .login_form .forget_text {
  text-align: right;
  padding-bottom: 2rem;
}
.login_form_section .login_form .forget_text a {
  font-size: 1.6rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #f02731;
}
.login_form_section .login_form .option_title {
  padding-bottom: 1.6rem;
}

.password_from_section .password_from {
  padding: 4.8rem 4rem;
}
@media (max-width: 767px) {
  .password_from_section .password_from {
    padding: 4rem 2rem;
  }
}
.password_from_section .password_from .input_box {
  margin-bottom: 2rem;
}
.password_from_section .password_from .form_submit_button {
  margin-bottom: 1.6rem;
}
.password_from_section .password_from .back_button {
  font-size: 1.6rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  gap: 0.8rem;
  border: none;
  outline: none;
}
.password_from_section .password_from .back_button img {
  width: 2rem;
  transition: 0.25s all ease;
}
.password_from_section .password_from .back_button:hover img {
  transform: translateX(0.6rem);
}

.verification_section .signup_form {
  padding: 6rem 4rem;
}
@media (max-width: 767px) {
  .verification_section .signup_form {
    padding: 4rem 2rem;
  }
}
.verification_section .signup_form .verification_inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  padding-bottom: 2rem;
}
.verification_section .signup_form .verification_inputs .code_input {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
}
.verification_section .signup_form .verification_inputs .code_input input {
  width: 4.6rem;
  height: 4.6rem;
  background: #282222;
  border: 1px solid #343030;
  display: block;
  padding: 0.5rem 1rem;
  outline: none;
  font-size: 1.5rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #D3D3D3;
}
.verification_section .signup_form .verification_inputs .code_input input::placeholder {
  color: #D3D3D3;
  opacity: 1;
}
.verification_section .signup_form .verification_inputs .code_input .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.verification_section .signup_form .verification_inputs .code_input .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.verification_section .signup_form .verification_inputs .code_input .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.verification_section .signup_form .verification_inputs .code_input .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}

.set_password_section .password_from {
  padding: 3.2rem 4rem;
}
@media (max-width: 767px) {
  .set_password_section .password_from {
    padding: 3.2rem 2rem;
  }
}
.set_password_section .password_from .input_box {
  margin: 0;
  margin-bottom: 0.9;
}
.set_password_section .password_from .form_submit_button {
  margin-top: 1.2rem;
}

.success_section .signup_form {
  padding: 7.5rem 4rem;
}
@media (max-width: 767px) {
  .success_section .signup_form {
    padding: 6rem 2rem;
  }
}
.success_section .signup_form .success_icon {
  padding-bottom: 2.4rem;
}
.success_section .signup_form .success_icon img {
  width: 10rem;
}

.signup_team_section .signup_team_wrapper {
  max-width: 88.8rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1111;
}
.signup_team_section .signup_team_wrapper .enter_title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #f5f5f5;
  padding-bottom: 6rem;
}
@media (max-width: 991px) {
  .signup_team_section .signup_team_wrapper .enter_title {
    font-size: 3.2rem;
    padding-bottom: 4.6rem;
  }
}
.signup_team_section .signup_team_wrapper .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
  padding-bottom: 2.3rem;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item {
  background: #080808;
  width: 100%;
  position: relative;
  padding: 6rem 0;
  border: 1px solid #2B0F13;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_shape01 {
  position: absolute;
  top: 0;
  right: 0;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_shape01 img {
  width: 100%;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main {
  position: relative;
  z-index: 11;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main .main_icon {
  padding-bottom: 3.2rem;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main .main_icon img {
  width: 8.5rem;
}
@media (max-width: 991px) {
  .signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main .main_icon img {
    width: 6.5rem;
  }
}
@media (max-width: 991px) {
  .signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main .main_icon {
    padding: 2rem;
  }
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main .cng_width img {
  width: 8rem;
}
@media (max-width: 991px) {
  .signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main .cng_width img {
    width: 6rem;
  }
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_main h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f5f5f5;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_shape02 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .item_shape02 img {
  width: 100%;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .border_tl {
  width: 1.3rem;
  height: 0.5rem;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .border_tr {
  width: 1.3rem;
  height: 0.5rem;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .border_bl {
  width: 1.3rem;
  height: 0.5rem;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .border_br {
  width: 1.3rem;
  height: 0.5rem;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .right_shape {
  width: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item .right_shape img {
  width: 100%;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item.active {
  border-color: #831111;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item.active .border_tl,
.signup_team_section .signup_team_wrapper .row a .signup_team_item.active .border_tr,
.signup_team_section .signup_team_wrapper .row a .signup_team_item.active .border_bl,
.signup_team_section .signup_team_wrapper .row a .signup_team_item.active .border_br {
  border-color: #D9232C;
}
.signup_team_section .signup_team_wrapper .row a .signup_team_item.active .right_shape {
  opacity: 1;
}
@media (max-width: 991px) {
  .signup_team_section .signup_team_wrapper .row a .signup_team_item {
    width: 22rem;
    height: 22rem;
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .signup_team_section .signup_team_wrapper .row a .signup_team_item {
    max-width: 32rem;
    width: 100%;
    height: 100%;
    padding: 6rem 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .signup_team_section .signup_team_wrapper .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}

.skip_button a {
  font-size: 2rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #F9F9FF;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}
.skip_button a img {
  width: 2.4rem;
}
.skip_button a:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .skip_button a {
    justify-content: center;
  }
}

.loginCard_section {
  padding: 8rem 0;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .loginCard_section {
    padding: 6rem 0rem;
  }
}
.loginCard_section .login_card_warpper {
  max-width: 115.5rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
.loginCard_section .login_card_warpper .wrapper_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4.2rem;
}
.loginCard_section .login_card_warpper .wrapper_top .login_title_box h3 {
  padding-bottom: 1.4rem;
}
.loginCard_section .login_card_warpper .wrapper_top .login_title_box h3 a {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #f5f5f5;
  border-bottom: 0.2rem solid #F5F5F5;
}
@media (max-width: 767px) {
  .loginCard_section .login_card_warpper .wrapper_top .login_title_box h3 a {
    font-size: 4rem;
  }
}
.loginCard_section .login_card_warpper .wrapper_top .login_title_box p {
  font-size: 2rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .loginCard_section .login_card_warpper .wrapper_top .login_title_box p {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  .loginCard_section .login_card_warpper .wrapper_top .login_title_box {
    width: 100%;
    padding-bottom: 2rem;
  }
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box {
  position: relative;
  width: 33rem;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .button {
  max-width: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  outline: none;
  margin-right: 0.3rem;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .button img {
  width: 2rem;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input {
  width: 100%;
  height: 4.4rem;
  position: relative;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input input {
  width: 33rem;
  height: 4.4rem;
  display: block;
  font-size: 1.4rem;
  font-family: "Cooperative", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  background: #212121;
  color: #D3D3D3;
  border: 1px solid #303030;
  padding: 0.5rem 4rem;
  outline: none;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input input::placeholder {
  color: #D3D3D3;
  opacity: 1;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input input:focus {
  border-color: #3F1717;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input .border_tl {
  width: 1.1rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input .border_tr {
  width: 1.1rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input .border_bl {
  width: 1.1rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .wrapper_top .search_input_box .search_input .border_br {
  width: 1.1rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
@media (max-width: 991px) {
  .loginCard_section .login_card_warpper .wrapper_top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.loginCard_section .login_card_warpper .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}
.loginCard_section .login_card_warpper .row .login_card a {
  display: block;
}
.loginCard_section .login_card_warpper .row .login_card .card_img {
  position: relative;
  margin-bottom: 1.6rem;
  border: 1px solid #3A1212;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .row .login_card .card_img img {
  width: 100%;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .row .login_card .card_img .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .row .login_card .card_img .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .row .login_card .card_img .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-left: 1px solid #a11b1b;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .row .login_card .card_img .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #a11b1b;
  border-right: 1px solid #a11b1b;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .row .login_card p {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.2s all ease;
}
@media (max-width: 767px) {
  .loginCard_section .login_card_warpper .row .login_card p {
    font-size: 2rem;
  }
}
.loginCard_section .login_card_warpper .row .login_card:hover .card_img {
  border-color: #F02731;
  position: relative;
}
.loginCard_section .login_card_warpper .row .login_card:hover .card_img span {
  border-color: transparent;
}
.loginCard_section .login_card_warpper .row .login_card:hover .card_text {
  color: #F02731;
}
.loginCard_section .login_card_warpper .button_wraper {
  display: flex;
  align-items: center;
  padding-top: 4.6rem;
}
@media (max-width: 767px) {
  .loginCard_section .login_card_warpper .button_wraper {
    justify-content: space-between;
  }
}
.loginCard_section .login_card_warpper .login_card_buttton {
  max-width: 35rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .loginCard_section .login_card_warpper .login_card_buttton {
    max-width: 20rem;
    margin: 0;
  }
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-family: "Cooperative";
  font-weight: 400;
  line-height: 1.2;
  background: #f02731;
  color: #f9f9ff;
  padding: 1.2rem 2rem;
  border: none;
  outline: none;
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button img {
  width: 2rem;
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button .border_tl {
  width: 1.4rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button .border_tr {
  width: 1.4rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button .border_bl {
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button .border_br {
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.loginCard_section .login_card_warpper .login_card_buttton .form_submit_button:hover span {
  border-color: #FDE9BC;
  transform: scale(1.15);
}

.team_section {
  padding: 1rem 0rem;
}
.team_section .team_title {
  margin-bottom: 2.4rem;
}
.team_section .team_title a {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  color: #F9F9FF;
  display: inline-flex;
  gap: 0.6rem;
}
.team_section .team_title a img {
  width: 2.4rem;
}
@media (max-width: 767px) {
  .team_section .team_title a {
    font-size: 1.9rem;
  }
}
.team_section .team_title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #F5F5F5;
  line-height: 115%;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 991px) {
  .team_section .team_title h2 {
    font-size: 3.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .team_section .team_title h2 {
    font-size: 3rem;
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
  }
}
.team_section .team_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  color: #CFCFCF;
}
@media (max-width: 767px) {
  .team_section .team_title p {
    font-size: 1.8rem;
  }
}
.team_section .team_wrapper {
  background: #080808;
  border: 1px solid #1A0D10;
}
.team_section .upload_wrapper {
  background: #150B0B;
  box-shadow: -4.5rem -1.4rem 5.4rem rgba(255, 26, 26, 0.12) inset;
}
.team_section .upload_wrapper .upload-content {
  width: 100%;
  padding: 3.2rem 2.4rem 3.8rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .team_section .upload_wrapper .upload-content {
    padding: 3rem 1.6rem;
    gap: 1.5rem;
  }
}
.team_section .upload_wrapper .upload-content img {
  max-height: 8rem;
}
.team_section .upload_wrapper .upload-content .logo_upload span {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #D9D9D9;
  border: 1px solid #F60606;
  margin-bottom: 1.2rem;
  position: relative;
}
.team_section .upload_wrapper .upload-content .logo_upload span img {
  width: 2.4rem;
}
.team_section .upload_wrapper .upload-content .logo_upload span .edit {
  width: 2.8rem;
  position: absolute;
  bottom: -1rem;
  left: -1rem;
}
.team_section .upload_wrapper .upload-content .logo_upload p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #D2CECE;
}
.team_section .upload_wrapper .upload-content .cover_photo_upload {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 20rem;
}
.team_section .upload_wrapper .upload-content .cover_photo_upload p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #D0CECE;
}
.team_section .upload_wrapper .upload-content .cover_photo_upload img {
  width: 2.4rem;
}
@media (max-width: 767px) {
  .team_section .upload_wrapper .upload-content .cover_photo_upload {
    padding-left: 1rem;
  }
}
.team_section .team_content {
  padding: 4.8rem 2.4rem 3.2rem;
}
@media (max-width: 767px) {
  .team_section .team_content {
    padding: 3rem 1.6rem;
  }
}
.team_section .team_content .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1.8rem;
}
.team_section .team_item h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #CECECE;
  margin-bottom: 0.6rem;
}
.team_section .team_item .social_item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.8rem 0rem 1.6rem;
  width: 50%;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .team_section .team_item .social_item {
    width: 100%;
  }
}
.team_section .team_item .social_item .social_box {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212121;
  border: 1px solid #303030;
  position: relative;
  transition: 0.2s all ease;
}
.team_section .team_item .social_item .social_box img {
  width: 2.5rem;
}
.team_section .team_item .social_item .social_box .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_item .social_box .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_item .social_box .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_item .social_box .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_item .social_box:hover span {
  transform: scale(1.2);
}
.team_section .team_item .social_item .social_box.selected {
  border: 0.625px solid rgba(55, 174, 72, 0.2);
  background: rgba(55, 174, 72, 0.1);
}
.team_section .team_item .social_item .social_box.selected span {
  border-color: #37AE48;
}
.team_section .team_item .social_selected_items {
  margin-top: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 26, 26, 0.1);
}
.team_section .team_item .social_selected_items h4 {
  padding-bottom: 1.6rem;
}
.team_section .team_item .social_selected_items .items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.team_section .team_item .social_selected_items .item {
  width: 11.4rem;
  height: 11.4rem;
  border: 1px solid rgba(240, 39, 49, 0.2);
  background: #251111;
  position: relative;
  padding: 1.2rem;
}
.team_section .team_item .social_selected_items .item .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_selected_items .item .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_selected_items .item .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_selected_items .item .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_section .team_item .social_selected_items .item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.4rem;
}
.team_section .team_item .social_selected_items .item .top button {
  background: rgba(255, 255, 255, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.team_section .team_item .social_selected_items .item .top button img {
  width: 1.75rem;
}
.team_section .team_item .social_selected_items .item .icon {
  width: 4.4rem;
  display: block;
  margin: auto;
}
.team_section .team_item .sponsor_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 3rem;
}
.team_section .team_item .sponsor_item a {
  width: 18.1rem;
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212121;
  position: relative;
}
@media (max-width: 767px) {
  .team_section .team_item .sponsor_item a {
    height: 5rem;
  }
}
.team_section .team_item .sponsor_item a img {
  width: 7.8rem;
}
@media (max-width: 767px) {
  .team_section .team_item .sponsor_item a img {
    width: 5.5rem;
  }
}
.team_section .team_item .sponsor_item a .sponsor1 {
  width: 14.1rem;
}
@media (max-width: 767px) {
  .team_section .team_item .sponsor_item a .sponsor1 {
    width: 8.5rem;
  }
}
.team_section .team_item .sponsor_item a .border_tl {
  width: 2.2rem;
  height: 1rem;
  border-top: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.team_section .team_item .sponsor_item a .border_tr {
  width: 2.2rem;
  height: 1rem;
  border-top: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.team_section .team_item .sponsor_item a .border_bl {
  width: 2.2rem;
  height: 1rem;
  border-bottom: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.team_section .team_item .sponsor_item a .border_br {
  width: 2.2rem;
  height: 1rem;
  border-bottom: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.team_section .team_item .sponsor_item a:hover span {
  border-color: #F02731;
}

.invite_box {
  background: #080808;
  padding: 6rem 6rem;
}
@media (max-width: 991px) {
  .invite_box {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .invite_box {
    padding: 3rem 1.5rem;
  }
}
.invite_box .invite_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3.8rem;
  border-bottom: 1px solid #212121;
}
@media (max-width: 767px) {
  .invite_box .invite_title {
    padding-bottom: 2.4rem;
  }
}
.invite_box .invite_title h2 {
  color: #F5F5F5;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .invite_box .invite_title h2 {
    font-size: 2.6rem;
  }
}
.invite_box .invite_title a {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #F9F9FF;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.invite_box .invite_title a img {
  width: 2.4rem;
}
@media (max-width: 767px) {
  .invite_box .invite_title a {
    font-size: 1.8rem;
    gap: 0.4rem;
  }
  .invite_box .invite_title a img {
    width: 2.2rem;
  }
}
.invite_box .invite_wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0rem;
  border-bottom: 1px solid #212121;
}
@media (max-width: 767px) {
  .invite_box .invite_wraper {
    padding: 2rem 0rem;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
  }
}
.invite_box .invite_wraper .invite_item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .invite_box .invite_wraper .invite_item {
    gap: 1.2rem;
  }
}
.invite_box .invite_wraper .invite_item img {
  width: 7rem;
}
@media (max-width: 767px) {
  .invite_box .invite_wraper .invite_item img {
    width: 5rem;
  }
}
.invite_box .invite_wraper .invite_item .invite_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #F9F9FF;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .invite_box .invite_wraper .invite_item .invite_text h4 {
    font-size: 1.8rem;
  }
}
.invite_box .invite_wraper .invite_item .invite_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #F9F9FF;
}
@media (max-width: 767px) {
  .invite_box .invite_wraper .invite_item .invite_text p {
    font-size: 1.45rem;
  }
}
.invite_box .invite_wraper .invite_item .invite_text p a {
  color: #F02731;
  text-decoration: underline;
}
.invite_box .search_userbar {
  padding: 3.2rem 0rem;
  border-bottom: 1px solid #212121;
}
@media (max-width: 767px) {
  .invite_box .search_userbar {
    padding: 2.5rem 0rem;
  }
}
.invite_box .friend_list {
  display: none;
}
.invite_box .friend_list .friend_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
  padding: 1.6rem 0rem;
}
.invite_box .friend_list .friend_item .friend_text {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .invite_box .friend_list .friend_item .friend_text {
    gap: 1.2rem;
  }
}
.invite_box .friend_list .friend_item .friend_text img {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .invite_box .friend_list .friend_item .friend_text img {
    width: 4.6rem;
    height: 4.6rem;
  }
}
.invite_box .friend_list .friend_item .friend_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #F9F9FF;
}
@media (max-width: 767px) {
  .invite_box .friend_list .friend_item .friend_text p {
    font-size: 2rem;
  }
}
.invite_box .friend_list.show {
  display: block;
}
.invite_box .cancel_btn {
  background: #281415;
  border-color: #651418;
}
.invite_box .cancel_btn span {
  border-color: #DA232D;
}

.continue_btn {
  padding-top: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .continue_btn {
    padding-top: 3rem;
  }
}

.success_title {
  padding: 0.6rem 0rem 3rem !important;
}

.checklist_select {
  width: 100%;
  position: relative;
}
.checklist_select .checklist_btn {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #D4D4D4;
  width: 100%;
  height: 4.4rem;
  background: #262626;
  border: 1px solid #353535;
  padding-left: 1rem;
  padding-right: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #C7222E #1D1D1D;
}
.checklist_select .checklist_btn::-webkit-scrollbar {
  width: 0.4rem;
  border-radius: 1rem;
}
.checklist_select .checklist_btn::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 1rem;
}
.checklist_select .checklist_btn::-webkit-scrollbar-thumb {
  background: #C7222E;
  border-radius: 1rem;
}
.checklist_select .checklist_btn .arrow {
  transition: 0.2s all ease;
}
.checklist_select .checklist_btn .arrow img {
  width: 2rem;
  margin: 0;
}
.checklist_select .checklist_btn .selected {
  display: flex;
  align-items: center;
}
.checklist_select .checklist_btn .selected_item {
  background: #666666;
  padding: 0.15rem 0.5rem;
  margin-left: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  white-space: nowrap;
}
.checklist_select .checklist_btn .selected_item .remove_item {
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
}
.checklist_select .checklist_btn img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: cover;
}
.checklist_select .checklist_btn .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.checklist_select .checklist_btn .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.checklist_select .checklist_btn .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.checklist_select .checklist_btn .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.checklist_select .checklist_btn:focus {
  border-color: #3F1717;
}
.checklist_select .checklist_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 30rem;
  overflow: auto;
  background: #666666;
  border: 1px solid #7E7E7E;
  margin-top: 1rem;
  display: none;
  z-index: 2030;
}
.checklist_select .checklist_dropdown li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #E0E0E0;
  line-height: 132%;
  padding: 0rem 1.2rem;
  border-bottom: 1px solid #7E7E7E;
  text-align: right;
  cursor: pointer;
  transition: 0.2s all ease;
}
.checklist_select .checklist_dropdown li:last-child {
  border-bottom: none;
}
.checklist_select .checklist_dropdown li:hover, .checklist_select .checklist_dropdown li.checked {
  background: #F02731;
  color: #FFF;
}
.checklist_select .checklist_dropdown li .custom_checkBox label {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.checklist_select .checklist_dropdown li .custom_checkBox label img {
  margin-left: 0.5rem;
}
.checklist_select .checklist_dropdown .clear_allBtn {
  padding: 0;
}
.checklist_select .checklist_dropdown .clear_allBtn:hover {
  opacity: 0.85;
}
.checklist_select .checklist_dropdown .clear_allBtn button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 132%;
  background: #F02731;
  color: #FFF;
  padding: 1.2rem 1.2rem;
  border: none;
  outline: none;
  width: 100%;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all ease;
}
.checklist_select .checklist_dropdown .clear_allBtn button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checklist_select.open .arrow {
  transform: rotate(180deg);
}
.checklist_select.open .checklist_dropdown {
  display: block;
}

.country_select img {
  width: 1.8rem;
  height: 1.3rem;
  object-fit: cover;
  margin-left: 0.4rem;
}

.delete_lobyBtn {
  padding-top: 6rem;
  text-align: left;
}
@media (max-width: 991px) {
  .delete_lobyBtn {
    padding-top: 4rem;
  }
}
.delete_lobyBtn a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F02731;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.delete_lobyBtn a img {
  width: 2rem;
}

.lobyPlayer_wraper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 6rem;
  row-gap: 3rem;
}
.lobyPlayer_wraper .lobyPlayer_item {
  position: relative;
  text-align: center;
}
.lobyPlayer_wraper .lobyPlayer_item img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
.lobyPlayer_wraper .lobyPlayer_item span {
  font-family: "Cooperative", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: #F9F9FF;
  display: block;
  text-align: center;
  margin-top: 1.6rem;
}
.lobyPlayer_wraper .lobyPlayer_item .cross_btn {
  margin: 0;
  position: absolute;
  top: -0.4rem;
  right: -0.2rem;
  cursor: pointer;
}
.lobyPlayer_wraper .lobyPlayer_item .cross_btn img {
  width: 2rem;
  height: initial;
}

.friend_inactive {
  position: relative;
}
.friend_inactive .inactive {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  background: #F02731;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0.2rem;
}

.friend_active {
  position: relative;
}
.friend_active .active {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  background: #00C147;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0.2rem;
}

.news_pt60 {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .news_pt60 {
    padding-top: 5rem;
  }
}

.news_pt40 {
  padding-top: 4rem;
}

.pagination_wraper {
  padding: 4rem 0rem 8rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .pagination_wraper {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-bottom: 6rem;
  }
}
.pagination_wraper .pagination {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .pagination_wraper .pagination {
    margin: 0;
  }
}
.pagination_wraper .pagination ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.pagination_wraper .pagination ul a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F5F6FF;
  line-height: 120%;
  width: 3.4rem;
  height: 3.4rem;
  background: #251011;
  border: 1px solid #62171B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all ease;
}
.pagination_wraper .pagination ul a img {
  width: 1.6rem;
}
.pagination_wraper .pagination ul a:hover {
  background: #62171B;
}
.pagination_wraper .pagination ul a.active {
  background: #F02731;
}
.pagination_wraper .page_select {
  width: 7.8rem;
  position: relative;
}
.pagination_wraper .page_select .select_btn {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #F5F6FF;
  line-height: 120%;
  width: 100%;
  height: 3.4rem;
  background: #251011;
  border: 1px solid #62171B;
  padding-left: 1.2rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.pagination_wraper .page_select .select_btn .arrow {
  transition: 0.2s all ease;
}
.pagination_wraper .page_select .select_btn .arrow img {
  width: 2rem;
}
.pagination_wraper .page_select .select_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 13rem;
  overflow: auto;
  background: #251011;
  border: 1px solid #62171B;
  margin-top: 0.5rem;
  display: none;
  z-index: 2026;
}
.pagination_wraper .page_select .select_dropdown li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #F5F6FF;
  line-height: 120%;
  padding: 0.6rem 1.2rem;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: 0.2s all ease;
}
.pagination_wraper .page_select .select_dropdown li:hover {
  background: #62171B;
}
.pagination_wraper .page_select .select_dropdown li.active {
  background: #F02731;
}
.pagination_wraper .page_select.open .arrow {
  transform: rotate(180deg);
}
.pagination_wraper .page_select.open .select_dropdown {
  display: block;
}

.tabMenu_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tabMenu_wrap .tab_links {
  display: flex;
  align-items: center;
}
.tabMenu_wrap .tab_links a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
  background: #151515;
  min-width: 8.5rem;
  height: 5.4rem;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 0rem;
  border-bottom: 0.2rem solid #41191B;
  transition: 0.2s all ease;
  position: relative;
}
.tabMenu_wrap .tab_links a img {
  width: 1.6rem;
}
@media (max-width: 767px) {
  .tabMenu_wrap .tab_links a {
    font-size: 1.5rem;
    min-width: 7.5rem;
    height: 5rem;
    padding: 0.8rem 1.8rem;
  }
  .tabMenu_wrap .tab_links a img {
    width: 1.5rem;
  }
}
.tabMenu_wrap .tab_links a:hover {
  border-color: #751517;
}
.tabMenu_wrap .tab_links a.active {
  border-color: #751517;
  background: linear-gradient(to bottom, #0E0E0E, #541111);
}
.tabMenu_wrap .main_menuLinks a.active::after {
  content: "";
  width: 1px;
  height: 3.9rem;
  display: block;
  background: #262626;
  position: absolute;
  top: 100%;
  right: 56.5%;
  z-index: -1;
}
@media (max-width: 991px) {
  .tabMenu_wrap .main_menuLinks a.active::after {
    right: 56%;
  }
}
@media (max-width: 767px) {
  .tabMenu_wrap .main_menuLinks a.active::after {
    right: 66%;
    height: 3.4rem;
  }
}
@media (max-width: 575px) {
  .tabMenu_wrap .main_menuLinks a.active::after {
    right: 48.8%;
  }
}
@media (max-width: 767px) {
  .tabMenu_wrap .main_menuLinks a:last-child.active::after {
    right: 52%;
  }
}
@media (max-width: 575px) {
  .tabMenu_wrap .main_menuLinks a:last-child.active::after {
    right: 21%;
  }
}
.tabMenu_wrap .add_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #F02731;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
  transition: 0.2s all ease;
}
@media (max-width: 767px) {
  .tabMenu_wrap .add_btn a {
    font-size: 1.4rem;
    padding: 1.1rem 1.6rem 1.1rem 1.3rem;
  }
}
.tabMenu_wrap .add_btn a img {
  width: 2rem;
}
@media (max-width: 767px) {
  .tabMenu_wrap .add_btn a img {
    width: 1.8rem;
  }
}
.tabMenu_wrap .add_btn a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FDEBC2;
  border-left: 1px solid #FDEBC2;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tabMenu_wrap .add_btn a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FDEBC2;
  border-right: 1px solid #FDEBC2;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tabMenu_wrap .add_btn a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FDEBC2;
  border-left: 1px solid #FDEBC2;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tabMenu_wrap .add_btn a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FDEBC2;
  border-right: 1px solid #FDEBC2;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tabMenu_wrap .add_btn a:hover span {
  transform: scale(1.25);
  border-color: #FFFFFF;
}

.menu_wraper2 {
  padding-top: 5.6rem;
  padding-bottom: 6rem;
}
@media (max-width: 991px) {
  .menu_wraper2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.5rem;
  }
}
@media (max-width: 767px) {
  .menu_wraper2 {
    gap: 2.5rem;
    padding-bottom: 4.5rem;
    padding-top: 0rem;
  }
}
@media (max-width: 767px) {
  .menu_wraper2 .tab_links {
    width: 100%;
    display: block;
  }
}
.menu_wraper2 .tab_links ul {
  display: flex;
  align-items: center;
  gap: 1px;
  position: relative;
}
@media (max-width: 767px) {
  .menu_wraper2 .tab_links ul {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #F02731 #1D1D1D;
  }
  .menu_wraper2 .tab_links ul::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 1rem;
  }
  .menu_wraper2 .tab_links ul::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 1rem;
  }
  .menu_wraper2 .tab_links ul::-webkit-scrollbar-thumb {
    background: #F02731;
    border-radius: 1rem;
  }
  .menu_wraper2 .tab_links ul {
    padding-top: 5.6rem;
    padding-bottom: 2rem;
  }
}
.menu_wraper2 .tab_links ul::before {
  content: "";
  width: 85.2%;
  height: 1px;
  display: block;
  background: #262626;
  position: absolute;
  top: -2.5rem;
  left: 49.8%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .menu_wraper2 .tab_links ul::before {
    display: none;
  }
}
.menu_wraper2 .tab_links ul li {
  position: relative;
  white-space: nowrap;
}
.menu_wraper2 .tab_links ul li::before {
  content: "";
  width: 1px;
  height: 2.5rem;
  display: block;
  background: #262626;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.menu_wraper2 .tab_links ul li:first-child::before {
  left: 69%;
}
@media (max-width: 767px) {
  .menu_wraper2 .tab_links ul li:first-child::before {
    left: 50%;
  }
}
.menu_wraper2 .tab_links ul li::after {
  content: "";
  width: 1px;
  height: 60%;
  display: block;
  background: #373737;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1px;
}
.menu_wraper2 .tab_links ul li:last-child::after {
  display: none;
}
.menu_wraper2 .tab_links a {
  background: #212121;
  border-color: #373737;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .menu_wraper2 .tab_links a {
    min-width: 100%;
    text-align: center;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .menu_wraper2 .tab_links a::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #262626;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.menu_wraper2 .tab_links a::after {
  content: "";
  width: 75%;
  height: 0.4rem;
  display: block;
  background: #961D23;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.2rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all ease;
}
@media (max-width: 767px) {
  .menu_wraper2 .tab_links a::after {
    height: 0.3rem;
  }
}
.menu_wraper2 .tab_links a.active::after {
  opacity: 1;
  visibility: visible;
}

.search_game_wraper {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 991px) {
  .search_game_wraper {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .search_game_wraper {
    width: 100%;
    gap: 2rem;
  }
}

.gameChange_wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .gameChange_wrap {
    gap: 1.6rem;
  }
}
.gameChange_wrap .gameChange_arrow button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 2.4rem;
  text-align: center;
  margin: 0.2rem 0rem;
}
.gameChange_wrap .gameChange_arrow button img {
  width: 2.4rem;
}
.gameChange_wrap .gameChange_arrow button.active img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(99%) saturate(5925%) hue-rotate(345deg) brightness(96%) contrast(102%);
}
.gameChange_wrap .gameChange_item {
  width: 5.6rem;
  height: 5.6rem;
  border: 1px solid #353535;
  overflow: hidden;
}
.gameChange_wrap .gameChange_item .gameChange_track {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s ease;
}
.gameChange_wrap .gameChange_item .gameChange_track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.serachBar_wraper {
  width: 26.5rem;
  position: relative;
}
@media (max-width: 991px) {
  .serachBar_wraper {
    width: 100%;
  }
}
.serachBar_wraper .search_bar {
  position: relative;
}
.serachBar_wraper .search_bar button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.serachBar_wraper .search_bar button img {
  width: 2rem;
}
.serachBar_wraper .search_bar input {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #D3D3D3;
  width: 100%;
  height: 5.4rem;
  display: block;
  background: #212121;
  border: 1px solid #303030;
  padding-left: 1.2rem;
  padding-right: 4.4rem;
  outline: none;
}
.serachBar_wraper .search_bar input::placeholder {
  color: #D3D3D3;
  opacity: 1;
}
.serachBar_wraper .search_bar input:focus {
  border-color: #62171B;
}
.serachBar_wraper .search_game_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 1.5rem;
  width: 100%;
  background: #666666;
  border: 1px solid #7E7E7E;
  max-height: 30rem;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all ease;
  z-index: 2026;
}
.serachBar_wraper .search_game_dropdown ul li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #E0E0E0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #7E7E7E;
  cursor: pointer;
  transition: 0.2s all ease;
}
.serachBar_wraper .search_game_dropdown ul li img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
}
.serachBar_wraper .search_game_dropdown ul li:hover {
  color: #FFF;
  background: #F02731;
}
.serachBar_wraper .search_game_dropdown ul li:last-child {
  border-bottom: none;
}
.serachBar_wraper .search_game_dropdown.show {
  visibility: visible;
  opacity: 1;
}

.flash_blankNews_section {
  padding-bottom: 4rem;
}

.news_blankBox {
  width: 100%;
  min-height: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .news_blankBox {
    min-height: 30rem;
  }
}
.news_blankBox img {
  width: 6rem;
}
.news_blankBox p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .news_blankBox p {
    font-size: 2rem;
  }
}

.tournament_dropdownWraper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  align-items: center;
  padding: 6rem 0rem 3.2rem;
}
@media (max-width: 991px) {
  .tournament_dropdownWraper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .tournament_dropdownWraper {
    padding-top: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.clear_btn {
  text-align: left;
}
.clear_btn button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  background: transparent;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: 0.2s all ease;
}
.clear_btn button img {
  width: 2.4rem;
}
.clear_btn button:hover {
  opacity: 0.85;
}
@media (max-width: 991px) {
  .clear_btn {
    display: none;
  }
}

.filter_wraper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.filter_wraper a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #251011;
  border: 1px solid #62171B;
  display: inline-block;
  padding: 0.65rem 1.4rem;
  transition: 0.2s all ease;
}
.filter_wraper a:hover, .filter_wraper a.active {
  background: #F02731;
  border-color: #F02731;
}
@media (max-width: 991px) {
  .filter_wraper {
    justify-content: space-between;
    column-gap: 0rem;
    row-gap: 1rem;
  }
  .filter_wraper a {
    font-size: 1.5rem;
    width: 15.5%;
    display: block;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .filter_wraper a {
    width: 23.5%;
  }
}

.tournament_searchWraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.2rem 0rem 4rem;
}
@media (max-width: 991px) {
  .tournament_searchWraper {
    flex-direction: column-reverse;
    align-items: start;
    gap: 2rem;
  }
}

.tournament_searchBar .search_bar input {
  height: 4.4rem;
}
.tournament_searchBar .search_bar .border_tl {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tournament_searchBar .search_bar .border_tr {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tournament_searchBar .search_bar .border_bl {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tournament_searchBar .search_bar .border_br {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}

.tournament_selectWraper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .tournament_selectWraper {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0rem;
    row-gap: 1.6rem;
  }
}
.tournament_selectWraper .custom_select {
  width: 17rem;
}
@media (max-width: 991px) {
  .tournament_selectWraper .custom_select {
    width: 49%;
  }
}
.tournament_selectWraper .custom_select .select_btn .border_tl,
.tournament_selectWraper .custom_select .select_btn .border_bl {
  width: 1rem;
  height: 0.6rem;
}
.tournament_selectWraper .custom_select .select_btn .border_tr,
.tournament_selectWraper .custom_select .select_btn .border_br {
  width: 1rem;
  height: 0.6rem;
  right: -0.1rem;
}
.tournament_selectWraper .custom_select .select_btn .short_text {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #F02731;
  position: absolute;
  right: 1.2rem;
  top: 0.2rem;
}
.tournament_selectWraper .custom_select .short_select {
  padding-top: 1rem;
}

@media (max-width: 991px) {
  .allTournaments_table_section {
    overflow: auto;
    scrollbar-color: #961D23 #1D1D1D;
  }
  .allTournaments_table_section::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 1rem;
  }
  .allTournaments_table_section::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 1rem;
  }
  .allTournaments_table_section::-webkit-scrollbar-thumb {
    background: #961D23;
    border-radius: 1rem;
  }
}
.allTournaments_table_section .allTournaments_table {
  width: 100%;
}
@media (max-width: 991px) {
  .allTournaments_table_section .allTournaments_table {
    width: 112rem;
  }
}
.allTournaments_table_section .allTournaments_table .table_row {
  background: #0E0E0E;
  border-bottom: 1px solid #3B1315;
  padding: 1.2rem 0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.allTournaments_table_section .allTournaments_table .table_row:first-child {
  background: #3B1315 !important;
  border: 1px solid #4F2B2C;
  padding: 2rem 0rem;
  margin-bottom: 0.8rem;
}
.allTournaments_table_section .allTournaments_table .table_row:hover {
  background: #141414;
}
.allTournaments_table_section .allTournaments_table .table_row .table_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 15%;
}
.allTournaments_table_section .allTournaments_table .table_row .table_heading:first-child {
  width: 27%;
  padding-right: 4rem;
  justify-content: flex-start;
}
.allTournaments_table_section .allTournaments_table .table_row .table_heading:last-child {
  width: 13%;
}
.allTournaments_table_section .allTournaments_table .table_row .table_heading img {
  width: 1.8rem;
}
.allTournaments_table_section .allTournaments_table .table_row .table_data {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: #CFCFCF;
  text-align: center;
  width: 15%;
}
.allTournaments_table_section .allTournaments_table .table_row .table_data:first-child {
  width: 30%;
  padding-right: 0.8rem;
}
.allTournaments_table_section .allTournaments_table .table_row .table_data:last-child {
  width: 13%;
}
.allTournaments_table_section .allTournaments_table .table_row .table_data .coin {
  width: 1.8rem;
}
.allTournaments_table_section .allTournaments_table .table_row .table_data .paid {
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #84151B;
  width: 8.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.allTournaments_table_section .allTournaments_table .table_row .table_data .free {
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #373737;
  width: 8.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_img {
  border: 1px solid #9C1C1D;
  flex-shrink: 0;
  position: relative;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_img img {
  width: 10.5rem;
  height: 6.8rem;
  object-fit: cover;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_img span {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #37AE48;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0rem 0.5rem;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_img .ended {
  background: #A11B1B;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_img .live {
  background: #FFFFFF;
  color: #A11B1B;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_img .live img {
  width: 1rem;
  height: auto;
  object-fit: initial;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text {
  text-align: right;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text ul {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text ul li {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  color: #B7B7B7;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text ul li span {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  background: #FFFFFF;
  border-radius: 50%;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: #FFFFFF;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: #CFCFCF;
}
.allTournaments_table_section .allTournaments_table .table_row .data_details .data_text p span {
  color: #F02731;
}

.blank_row {
  width: 100%;
  min-height: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blank_row img {
  width: 6rem;
}
.blank_row p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .blank_row p {
    font-size: 2rem;
  }
}

.allTournaments_table .league_icon img {
  width: 5.1rem;
}
.allTournaments_table .league_iconv2 img {
  width: 4.5rem;
}

.page_title.pb_32 {
  padding-bottom: 3.2rem;
}

.league_tab_links {
  padding-top: 0;
  padding-bottom: 4rem;
  justify-content: center;
}
@media (max-width: 991px) {
  .league_tab_links {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .league_tab_links {
    justify-content: start;
    align-items: start;
  }
}
.league_tab_links .tab_links ul::before {
  display: none;
}
.league_tab_links .tab_links ul li::before {
  display: none;
}
.league_tab_links .tab_links li a {
  position: relative;
  letter-spacing: 0.32px;
  z-index: 1;
}
.league_tab_links .tab_links li a:not(.active) {
  border-bottom: none;
}
.league_tab_links .tab_links li a img.icon1 {
  width: 4.8rem;
}
.league_tab_links .tab_links li a img.icon2 {
  width: 5.8rem;
}
.league_tab_links .tab_links li a img.icon3 {
  width: 6.4rem;
}
.league_tab_links .tab_links li a.active {
  border: none !important;
  border-bottom: 0.2rem solid #751517 !important;
  background: linear-gradient(to bottom, #0E0E0E, #541111) !important;
}
.league_tab_links .tab_links li:nth-child(1) a {
  border: 1px solid #FFFFFF;
  background: #212121;
}
.league_tab_links .tab_links li:nth-child(2) a {
  border: 0.1rem solid;
  border-image: linear-gradient(90deg, #071E47, #89F8FD, #071E47) 1;
}
.league_tab_links .tab_links li:nth-child(3) a {
  border: 0.1rem solid;
  border-image: linear-gradient(90deg, #A11B1B, #E46912, #F69929, #A11B1B) 1;
}

.upcoming_banner {
  background-image: url("../img/upcoming-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6.5rem 3.4rem 11rem;
  position: relative;
}
@media (max-width: 767px) {
  .upcoming_banner {
    padding: 8rem 1.5rem 10rem;
  }
}
.upcoming_banner .challenger_league_badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0;
  border-radius: 0 6.3rem 6.3rem 0;
  border: 1px solid #102D4C;
  background: linear-gradient(90deg, rgba(37, 105, 178, 0.15) 35.37%, rgba(37, 105, 178, 0.5) 83.54%);
  backdrop-filter: blur(17.3999996185px);
  padding: 0.4rem 1rem;
  position: absolute;
  left: 0;
  top: 2.4rem;
}
.upcoming_banner .challenger_league_badge img {
  width: 3.8rem;
}
.upcoming_banner .title_box {
  position: absolute;
  right: 3.4rem;
  top: 4.2rem;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .upcoming_banner .title_box {
    top: 2.4rem;
    right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .title_box {
    top: 2rem;
    right: 1.5rem;
  }
}
.upcoming_banner .details_btn {
  position: absolute;
  left: 6rem;
  bottom: 6rem;
}
@media (max-width: 991px) {
  .upcoming_banner .details_btn {
    bottom: 3.2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.upcoming_banner .details_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #F02731;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
  transition: 0.2s all ease;
}
@media (max-width: 767px) {
  .upcoming_banner .details_btn a {
    font-size: 1.4rem;
    padding: 1.1rem 1.6rem 1.1rem 1.3rem;
  }
}
.upcoming_banner .details_btn a img {
  width: 2rem;
}
@media (max-width: 767px) {
  .upcoming_banner .details_btn a img {
    width: 1.8rem;
  }
}
.upcoming_banner .details_btn a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FDEBC2;
  border-left: 1px solid #FDEBC2;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.upcoming_banner .details_btn a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FDEBC2;
  border-right: 1px solid #FDEBC2;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.upcoming_banner .details_btn a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FDEBC2;
  border-left: 1px solid #FDEBC2;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.upcoming_banner .details_btn a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FDEBC2;
  border-right: 1px solid #FDEBC2;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.upcoming_banner .details_btn a:hover span {
  transform: scale(1.25);
  border-color: #FFFFFF;
}
.upcoming_banner .tournament_box .tournament_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.upcoming_banner .tournament_box .tournament_title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_title h3 {
    font-size: 1.8rem;
  }
}
.upcoming_banner .tournament_box .tournament_title img {
  width: 5.4rem;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_title img {
    width: 4.5rem;
  }
}
.upcoming_banner .tournament_box .tournament_wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  padding: 1.2rem 0rem 2rem;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_wraper {
    gap: 2.5rem;
    padding: 1rem 0rem 2rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .tournament_box .tournament_wraper {
    gap: 2rem;
    padding: 1rem 0rem 1.6rem;
  }
}
.upcoming_banner .tournament_box .tournament_wraper p {
  font-size: 4rem;
  font-weight: 700;
  line-height: 125%;
  color: #D3CFD3;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_wraper p {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .tournament_box .tournament_wraper p {
    font-size: 2.4rem;
    gap: 1rem;
  }
}
.upcoming_banner .tournament_box .tournament_wraper p img {
  width: 7.8rem;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_wraper p img {
    width: 5.8rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .tournament_box .tournament_wraper p img {
    width: 4.5rem;
  }
}
.upcoming_banner .tournament_box .tournament_wraper h2 {
  font-size: 5.3rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.2rem;
  color: #FFF;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_wraper h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .tournament_box .tournament_wraper h2 {
    font-size: 3.2rem;
  }
}
.upcoming_banner .tournament_box .tournament_schedule {
  text-align: center;
}
.upcoming_banner .tournament_box .tournament_schedule p {
  font-size: 3rem;
  font-weight: 400;
  color: #B4B3B4;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_schedule p {
    font-size: 2.4rem;
    gap: 1.2rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .tournament_box .tournament_schedule p {
    font-size: 2rem;
    gap: 1rem;
  }
}
.upcoming_banner .tournament_box .tournament_schedule p span {
  width: 0.2rem;
  height: 2.6rem;
  display: block;
  background: #C5212B;
}
@media (max-width: 991px) {
  .upcoming_banner .tournament_box .tournament_schedule p span {
    height: 2.2rem;
  }
}
@media (max-width: 767px) {
  .upcoming_banner .tournament_box .tournament_schedule p span {
    height: 2rem;
  }
}

.game_schedule {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .game_schedule {
    padding-top: 4.6rem;
  }
}
.game_schedule .title_box {
  padding-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .game_schedule .title_box {
    padding-bottom: 2.5rem;
  }
}
.game_schedule .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2rem;
}
@media (max-width: 767px) {
  .game_schedule .row {
    --bs-gutter-x: 1.5rem;
  }
}
.game_schedule .tournament_box {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 7.5rem 1.5rem 4rem;
  position: relative;
}
.game_schedule .tournament_box .tournament_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.game_schedule .tournament_box .tournament_title h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}
.game_schedule .tournament_box .tournament_title img {
  width: 3.6rem;
}
.game_schedule .tournament_box .tournament_wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 1.2rem 0rem 2rem;
}
@media (max-width: 767px) {
  .game_schedule .tournament_box .tournament_wraper {
    gap: 2rem;
    padding: 1rem 0rem 1.6rem;
  }
}
.game_schedule .tournament_box .tournament_wraper p {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #D1D1CD;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.game_schedule .tournament_box .tournament_wraper p img {
  width: 5.8rem;
}
@media (max-width: 767px) {
  .game_schedule .tournament_box .tournament_wraper p {
    font-size: 2.4rem;
  }
  .game_schedule .tournament_box .tournament_wraper p img {
    width: 4.4rem;
  }
}
.game_schedule .tournament_box .tournament_wraper h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #FFF;
}
@media (max-width: 767px) {
  .game_schedule .tournament_box .tournament_wraper h2 {
    font-size: 3.2rem;
  }
}
.game_schedule .tournament_box .tournament_schedule {
  text-align: center;
}
.game_schedule .tournament_box .tournament_schedule p {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #B6B6B6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.2rem;
}
.game_schedule .tournament_box .tournament_schedule p span {
  width: 0.2rem;
  height: 2rem;
  display: block;
  background: #C01F27;
}
@media (max-width: 767px) {
  .game_schedule .tournament_box .tournament_schedule p {
    font-size: 2rem;
    margin-bottom: 2.6rem;
  }
}
.game_schedule .tournament_box .tournament_schedule a {
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #080808;
  border: 1px solid #212121;
  display: inline-block;
  padding: 0.8rem 4.7rem;
  position: relative;
}
@media (max-width: 767px) {
  .game_schedule .tournament_box .tournament_schedule a {
    font-size: 1.8rem;
  }
}
.game_schedule .tournament_box .tournament_schedule a .border_tl {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #8D1616;
  border-left: 1px solid #8D1616;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule .tournament_box .tournament_schedule a .border_tr {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #8D1616;
  border-right: 1px solid #8D1616;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule .tournament_box .tournament_schedule a .border_bl {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #8D1616;
  border-left: 1px solid #8D1616;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule .tournament_box .tournament_schedule a .border_br {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #8D1616;
  border-right: 1px solid #8D1616;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule .tournament_box .tournament_schedule a:hover span {
  border-color: #DA232D;
  transform: scale(1.2);
}

.game_schedule2_section {
  padding-top: 4rem;
}
.game_schedule2_section .title_box {
  padding-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .game_schedule2_section .title_box {
    padding-bottom: 2.5rem;
  }
}
.game_schedule2_section .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2rem;
}
@media (max-width: 767px) {
  .game_schedule2_section .row {
    --bs-gutter-x: 1.5rem;
  }
}
.game_schedule2_section .tournament_box {
  background: #121212;
  padding: 7.2rem 1.5rem 2rem;
  position: relative;
}
.game_schedule2_section .tournament_box .shape_tl {
  position: absolute;
  left: 0;
  top: 0;
}
.game_schedule2_section .tournament_box .shape_tl img {
  width: 5.6rem;
}
.game_schedule2_section .tournament_box .shape_tr {
  position: absolute;
  right: 0;
  top: 0;
}
.game_schedule2_section .tournament_box .shape_tr img {
  width: 4.5rem;
}
.game_schedule2_section .tournament_box .shape_bl {
  position: absolute;
  left: 0;
  bottom: 0;
}
.game_schedule2_section .tournament_box .shape_bl img {
  width: 5.6rem;
}
.game_schedule2_section .tournament_box .shape_br {
  position: absolute;
  right: 0;
  bottom: 0;
}
.game_schedule2_section .tournament_box .shape_br img {
  width: 4.5rem;
}
.game_schedule2_section .tournament_box .tournament_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.game_schedule2_section .tournament_box .tournament_title h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}
.game_schedule2_section .tournament_box .tournament_title img {
  width: 3.6rem;
}
.game_schedule2_section .tournament_box .tournament_wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 1.2rem 0rem 2.4rem;
}
.game_schedule2_section .tournament_box .tournament_wraper p {
  font-size: 2rem;
  font-weight: 700;
  color: #D0D0D0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.game_schedule2_section .tournament_box .tournament_wraper p img {
  width: 2.4rem;
}
.game_schedule2_section .tournament_box .tournament_wraper h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFF;
}
.game_schedule2_section .tournament_box .tournament_schedule {
  text-align: center;
}
.game_schedule2_section .tournament_box .tournament_schedule p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #B8B8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.game_schedule2_section .tournament_box .tournament_schedule p span {
  width: 0.2rem;
  height: 1.2rem;
  display: block;
  background: #C4232B;
}
.game_schedule2_section .tournament_box .tournament_schedule a {
  font-size: 1.8rem;
  font-weight: 400;
  color: #F5F6FF;
  background: #080808;
  border: 1px solid #212121;
  display: inline-block;
  padding: 0.9rem 5rem;
  position: relative;
}
.game_schedule2_section .tournament_box .tournament_schedule a .border_tl {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #8D1616;
  border-left: 1px solid #8D1616;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule2_section .tournament_box .tournament_schedule a .border_tr {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #8D1616;
  border-right: 1px solid #8D1616;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule2_section .tournament_box .tournament_schedule a .border_bl {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #8D1616;
  border-left: 1px solid #8D1616;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule2_section .tournament_box .tournament_schedule a .border_br {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #8D1616;
  border-right: 1px solid #8D1616;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.game_schedule2_section .tournament_box .tournament_schedule a:hover span {
  border-color: #DA232D;
  transform: scale(1.2);
}
.game_schedule2_section .more_btn {
  padding: 4rem 0rem 8rem;
  text-align: center;
}
@media (max-width: 767px) {
  .game_schedule2_section .more_btn {
    padding-bottom: 6rem;
  }
}

.blank_banner {
  min-height: 18rem;
}

.tournament_badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  border: 1px solid #2569B2;
  background: linear-gradient(90deg, rgba(37, 105, 178, 0.5) 35.37%, rgba(37, 105, 178, 0.15) 83.54%);
  border-radius: 6.3rem 0rem 0rem 6.3rem;
  backdrop-filter: blur(1.8rem);
  padding: 0.35rem 1.2rem;
  position: absolute;
  right: 0;
  top: 2rem;
}
.tournament_badge img {
  width: 3.8rem;
}
.tournament_badge.tournament_badge_elite {
  border: 1px solid rgba(240, 39, 49, 0.5);
  background: linear-gradient(91deg, rgba(240, 39, 49, 0.5) -1.46%, rgba(240, 39, 49, 0.08) 86.1%, rgba(240, 39, 49, 0.05) 99.19%);
  backdrop-filter: blur(1.8rem);
}
.tournament_badge.tournament_badge_openl {
  border: 1px solid #424242;
  background: linear-gradient(100deg, #484747 4.44%, rgba(72, 71, 71, 0) 98.48%);
  backdrop-filter: blur(1.8rem);
  padding: 0.4rem 1.5rem;
}
.tournament_badge.tournament_badge_openl img {
  width: 2.8rem;
}

.accountModal_dialog {
  max-width: 65rem !important;
}
.accountModal_dialog .games_accountWrap .games_accountBox {
  background: #140E0E;
  border: 1px solid #360E10;
  padding: 1.6rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .accountModal_dialog .games_accountWrap .games_accountBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountRight {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountRight .games_accountImg {
  flex-shrink: 0;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountRight .games_accountImg img {
  width: 6rem;
  border-radius: 0.6rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountRight .games_accountText span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #F02731;
  background: #150F0F;
  border: 1px solid #431111;
  display: inline-block;
  padding: 0rem 0.8rem;
  border-radius: 5rem;
  margin-bottom: 0.6rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountRight .games_accountText h4 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  text-align: right;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft .copy_wraper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft .copy_wraper .copy_btn img {
  width: 2.4rem;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft .copy_wraper .copy_text {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft .line {
  width: 0.2rem;
  height: 1.8rem;
  display: block;
  background: #433E3E;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft .trash_icon button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.accountModal_dialog .games_accountWrap .games_accountBox .games_accountleft .trash_icon button img {
  width: 2.4rem;
}

.overlay_bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../img/overlay-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 6rem;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}
.overlay_bg::before {
  content: "";
  width: 100%;
  height: 30rem;
  display: block;
  background: linear-gradient(to bottom, #0A0908, #0E0E0E);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
}

.invoice_btnv2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575px) {
  .invoice_btnv2 {
    gap: 0.8rem;
  }
}
.invoice_btnv2 a {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-decoration: underline;
}
.invoice_btnv2 span {
  display: flex;
  align-items: center;
}
.invoice_btnv2 span img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-left: -1.4rem;
  object-fit: cover;
}
.invoice_btnv2 span img:last-child {
  margin-left: 0rem;
}
@media (max-width: 575px) {
  .invoice_btnv2 span img {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: -1.2rem;
  }
}

.recent_games_hero {
  height: 33.2rem;
}
@media (max-width: 767px) {
  .recent_games_hero {
    height: 25.4rem;
  }
}

.recent_table {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .recent_table {
    padding-top: 4.6rem;
  }
}
.recent_table .recent_box {
  background: #121212;
  padding: 2rem 2.4rem;
  border: 1px solid #1F1F1F;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: 0.2s all ease;
}
.recent_table .recent_box:last-child {
  margin-bottom: 0rem;
}
.recent_table .recent_box .recent_details {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.recent_table .recent_box .recent_details .recent_game_img {
  flex-shrink: 0;
  border: 1px solid #353535;
}
.recent_table .recent_box .recent_details .recent_game_img img {
  width: 14rem;
  height: 12.7rem;
  display: block;
  object-fit: cover;
}
.recent_table .recent_box .recent_details .recent_details_text .bad__ge {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 142.857%;
  margin-bottom: 0.4rem;
}
.recent_table .recent_box .recent_details .recent_details_text .bad__ge img {
  width: auto;
  height: 2rem;
}
.recent_table .recent_box .recent_details .recent_details_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  color: #BBB8B8;
}
.recent_table .recent_box .recent_details .recent_details_text h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #FFFFFF;
}
.recent_table .recent_box .recent_details .recent_details_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #BBB8B8;
}
.recent_table .recent_box .recent_details .recent_details_text ul {
  padding-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.recent_table .recent_box .recent_details .recent_details_text ul a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #84151B;
  display: inline-block;
  padding: 0.2rem 0.8rem;
  transition: 0.2s all ease;
}
.recent_table .recent_box .recent_details .recent_details_text ul a:hover {
  opacity: 0.85;
}
.recent_table .recent_box .recent_details .recent_details_text ul a.premium {
  background: #FFFFFF;
  color: #84151B;
}
.recent_table .recent_box .recent_trofy {
  text-align: center;
  position: relative;
}
.recent_table .recent_box .recent_trofy::before {
  content: "";
  width: 1px;
  height: 9.8rem;
  display: block;
  background: #2A2A2A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7.5rem;
  transition: 0.2s all ease;
}
.recent_table .recent_box .recent_trofy::after {
  content: "";
  width: 1px;
  height: 9.8rem;
  display: block;
  background: #2A2A2A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -7.5rem;
  transition: 0.2s all ease;
}
.recent_table .recent_box .recent_trofy h4 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.recent_table .recent_box .recent_trofy h4 span {
  direction: ltr;
}
.recent_table .recent_box .recent_trofy h4 img {
  width: 2.4rem;
}
.recent_table .recent_box .recent_trofy p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  color: #BBB8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.recent_table .recent_box .recent_trofy p span {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  background: #BBB8B8;
  border-radius: 50%;
}
.recent_table .recent_box .recent_item {
  position: relative;
}
.recent_table .recent_box .recent_item::after {
  content: "";
  width: 1px;
  height: 9.8rem;
  display: block;
  background: #2A2A2A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -7.5rem;
  transition: 0.2s all ease;
}
.recent_table .recent_box .recent_item .point_box {
  width: 21.6rem;
  height: 4.6rem;
  background: #0F0F0F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  margin-bottom: 0.4rem;
  transition: 0.2s all ease;
}
.recent_table .recent_box .recent_item .point_box:last-child {
  margin-bottom: 0rem;
}
.recent_table .recent_box .recent_item .point_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #E0CDCE;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.recent_table .recent_box .recent_item .point_box p img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
}
.recent_table .recent_box .recent_item .point_box span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 100%;
  color: #E0CDCE;
}
.recent_table .recent_box .arrow_button img {
  width: 2.4rem;
}
.recent_table .recent_box:hover, .recent_table .recent_box.active {
  background: #1E1212;
  border-color: #3B1315;
}
.recent_table .recent_box:hover .point_box, .recent_table .recent_box.active .point_box {
  background: #281415;
}
.recent_table .recent_box:hover .recent_item::after, .recent_table .recent_box.active .recent_item::after {
  background: #481618;
}
.recent_table .recent_box:hover .recent_trofy::before, .recent_table .recent_box:hover .recent_trofy::after, .recent_table .recent_box.active .recent_trofy::before, .recent_table .recent_box.active .recent_trofy::after {
  background: #481618;
}

@media (max-width: 991px) {
  .recent_game_section {
    overflow: auto;
    padding-bottom: 1rem;
    scrollbar-color: #961D23 #1D1D1D;
  }
  .recent_game_section::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 1rem;
  }
  .recent_game_section::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 1rem;
  }
  .recent_game_section::-webkit-scrollbar-thumb {
    background: #961D23;
    border-radius: 1rem;
  }
  .recent_game_section .recent_table {
    width: 90rem;
  }
  .recent_game_section .recent_table .recent_box {
    padding-right: 2rem;
  }
  .recent_game_section .recent_table .recent_trofy::before {
    right: -3.5rem;
  }
  .recent_game_section .recent_table .recent_trofy::after {
    left: -3.6rem;
  }
  .recent_game_section .recent_table .recent_item::after {
    left: -3.5rem;
  }
}

.ratingsTab_wraper .tab_links ul {
  gap: 0rem;
}
.ratingsTab_wraper .tab_links ul::before {
  display: none;
}
.ratingsTab_wraper .tab_links ul li::before, .ratingsTab_wraper .tab_links ul li::after {
  display: none;
}
.ratingsTab_wraper .tab_links ul li a {
  min-width: 11.5rem;
  border-color: #41191B;
}
@media (max-width: 767px) {
  .ratingsTab_wraper .tab_links ul li a {
    min-width: 10.6rem;
  }
  .ratingsTab_wraper .tab_links ul li a::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .ratingsTab_wraper .tab_links ul {
    padding-top: 0rem;
  }
}
.ratingsTab_wraper .pagination_wraper {
  padding: 0;
}
.ratingsTab_wraper .pagination_wraper.v1 {
  display: flex;
  gap: 2rem;
}
.ratingsTab_wraper .pagination_wraper .custom_select {
  width: 17rem;
}
.ratingsTab_wraper .pagination_wraper .custom_select.league_select {
  width: 19rem;
}
.ratingsTab_wraper .pagination_wraper .custom_select .select_btn {
  height: 5.4rem;
  padding-left: 1rem;
  padding-right: 1.2rem;
}
.ratingsTab_wraper .pagination_wraper .custom_select .select_dropdown li {
  text-align: right;
}
@media (max-width: 991px) {
  .ratingsTab_wraper .pagination_wraper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ratingsTab_wraper .pagination_wraper .search_game_wraper {
    width: 100%;
  }
  .ratingsTab_wraper .pagination_wraper .custom_select {
    width: 100%;
  }
  .ratingsTab_wraper .pagination_wraper .custom_select.league_select {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .ratingsTab_wraper {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .ratingsTab_wraper {
    column-gap: 1rem;
    row-gap: 2rem;
  }
  .ratingsTab_wraper .tab_links {
    width: auto;
  }
  .ratingsTab_wraper .tab_links ul {
    display: flex;
  }
  .ratingsTab_wraper .pagination_wraper .custom_select {
    width: 12.4rem;
  }
  .ratingsTab_wraper .pagination_wraper .custom_select .select_btn {
    font-size: 1.5rem;
    height: 4.8rem;
    padding-left: 0.85rem;
  }
}

.league_select {
  width: 19rem;
}
.league_select .select_btn {
  font-family: "Cooperative" !important;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px !important;
}
.league_select .select_btn img {
  width: 3.5rem;
}
.league_select li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FFF;
  text-align: right;
  font-family: "Cooperative" !important;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px !important;
}
.league_select li img {
  width: 3.8rem;
}

.ratings_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ratings_title h2 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
}
@media (max-width: 991px) {
  .ratings_title h2 {
    font-size: 3.5rem;
  }
}
.ratings_title .select_box {
  width: 100%;
  max-width: 15rem;
}
.ratings_title label {
  display: block;
  color: #FFF;
  text-align: right;
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  padding-bottom: 0.4rem;
}

.ratings_table_section {
  padding-top: 6rem;
}
@media (max-width: 991px) {
  .ratings_table_section {
    padding-top: 5rem;
    overflow: auto;
    scrollbar-color: #961D23 #1D1D1D;
  }
  .ratings_table_section::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 1rem;
  }
  .ratings_table_section::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 1rem;
  }
  .ratings_table_section::-webkit-scrollbar-thumb {
    background: #961D23;
    border-radius: 1rem;
  }
}
@media (max-width: 991px) {
  .ratings_table_section .ratings_table {
    width: 100rem;
  }
}
.ratings_table_section .ratings_table .table_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0E0E0E;
  border-bottom: 1px solid #260F0F;
  padding: 1.5rem 1.5rem;
  transition: 0.2s all ease;
}
.ratings_table_section .ratings_table .table_row:hover, .ratings_table_section .ratings_table .table_row.active {
  background: #141414;
}
.ratings_table_section .ratings_table .table_row:hover .table_data:first-child, .ratings_table_section .ratings_table .table_row.active .table_data:first-child {
  background: linear-gradient(to right bottom, #FDAC33, #DE5709);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ratings_table_section .ratings_table .table_row:hover .table_data:first-child {
  background: linear-gradient(to right bottom, #FDAC33, #DE5709) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.ratings_table_section .ratings_table .table_row:first-child {
  background: #260F0F;
  padding: 2rem 1.5rem;
}
.ratings_table_section .ratings_table .table_row .table_heading {
  width: 15.6%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  padding: 1.5rem 0rem;
  border-right: 0.2rem solid #291717;
}
.ratings_table_section .ratings_table .table_row .table_heading:first-child {
  border-right: none;
  width: 8%;
}
.ratings_table_section .ratings_table .table_row .table_heading:last-child {
  width: 12%;
}
.ratings_table_section .ratings_table .table_row .table_heading:nth-child(2) {
  width: 17.6%;
  text-align: right;
  padding-right: 1.7rem;
}
@media (max-width: 991px) {
  .ratings_table_section .ratings_table .table_row .table_heading {
    font-size: 1.5rem;
  }
}
.ratings_table_section .ratings_table .table_row .table_data {
  width: 15.6%;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: #CFCFCF;
  text-align: center;
}
.ratings_table_section .ratings_table .table_row .table_data:first-child {
  font-family: "Cooperative";
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  background: linear-gradient(to right bottom, #F5F6FF, #808080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 8%;
  transition: 0.2s all ease;
}
.ratings_table_section .ratings_table .table_row .table_data:last-child {
  width: 12%;
}
.ratings_table_section .ratings_table .table_row .table_data:nth-child(2) {
  width: 17.6%;
  text-align: right;
  padding-right: 1.7rem;
}
@media (max-width: 991px) {
  .ratings_table_section .ratings_table .table_row .table_data {
    font-size: 1.5rem;
  }
  .ratings_table_section .ratings_table .table_row .table_data:first-child {
    font-size: 1.85rem;
  }
}
.ratings_table_section .ratings_table .table_row .player_item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: right;
}
.ratings_table_section .ratings_table .table_row .player_img {
  flex-shrink: 0;
}
.ratings_table_section .ratings_table .table_row .player_img img {
  width: 5rem;
  height: 5rem;
  display: block;
  object-fit: cover;
}
.ratings_table_section .ratings_table .table_row .player_details {
  text-align: right;
}
.ratings_table_section .ratings_table .table_row .player_details h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
  color: #F9F9FF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}
.ratings_table_section .ratings_table .table_row .player_details h4 img {
  width: 2.6rem;
}
@media (max-width: 991px) {
  .ratings_table_section .ratings_table .table_row .player_details h4 {
    font-size: 1.85rem;
  }
}
.ratings_table_section .ratings_table .table_row .player_details span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 140%;
  color: #F02731;
  border: 1px solid #431515;
  display: inline-block;
  padding: 0rem 0.7rem;
  border-radius: 5rem;
}
.ratings_table_section .ratings_table .table_row:nth-child(3) .table_data:first-child {
  background: linear-gradient(to right bottom, #F5F6FF, #808080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ratings_table_section .ratings_table .table_row:nth-child(4) .table_data:first-child {
  background: linear-gradient(to right bottom, #B85523, #B85523);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .ratings_table_section .group_table {
    width: 80rem;
  }
}

.subtabs_menu2 .tab_links ul::before {
  width: 79.6%;
  left: 50%;
}
@media (max-width: 575px) {
  .subtabs_menu2 .tab_links ul::before {
    width: 80%;
  }
}
.subtabs_menu2 .tab_links ul li::before {
  left: 52%;
}
.subtabs_menu2 .tab_links ul li:first-child::before {
  left: 45%;
}
@media (max-width: 767px) {
  .subtabs_menu2 .tab_links ul li:first-child::before {
    left: 48%;
  }
}
.subtabs_menu2 .tab_links ul li:last-child a {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .subtabs_menu2 .tab_links ul li:last-child a {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
.subtabs_menu2 .tab_links ul li a {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  gap: 0.7rem;
}
.subtabs_menu2 .tab_links ul li a .plus_circle {
  width: 2.2rem;
}

.innerTab_links {
  padding: 5rem 0rem 5.2rem;
}
@media (max-width: 767px) {
  .innerTab_links {
    padding: 4rem 0rem 3rem;
  }
}

.groups_section {
  padding-bottom: 6rem;
}
.groups_section .groups_wraper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 991px) {
  .groups_section .groups_wraper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .groups_section .groups_wraper {
    grid-template-columns: 1fr;
  }
}
.groups_section .groups_wraper .groups_box {
  background: #000000;
  border: 1px solid #191919;
  padding: 2.4rem 2.4rem;
  position: relative;
}
.groups_section .groups_wraper .groups_box .border_tl {
  width: 1.8rem;
  height: 0.8rem;
  border-top: 1px solid #B13238;
  border-left: 1px solid #B13238;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .border_tr {
  width: 1.8rem;
  height: 0.8rem;
  border-top: 1px solid #B13238;
  border-right: 1px solid #B13238;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .border_bl {
  width: 1.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #B13238;
  border-left: 1px solid #B13238;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .border_br {
  width: 1.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #B13238;
  border-right: 1px solid #B13238;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .groups_title {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_img {
  flex-shrink: 0;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_img img {
  width: 7.2rem;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_text h4 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  margin-bottom: 0.4rem;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_text p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #CCCCCC;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_text p span {
  font-family: "Cooperative", sans-serif;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_text p .copy_btn {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.groups_section .groups_wraper .groups_box .groups_title .groups_text p .copy_btn img {
  width: 2.2rem;
}
.groups_section .groups_wraper .groups_box .group_list {
  background: #0E0E0E;
  padding: 1.6rem 1.6rem;
  margin: 1.4rem 0rem 1.6rem;
}
.groups_section .groups_wraper .groups_box .group_list ul li {
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.groups_section .groups_wraper .groups_box .group_list ul li:last-child {
  margin-bottom: 0rem;
}
.groups_section .groups_wraper .groups_box .group_list ul li img {
  width: 2.4rem;
}
.groups_section .groups_wraper .groups_box .group_list ul li span {
  font-family: "Cooperative", sans-serif;
  font-weight: 500;
  color: #CFCFCF;
  display: inline-block;
  margin-right: 0.5rem;
}
.groups_section .groups_wraper .groups_box .group_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #281415;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  position: relative;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .group_btn a img {
  width: 2rem;
}
.groups_section .groups_wraper .groups_box .group_btn a .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .group_btn a .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .group_btn a .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .group_btn a .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.groups_section .groups_wraper .groups_box .group_btn a:hover span {
  border-color: #F14139;
  transform: scale(1.28);
}

.analytics_section .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}
@media (max-width: 767px) {
  .analytics_section .row {
    --bs-gutter-x: 1.5rem;
  }
}
.analytics_section .analytice_box {
  background: #080808;
  border: 1px solid #212121;
  padding: 3.1rem 2.2rem 3.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .analytics_section .analytice_box {
    padding: 2.5rem 1rem;
  }
}
.analytics_section .analytice_box .border_tl {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #AC1F26;
  border-left: 1px solid #AC1F26;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.analytics_section .analytice_box .border_tr {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #AC1F26;
  border-right: 1px solid #AC1F26;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.analytics_section .analytice_box .border_bl {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #AC1F26;
  border-left: 1px solid #AC1F26;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.analytics_section .analytice_box .border_br {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #AC1F26;
  border-right: 1px solid #AC1F26;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.analytics_section .analytice_box .analytics_title {
  position: absolute;
  top: 2rem;
  right: 2.2rem;
}
@media (max-width: 767px) {
  .analytics_section .analytice_box .analytics_title {
    right: 1.6rem;
    top: 2rem;
  }
}
.analytics_section .analytice_box .analytics_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  color: #F5F6FF;
  line-height: 125%;
}
@media (max-width: 767px) {
  .analytics_section .analytice_box .analytics_title h3 {
    font-size: 2.7rem;
  }
}
.analytics_section .analytice_box .year_select {
  width: 9.2rem;
  position: absolute;
  left: 2.2rem;
  top: 2.5rem;
  padding: 0;
}
@media (max-width: 767px) {
  .analytics_section .analytice_box .year_select {
    left: 1.6rem;
    top: 2rem;
  }
}
.analytics_section .analytice_box .year_select .custom_select {
  width: 100%;
}
.analytics_section .analytice_box .graph {
  padding-top: 4rem;
}
.analytics_section .analytice_box .graph .main_chart {
  width: 100%;
  height: 26.2rem;
}
@media (max-width: 767px) {
  .analytics_section .analytice_box .graph .main_chart {
    height: 20rem;
  }
}
.analytics_section .analytice_box .graph .controls_btn {
  width: 27rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .analytics_section .analytice_box .graph .controls_btn {
    display: none;
  }
}
.analytics_section .analytice_box .graph .controls_btn button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.01rem;
  color: #FFFFFF;
  background: transparent;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.analytics_section .analytice_box .graph .controls_btn button span {
  font-size: 1.2rem;
  width: 2.3rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #4072EE;
}
.analytics_section .analytice_box .graph .controls_btn button.toggleRed span {
  background: #84151B;
}
.analytics_section .statistics_box {
  background: #080808;
  border: 1px solid #212121;
  padding: 1.8rem 1.8rem;
}
.analytics_section .statistics_box h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.analytics_section .statistics_box ul li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #C6C6CE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
  margin-bottom: 0.8rem;
  transition: 0.2s all ease;
}
.analytics_section .statistics_box ul li:last-child {
  margin-bottom: 0rem;
}
.analytics_section .statistics_box ul li .coins {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.analytics_section .statistics_box ul li .coins img {
  width: 1.8rem;
}
.analytics_section .statistics_box ul li .coins span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-family: "Cooperative", sans-serif;
}
.analytics_section .statistics_box ul li span {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
}
.analytics_section .statistics_box ul li:hover, .analytics_section .statistics_box ul li.active {
  background: #360E10;
}

.level_section {
  background: #140E0E;
  border: 1px solid #2B2626;
  padding: 2rem 2rem;
  margin: 3.6rem 0rem 4rem;
}
.level_section .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}
@media (max-width: 767px) {
  .level_section .row {
    --bs-gutter-x: 1.5rem;
  }
}
.level_section .level_box {
  width: 100%;
  height: 100%;
  background: #080808;
  padding: 2rem 2rem;
  position: relative;
}
.level_section .level_box .border_tl {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #AE1F26;
  border-left: 1px solid #AC1F26;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .border_tr {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #AC1F26;
  border-right: 1px solid #AC1F26;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .border_bl {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #AC1F26;
  border-left: 1px solid #AC1F26;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .border_br {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #AC1F26;
  border-right: 1px solid #AC1F26;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .level_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 3.2rem;
}
.level_section .level_box .level_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
}
.level_section .level_box .level_title .info_btn {
  width: 3rem;
  padding: 0;
  border: none;
  background: transparent;
}
.level_section .level_box .level_title .info_btn img {
  width: 100%;
}
.level_section .level_box .counter_wraper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 575px) {
  .level_section .level_box .counter_wraper {
    grid-template-columns: 1fr;
  }
}
.level_section .level_box .counter_wraper .counter_box {
  background: #0E0E0E;
  padding: 1.6rem 1.6rem;
  position: relative;
  text-align: center;
}
.level_section .level_box .counter_wraper .counter_box .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .counter_wraper .counter_box .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .counter_wraper .counter_box .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .counter_wraper .counter_box .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.level_section .level_box .counter_wraper .counter_box h4 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 1.2rem;
}
.level_section .level_box .counter_wraper .counter_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #FFFFFF;
}
.level_section .level_box .progress_bar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.level_section .level_box .progress_bar .top h5 {
  color: #FFF;
  font-family: "Cooperative";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0;
}
.level_section .level_box .progress_bar .top h5 span {
  color: #F02731;
}
.level_section .level_box .progress_bar .top .parcent {
  color: #FFF;
  font-family: "Cooperative";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0;
}
.level_section .level_box .progress_bar .line {
  margin: 1.8rem 0 1.2rem;
  width: 100%;
  height: 2rem;
  border-radius: 2.3rem;
  border: 0.6px solid rgba(240, 39, 49, 0.5);
  position: relative;
}
.level_section .level_box .progress_bar .line .trigger {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 2.3rem;
  background: linear-gradient(90deg, rgba(255, 13, 28, 0.6) 0%, rgba(255, 13, 28, 0.6) 49.52%, rgba(255, 13, 28, 0.36) 100%);
}
.level_section .level_box .progress_bar .line .progress_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.2rem;
  margin-right: -1.5rem;
}
.level_section .level_box .progress_bar .bottom_txt {
  color: #FEE9EA;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
  width: 90%;
}
@media (max-width: 991px) {
  .level_section .level_box .progress_bar .bottom_txt {
    width: 100%;
  }
}
.level_section .level_box .progress_bar .bottom_txt span {
  color: #F02731;
}

.gamesPlayed_section {
  padding-bottom: 4rem !important;
}
.gamesPlayed_section .gamesPlayed_box {
  background: #080808;
  border: 1px solid #212121;
  padding: 2rem 2rem;
}
@media (max-width: 767px) {
  .gamesPlayed_section .gamesPlayed_box {
    padding: 2rem 1.6rem;
  }
  .gamesPlayed_section .gamesPlayed_box .groups_box {
    padding: 2.4rem 2rem;
  }
}
.gamesPlayed_section .gamesPlayed_box .gamesPlayed_title {
  margin-bottom: 2.4rem;
}
.gamesPlayed_section .gamesPlayed_box .gamesPlayed_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
}
.gamesPlayed_section .group_btn {
  padding-top: 3.4rem;
}
@media (max-width: 991px) {
  .gamesPlayed_section .gamesPlayed_table_wraper {
    overflow: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #F02731 #1D1D1D;
  }
  .gamesPlayed_section .gamesPlayed_table_wraper::-webkit-scrollbar {
    width: 0.8rem;
    border-radius: 2rem;
  }
  .gamesPlayed_section .gamesPlayed_table_wraper::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 2rem;
  }
  .gamesPlayed_section .gamesPlayed_table_wraper::-webkit-scrollbar-thumb {
    background: #F02731;
    border-radius: 2rem;
  }
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table {
  height: 50.8rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #F02731 #1D1D1D;
  padding: 0.2rem 0.2rem;
  padding-left: 1.2rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 2rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table::-webkit-scrollbar-thumb {
  background: #F02731;
  border-radius: 2rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row {
  background: #130D0E;
  padding: 2.4rem 2.4rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: wrap;
  margin-bottom: 1.6rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row:last-child {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row {
    padding: 2rem 1.5rem;
  }
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .border_tl {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #AA1E25;
  border-left: 1px solid #AA1E25;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .border_tr {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid #AA1E25;
  border-right: 1px solid #AA1E25;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .border_bl {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #AA1E25;
  border-left: 1px solid #AA1E25;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .border_br {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #AA1E25;
  border-right: 1px solid #AA1E25;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_data {
  width: 13.916%;
  text-align: center;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_data h3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 2.4rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_data p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #C8C7CF;
  margin-bottom: 1.2rem;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_data span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_data .level2 {
  display: inline-block;
  cursor: pointer;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_data .result {
  color: #7EC030;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_img {
  width: 16.5%;
  text-align: right;
  border: 1px solid #3E1112;
  position: relative;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_img .border_tl {
  width: 0.4rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_img .border_tr {
  width: 0.4rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_img .border_bl {
  width: 0.4rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_img .border_br {
  width: 0.4rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table .table_row .table_img img {
  width: 100%;
  height: 10.6rem;
  object-fit: cover;
}
@media (max-width: 991px) {
  .gamesPlayed_section .gamesPlayed_table_wraper .gamesPlayed_table {
    width: 106rem;
  }
}

.favorite_section {
  padding-bottom: 6rem !important;
}
.favorite_section .favorite_wraper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.favorite_section .favorite_wraper .favorite_item {
  width: 10rem;
  flex-shrink: 0;
}
.favorite_section .favorite_wraper .favorite_item .favorite_img {
  border: 1px solid #360E0E;
  margin-bottom: 0.8rem;
  position: relative;
}
.favorite_section .favorite_wraper .favorite_item .favorite_img img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
}
.favorite_section .favorite_wraper .favorite_item .favorite_img .border_tl {
  width: 0.4rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.favorite_section .favorite_wraper .favorite_item .favorite_img .border_tr {
  width: 0.4rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.favorite_section .favorite_wraper .favorite_item .favorite_img .border_bl {
  width: 0.4rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.favorite_section .favorite_wraper .favorite_item .favorite_img .border_br {
  width: 0.4rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.favorite_section .favorite_wraper .favorite_item p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  color: #FFFFFF;
  letter-spacing: initial;
}
.favorite_section .favorite_wraper .add_game button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
}
.favorite_section .favorite_wraper .add_game button .favorite_img {
  width: 10.1rem;
  height: 10.2rem;
  background: #1F1314;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.favorite_section .favorite_wraper .add_game button .favorite_img img {
  width: 2.4rem;
  height: auto;
}
.favorite_section .favorite_wraper .add_game p {
  color: #A11B1B;
  letter-spacing: 0.05rem;
  text-align: center;
}

.ranking_modal {
  max-width: 65rem;
}
.ranking_modal .modal-content {
  background: #080808;
  border: 1px solid #2E2222;
  position: relative;
  box-shadow: -4.5rem -1.4rem 17rem rgba(255, 26, 26, 0.12) inset;
}
.ranking_modal .modal-content .border_tl {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #FF2A34;
  border-left: 1px solid #FF2A34;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.ranking_modal .modal-content .border_tr {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #FF2A34;
  border-right: 1px solid #FF2A34;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.ranking_modal .modal-content .border_bl {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #FF2A34;
  border-left: 1px solid #FF2A34;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.ranking_modal .modal-content .border_br {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #FF2A34;
  border-right: 1px solid #FF2A34;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.ranking_modal .modal-content .close_btn {
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  cursor: pointer;
  z-index: 9;
}
.ranking_modal .modal-content .close_btn img {
  width: 3.2rem;
}
@media (max-width: 767px) {
  .ranking_modal .modal-content .close_btn img {
    width: 2.5rem;
  }
}
.ranking_modal .modal-content .ranking_content {
  padding: 4rem 4rem;
}
@media (max-width: 767px) {
  .ranking_modal .modal-content .ranking_content {
    padding: 3.2rem 2rem;
  }
}
.ranking_modal .modal-content .ranking_content .ranking_title {
  max-width: 50.8rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.ranking_modal .modal-content .ranking_content .ranking_title img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
}
@media (max-width: 767px) {
  .ranking_modal .modal-content .ranking_content .ranking_title img {
    width: 9rem;
    height: 9rem;
  }
}
.ranking_modal .modal-content .ranking_content .ranking_title h3 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 115%;
  color: #F5F5F5;
  margin: 1.6rem 0rem;
}
@media (max-width: 767px) {
  .ranking_modal .modal-content .ranking_content .ranking_title h3 {
    font-size: 3.6rem;
  }
}
.ranking_modal .modal-content .ranking_content .ranking_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  color: #CECECE;
}
.ranking_modal .modal-content .ranking_content .ranking_title p a {
  color: #F02731;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper {
  max-width: 46.8rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 4rem;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item:last-child {
  margin-bottom: 0rem;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level {
  width: 6rem;
  flex-shrink: 0;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #E10600;
  letter-spacing: initial;
  border: 1px solid #E80701;
  width: 100%;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5rem;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level img {
  width: 5.2rem;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level9 {
  color: #FAFF00;
  border-color: #FAFF00;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level8 {
  color: #05E6FF;
  border-color: #05E6FF;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level7 {
  color: #05FFD2;
  border-color: #05FFD2;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level6 {
  color: #8F5CF6;
  border-color: #8F5CF6;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level5 {
  color: #23FF6C;
  border-color: #23FF6C;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level4 {
  color: #44A9F5;
  border-color: #44A9F5;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level3 {
  color: #FF7129;
  border-color: #FF7129;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level2 {
  color: #C8C4C4;
  border-color: #C8C4C4;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .level1 {
  color: #FFAB33;
  border-color: #FFAB33;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_level .no_level {
  color: #473A3A;
  border-color: #473A3A;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_bar {
  width: 100%;
  height: 2.6rem;
  background: #281415;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  padding-right: 1.6rem;
  position: relative;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_bar .progress {
  width: 0%;
  height: 100%;
  display: block;
  background: #A21B1B;
  border-radius: 0.4rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s all ease;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_bar .progress_disabled {
  background: #611818;
}
.ranking_modal .modal-content .ranking_content .ranking_proress_wraper .progress_item .progress_bar span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 160%;
  color: #E0CDCE;
  z-index: 9;
}

.orders_section {
  padding: 6rem 0rem 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.3rem;
}
@media (max-width: 991px) {
  .orders_section {
    padding: 4.2rem 0rem 6rem;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .orders_section {
    padding: 4.2rem 0rem 6rem;
  }
}
.orders_section .orders_box {
  background: #080808;
  border: 1px solid #212121;
  padding: 2rem 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .orders_section .orders_box {
    padding: 2rem 1rem 1rem;
  }
}
.orders_section .orders_box .border_tl {
  width: 2.2rem;
  height: 0.6rem;
  border-top: 1px solid #F2503D;
  border-left: 1px solid #F2503D;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .border_tr {
  width: 2.2rem;
  height: 0.6rem;
  border-top: 1px solid #F2503D;
  border-right: 1px solid #F2503D;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .border_bl {
  width: 2.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F2503D;
  border-left: 1px solid #F2503D;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .border_br {
  width: 2.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F2503D;
  border-right: 1px solid #F2503D;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_title {
  padding-bottom: 1.6rem;
}
.orders_section .orders_box .orders_title h2 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_title h2 {
    font-size: 2.2rem;
  }
}
.orders_section .orders_box .pending_item {
  min-height: 54rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .orders_section .orders_box .pending_item {
    min-height: 35rem;
  }
}
.orders_section .orders_box .pending_item img {
  width: 6rem;
}
.orders_section .orders_box .pending_item h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #F5F5F5;
  line-height: 130%;
  margin: 1.6rem 0rem 1.2rem;
}
.orders_section .orders_box .pending_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #CECECE;
}
.orders_section .orders_box .orders_item {
  height: 51rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #F02731 #1D1D1D;
}
.orders_section .orders_box .orders_item::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.orders_section .orders_box .orders_item::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 2rem;
}
.orders_section .orders_box .orders_item::-webkit-scrollbar-thumb {
  background: #F02731;
  border-radius: 2rem;
}
.orders_section .orders_box .orders_item .orders_gameBox {
  background: #121212;
  padding: 2rem 2rem;
  margin-bottom: 1.6rem;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item {
    gap: 1.2rem;
  }
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_img {
  border: 1px solid #9B1A1B;
  flex-shrink: 0;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_img img {
  width: 9.2rem;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_img img {
    width: 8rem;
  }
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_text h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  color: #D0D0D0;
  margin-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_text h4 {
    font-size: 1.85rem;
    margin-bottom: 0.45rem;
  }
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: #B8B8B8;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_text p {
    margin-bottom: 0.25rem;
  }
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_item .orders_gameBox_text p:last-child {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_status {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
  }
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_gameBox_content .orders_gameBox_status span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #E0CDCE;
  background: #231313;
  border: 1px solid #A11B1B;
  display: inline-block;
  padding: 0.4rem 1.2rem;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.4rem;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  background: #37AE48;
  border: 1px solid #4BB65A;
  width: 48.2%;
  display: block;
  text-align: center;
  padding: 0.8rem 1.2rem;
  position: relative;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button a:hover {
  opacity: 0.85;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button a .border_tl {
  width: 0.9rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button a .border_tr {
  width: 0.9rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button a .border_bl {
  width: 0.9rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button a .border_br {
  width: 0.9rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_gameBox .orders_button .reject_btn {
  background: #F02731;
  border-color: #F23D46;
}
.orders_section .orders_box .orders_item .orders_player_box {
  background: #0F0F0F;
  border-bottom: 1px solid #260F0F;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orders_section .orders_box .orders_item .orders_player_box .playes_item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.orders_section .orders_box .orders_item .orders_player_box .playes_item img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  flex-shrink: 0;
}
.orders_section .orders_box .orders_item .orders_player_box .playes_item h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #F9F9FF;
}
.orders_section .orders_box .orders_item .orders_player_box .cancel_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F9F9FF;
  background: #212121;
  display: inline-block;
  padding: 0.85rem 2rem;
  position: relative;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_player_box .cancel_btn a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_player_box .cancel_btn a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_player_box .cancel_btn a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_player_box .cancel_btn a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.orders_section .orders_box .orders_item .orders_player_box .cancel_btn a:hover span {
  border-color: #F02731;
}

.createGroup_section {
  border-top: 1px solid #521518;
  padding-bottom: 7rem;
}
.createGroup_section .logo_upload span {
  border-radius: 50%;
}
.createGroup_section .select_btn .border_tl,
.createGroup_section .select_btn .border_tr,
.createGroup_section .select_btn .border_bl,
.createGroup_section .select_btn .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-color: #a11b1b;
}
@media (max-width: 767px) {
  .createGroup_section {
    padding-bottom: 6rem;
  }
}

.before_joinTournament {
  padding-top: 0rem;
}

.joinTournament_title p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.joinTournament_title p span {
  width: 0.4rem;
  height: 0.4rem;
  display: inline-block;
  background: #FFF;
  border-radius: 50%;
  margin: 0 1.3rem;
}
.joinTournament_title .join_titleText h2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.joinTournament_title .join_titleText h2 .season_btn {
  font-size: 1.4rem;
  line-height: initial;
  display: inline-block;
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.2) 3.38%, rgba(228, 105, 18, 0.2) 22.95%, rgba(246, 153, 41, 0.2) 63.01%, rgba(253, 172, 51, 0.2) 77.92%);
  padding: 0.6rem 2rem;
  margin-right: 2rem;
  flex-shrink: 0;
}
.joinTournament_title .join_titleText h2 .season_btn span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 142%;
  letter-spacing: initial;
  margin: 0;
  padding: 0;
  background: var(--Linear, linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.joinTournament_title .join_titleText p {
  letter-spacing: 0.01rem;
}
.joinTournament_title .join_titleText a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFF;
  background: #2FAA54;
  display: inline-block;
  padding: 0.2rem 1.3rem;
}
.joinTournament_title .join_titleText .status span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFF;
  background: #2FAA54;
  display: inline-block;
  padding: 0.2rem 1.3rem;
}
.joinTournament_title .join_titleText .status span.ended {
  background: #A11B1B;
}
@media (max-width: 767px) {
  .joinTournament_title .join_titleText h2 {
    font-size: 3.75rem;
  }
}
.joinTournament_title .join_btn a {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 15.4rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F02731;
  border: 1px solid #F46B4F;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
@media (max-width: 767px) {
  .joinTournament_title .join_btn a {
    font-size: 1.5rem;
    width: 14rem;
    height: 3.6rem;
  }
}
.joinTournament_title .join_btn a img {
  width: 2rem;
}
.joinTournament_title .join_btn a .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.joinTournament_title .join_btn a .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.joinTournament_title .join_btn a .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.joinTournament_title .join_btn a .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.joinTournament_title .join_btn a:hover span {
  transform: scale(1.2);
}

.join_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0rem 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .join_links {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .join_links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.join_links ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .join_links ul {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
.join_links ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  width: 13.8rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.2rem 1rem;
  position: relative;
  background-image: url("../img/joint-links-shape.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transition: 0.2s all ease;
}
.join_links ul li a:hover, .join_links ul li a.active {
  background-image: url("../img/joint-links-shape-active.svg");
}
@media (max-width: 991px) {
  .join_links ul li a {
    width: 13rem;
    height: 3.6rem;
  }
}
@media (max-width: 767px) {
  .join_links ul li a {
    width: 11rem;
    height: 3.8rem;
    font-size: 1.5rem;
  }
}
.join_links button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  background: #212121;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 2rem;
  position: relative;
}
.join_links button img {
  width: 2rem;
}
.join_links button .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.join_links button .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.join_links button .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.join_links button .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.join_links button:hover span {
  transform: scale(1.25);
}

.joinTournament_wraper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 4.2rem 0rem;
}
@media (max-width: 991px) {
  .joinTournament_wraper {
    flex-direction: column;
  }
}
.joinTournament_wraper .joint_details {
  width: 72%;
}
@media (max-width: 991px) {
  .joinTournament_wraper .joint_details {
    width: 100%;
  }
}
.joinTournament_wraper .joint_groups {
  width: 28%;
}
@media (max-width: 991px) {
  .joinTournament_wraper .joint_groups {
    width: 100%;
  }
}

.joint_title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.joint_title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
}
.joint_title a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #F02731;
  position: relative;
}
.joint_title a::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #F02731;
  display: inline-block;
  border-radius: 50%;
  margin-left: 0.4rem;
}

.jointCard_wraper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .jointCard_wraper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    column-gap: 1.5rem;
  }
}
.jointCard_wraper .joint_card {
  background: #080808;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.jointCard_wraper .joint_card .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.jointCard_wraper .joint_card .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.jointCard_wraper .joint_card .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.jointCard_wraper .joint_card .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.jointCard_wraper .joint_card:hover span {
  border-color: #DA1111;
}
.jointCard_wraper .joint_card .joint_cardText h4 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}
.jointCard_wraper .joint_card .joint_cardText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.jointCard_wraper .joint_card .joint_cardText p img {
  width: 1.4rem;
}
.jointCard_wraper .joint_card .joint_cardText a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.jointCard_wraper .joint_card .joint_cardImg img {
  width: 3.2rem;
}
@media (max-width: 991px) {
  .jointCard_wraper .joint_card .joint_cardImg img {
    width: 2.6rem;
  }
}
.jointCard_wraper .joint_card .joint_cardGame {
  border: 1px solid #480F0F;
}
.jointCard_wraper .joint_card .joint_cardGame img {
  width: 4rem;
}
@media (max-width: 991px) {
  .jointCard_wraper .joint_card .joint_cardGame img {
    width: 3.5rem;
  }
}

.jointdetails_wraper {
  padding-top: 4rem;
}
.jointdetails_wraper .discord_comunityBox {
  background: #300808;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .jointdetails_wraper .discord_comunityBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.jointdetails_wraper .discord_comunityBox .discord_comunityText {
  max-width: 54rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.jointdetails_wraper .discord_comunityBox .discord_comunityText img {
  width: 5.6rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .jointdetails_wraper .discord_comunityBox .discord_comunityText img {
    width: 5rem;
  }
}
.jointdetails_wraper .discord_comunityBox .discord_comunityText p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .jointdetails_wraper .discord_comunityBox .discord_comunityText p {
    font-size: 1.8rem;
  }
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .jointdetails_wraper .discord_comunityBox .discord_comunityBtn {
    text-align: center;
    margin: 0 auto;
  }
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn a {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 11.2rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F02731;
  border: 1px solid #F46B4F;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .discord_comunityBox .discord_comunityBtn a:hover span {
  transform: scale(1.25);
}
.jointdetails_wraper .jointDetails_text {
  padding: 2.4rem 0rem;
}
.jointdetails_wraper .jointDetails_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: initial;
  color: #FFFFFF;
  margin: 1.6rem 0rem 1rem;
}
.jointdetails_wraper .jointDetails_text ul {
  max-width: 46.8rem;
  width: 100%;
  list-style-type: decimal;
  padding-right: 2rem;
}
.jointdetails_wraper .jointDetails_text ul li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.jointdetails_wraper .jointDetails_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.jointdetails_wraper .jointDetails_heading {
  background: #300808;
  padding: 2rem 2.2rem;
}
.jointdetails_wraper .jointDetails_heading h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
}
@media (max-width: 767px) {
  .jointdetails_wraper .jointDetails_heading h3 {
    font-size: 2.5rem;
  }
}
.jointdetails_wraper .maneger_item {
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.jointdetails_wraper .maneger_box {
  max-width: 30.2rem;
  width: 100%;
  background: #080808;
  padding: 1.8rem 1.6rem;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.jointdetails_wraper .maneger_box .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #68181C;
  border-left: 1px solid #68181C;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .maneger_box .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #68181C;
  border-right: 1px solid #68181C;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .maneger_box .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #68181C;
  border-left: 1px solid #68181C;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .maneger_box .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #68181C;
  border-right: 1px solid #68181C;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.jointdetails_wraper .maneger_box .maneger_text {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.jointdetails_wraper .maneger_box .maneger_text .manager_img {
  flex-shrink: 0;
  border: 1px solid #F60606;
}
.jointdetails_wraper .maneger_box .maneger_text .manager_img img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
}
.jointdetails_wraper .maneger_box .maneger_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFFFFF;
}
.jointdetails_wraper .maneger_box .maneger_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.54);
}

.dot_btn {
  position: relative;
}
.dot_btn img {
  width: 2.4rem;
}
.dot_btn .maneger_dropdown {
  width: 19.3rem;
  background: #000000;
  padding: 1.2rem 0rem;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
.dot_btn .maneger_dropdown .border_tl {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.dot_btn .maneger_dropdown .border_tr {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.dot_btn .maneger_dropdown .border_bl {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.dot_btn .maneger_dropdown .border_br {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.dot_btn .maneger_dropdown a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  transition: 0.2s all ease;
}
.dot_btn .maneger_dropdown a img {
  width: 2rem;
}
.dot_btn .maneger_dropdown a:hover {
  color: #FFF;
  background: #F02731;
}
.dot_btn.active .maneger_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 9;
}

.joint_groupBox {
  background: #080808;
  padding: 1.8rem 1.8rem;
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
  position: relative;
}
.joint_groupBox .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #68181C;
  border-left: 1px solid #68181C;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.joint_groupBox .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #68181C;
  border-right: 1px solid #68181C;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.joint_groupBox .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #68181C;
  border-left: 1px solid #68181C;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.joint_groupBox .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #68181C;
  border-right: 1px solid #68181C;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}

.groupBox_textWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #360E10;
  padding-bottom: 1.2rem;
}
.groupBox_textWrap .groupBox_text {
  text-align: center;
}
.groupBox_textWrap .groupBox_text h4 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}
.groupBox_textWrap .groupBox_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}

.groupBox_item {
  padding-top: 2rem;
}
.groupBox_item .groupBox_img {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.groupBox_item .groupBox_img img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: cover;
  border: 1px solid #9B1A1A;
  border-radius: 50%;
  margin-right: -1rem;
}
.groupBox_item .groupBox_img img:first-child {
  margin-right: 0rem;
  z-index: 9;
}
.groupBox_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  max-width: 20.2rem;
  width: 100%;
  direction: ltr;
  text-align: right;
}

.prize_item .prize_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #360E10;
}
.prize_item .prize_text:first-child {
  padding-top: 0rem;
}
.prize_item .prize_text:last-child {
  border-bottom: none;
}
.prize_item .prize_text span {
  font-size: 1.6rem;
  font-weight: 400;
  background: linear-gradient(to right bottom, #FDAC33, #DE5709);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prize_item .prize_text .second_place {
  background: linear-gradient(to right bottom, #F5F6FF, #808080);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prize_item .prize_text .third_place {
  background: linear-gradient(to right bottom, #E07A4A, #8B1E1E);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prize_item .prize_text p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.prize_item .prize_text p img {
  width: 1.8rem;
}

.timeline_wraper .timeline_item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.timeline_wraper .timeline_item .timeline_icon {
  flex-shrink: 0;
}
.timeline_wraper .timeline_item .timeline_icon img {
  width: 2.4rem;
  display: block;
}
.timeline_wraper .timeline_item .timeline_icon img:last-child {
  width: 1.1rem;
  display: block;
  margin: 0 auto;
}
.timeline_wraper .timeline_item .timeline_text span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.timeline_wraper .timeline_item .timeline_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
}
.timeline_wraper .timeline_item .timeline_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  max-width: 18.8rem;
  width: 100%;
}
.timeline_wraper .timeline_item:hover {
  cursor: pointer;
}
.timeline_wraper .timeline_item.active img, .timeline_wraper .timeline_item:hover img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(20%) saturate(6913%) hue-rotate(340deg) brightness(77%) contrast(104%);
}

.conversation_box {
  padding: 1.6rem 1.2rem 1.6rem 1.6rem;
  position: relative;
}
.conversation_box .chat_box .chat_heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #360E10;
}
.conversation_box .chat_box .chat_heading .chat_heading_img {
  width: 5.2rem;
  height: 4.8rem;
  border: 1px solid #9B1A1B;
}
.conversation_box .chat_box .chat_heading .chat_heading_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conversation_box .chat_box .chat_heading .chat_heading_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}
.conversation_box .chat_box .chat_heading .expand_btn {
  margin-right: auto;
}
.conversation_box .chat_box .chat_heading .expand_btn img {
  width: 1.4rem;
}
.conversation_box .chat_box .chat_panelWraper {
  padding: 1.6rem 0rem;
  direction: ltr;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel {
  height: 19rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #300808 #170909;
  padding-right: 1.2rem;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel::-webkit-scrollbar {
  width: 0.4rem;
  border-radius: 2rem;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel::-webkit-scrollbar-track {
  background: #170909;
  border-radius: 2rem;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel::-webkit-scrollbar-thumb {
  background: #300808;
  border-radius: 2rem;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_text {
  background: #210A0A;
  padding: 0.4rem 1rem;
  border-radius: 1.6rem 1.6rem 0rem 1.6rem;
  display: inline-block;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  margin-left: auto;
  justify-content: flex-end;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_item .chat_text {
  border-radius: 1.6rem 1.6rem 1.6rem 0rem;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_item img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 1px solid #9B1A1A;
  border-radius: 50%;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_item2 {
  margin-right: auto;
  justify-content: flex-start;
}
.conversation_box .chat_box .chat_panelWraper .chat_panel .chat_item2 .chat_text {
  background: #171717;
}
.conversation_box .chat_box .chatField_wrap {
  background: #080808;
  margin-top: auto;
  z-index: 9;
  position: relative;
}
.conversation_box .chat_box .chatField_wrap::before {
  content: "";
  width: 100%;
  height: 3.5rem;
  display: block;
  background: linear-gradient(to bottom, transparent, #000);
  position: absolute;
  bottom: 100%;
  left: 0;
}
.conversation_box .chat_box .chatField_wrap .chatField_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.conversation_box .chat_box .chatField_wrap .chatField_item button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.conversation_box .chat_box .chatField_wrap .chatField_item button img {
  width: 2rem;
  pointer-events: none;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input {
  width: 100%;
  position: relative;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input .border_tl {
  width: 0.5rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input .border_tr {
  width: 0.5rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input .border_bl {
  width: 0.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input .border_br {
  width: 0.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input:focus {
  border-color: #3F1717;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input input {
  width: 100%;
  height: 3.7rem;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 1.2rem;
  text-align: right;
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.conversation_box .chat_box .chatField_wrap .chatField_item .chat_input input:focus {
  border-color: #400E10;
}
.conversation_box .conversation_overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.7rem);
  -webkit-backdrop-filter: blur(0.7rem);
  position: absolute;
  inset: 0;
  z-index: 10;
}
.conversation_box .conversation_overlay img {
  width: 3.2rem;
}
.conversation_box .conversation_overlay p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFF;
  margin: 0.8rem 0rem 1.2rem;
}
.conversation_box .conversation_overlay a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 15.4rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F02731;
  border: 1px solid #F46B4F;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.conversation_box .conversation_overlay a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .conversation_overlay a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .conversation_overlay a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .conversation_overlay a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.conversation_box .conversation_overlay a:hover span {
  transform: scale(1.25);
}

.live_stream {
  height: 20rem;
  position: relative;
}
@media (max-width: 991px) {
  .live_stream {
    height: 35rem;
  }
}
@media (max-width: 767px) {
  .live_stream {
    height: 25rem;
  }
}
.live_stream iframe {
  width: 100%;
  height: 100%;
}

.database_wraper .database_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0rem 1.2rem;
  border-bottom: 1px solid #360E10;
}
.database_wraper .database_item:first-child {
  padding-top: 0rem;
}
.database_wraper .database_item:last-child {
  padding-bottom: 0rem;
  border-bottom: none;
}
.database_wraper .database_item img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border: 1px solid #A1201F;
}
.database_wraper .database_item p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.database_wraper .database_item p span {
  width: 0.2rem;
  height: 1.4rem;
  display: block;
  background: #F02731;
}

.settings_wraper .settings_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0rem 1.4rem;
  border-bottom: 1px solid #360E10;
}
.settings_wraper .settings_item:first-child {
  padding-top: 0rem;
}
.settings_wraper .settings_item:last-child {
  padding-bottom: 0rem;
  border-bottom: none;
}
.settings_wraper .settings_item p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.settings_wraper .settings_item p span {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  background: #DA1111;
  border: 1px solid rgba(218, 17, 17, 0.3);
  border-radius: 50%;
}
.settings_wraper .settings_item p .green {
  background: #1FE93C;
  border-color: rgba(31, 233, 60, 0.3);
}

.jointmodal_body {
  padding: 5.5rem 4rem;
}
@media (max-width: 767px) {
  .jointmodal_body {
    padding: 3.6rem 2rem;
  }
}
.jointmodal_body .jointmodal_btn {
  padding-top: 4rem;
  border-top: 1px solid #370E10;
}
.jointmodal_body .jointmodal_btn a {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  display: inline-block;
  padding: 0.8rem 4rem;
  text-align: center;
  background: #F02731;
  border: 1px solid #F46B4F;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.jointmodal_body .jointmodal_btn a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointmodal_body .jointmodal_btn a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointmodal_body .jointmodal_btn a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointmodal_body .jointmodal_btn a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointmodal_body .jointmodal_btn a:hover span {
  transform: scale(1.25);
}
.jointmodal_body .jointmodal_btn .disable {
  background: #1E0E0E;
  color: #675D60;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  cursor: no-drop;
  pointer-events: none;
}
.jointmodal_body .jointmodal_btn .disable span {
  border-color: #888484;
}

.jointmodal_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .jointmodal_title p {
    font-size: 1.8rem;
  }
}

.addaccount_wrap {
  padding-top: 4rem;
  padding-bottom: 4.2rem;
}
.addaccount_wrap .addaccount_item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.addaccount_wrap .addaccount_item .addaccount_icon {
  flex-shrink: 0;
}
.addaccount_wrap .addaccount_item .addaccount_icon a {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3E1617;
  border: 1px solid #614546;
}
.addaccount_wrap .addaccount_item .addaccount_icon a img {
  width: 2.1rem;
}
.addaccount_wrap .addaccount_item .addaccount_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}
.addaccount_wrap .addaccount_item .addaccount_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.addaccount_wrap .addaccount_btn {
  padding-top: 2.4rem;
}
.addaccount_wrap .addaccount_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  display: inline-block;
  padding: 0.9rem 2rem;
  transition: 0.2s all ease;
}
.addaccount_wrap .addaccount_btn a:hover {
  opacity: 0.85;
}

.addgame_wraper {
  padding: 4rem 0rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.addgame_wraper .addgame_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.addgame_wraper .addgame_item .addgame_img {
  width: 5.4rem;
  height: 5rem;
  border: 1px solid #A31B1C;
  flex-shrink: 0;
}
.addgame_wraper .addgame_item .addgame_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.addgame_wraper .addgame_item .addgame_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.addgame_wraper .addgame_item .addgame_text p img {
  width: 1.4rem;
}
.addgame_wraper .dot_btn {
  position: relative;
}
.addgame_wraper .dot_btn img {
  width: 2.4rem;
}
.addgame_wraper .dot_btn .maneger_dropdown {
  width: 19.3rem;
  background: #000000;
  padding: 1.2rem 0rem;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
.addgame_wraper .dot_btn .maneger_dropdown .border_tl {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.addgame_wraper .dot_btn .maneger_dropdown .border_tr {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.addgame_wraper .dot_btn .maneger_dropdown .border_bl {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.addgame_wraper .dot_btn .maneger_dropdown .border_br {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.addgame_wraper .dot_btn .maneger_dropdown a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  transition: 0.2s all ease;
}
.addgame_wraper .dot_btn .maneger_dropdown a img {
  width: 2rem;
}
.addgame_wraper .dot_btn .maneger_dropdown a:hover {
  color: #FFF;
}
.addgame_wraper .dot_btn.active .maneger_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 9;
}

.remove_modal {
  max-width: 54rem;
}
.remove_modal .removemodal_body {
  padding: 4rem 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .remove_modal .removemodal_body {
    padding: 3rem 2rem;
  }
}
.remove_modal .removemodal_body .removemodal_title {
  text-align: center;
}
.remove_modal .removemodal_body .removemodal_title h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .remove_modal .removemodal_body .removemodal_title h3 {
    font-size: 2.6rem;
  }
}
.remove_modal .removemodal_body .removemodal_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
.remove_modal .removemodal_body .removemodal_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding-top: 4rem;
}
.remove_modal .removemodal_body .removemodal_button a,
.remove_modal .removemodal_body .removemodal_button button {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
  background: #292222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 15.4rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: 0.2s all ease;
  cursor: pointer;
}
.remove_modal .removemodal_body .removemodal_button a .border_tl,
.remove_modal .removemodal_body .removemodal_button button .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.remove_modal .removemodal_body .removemodal_button a .border_tr,
.remove_modal .removemodal_body .removemodal_button button .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.remove_modal .removemodal_body .removemodal_button a .border_bl,
.remove_modal .removemodal_body .removemodal_button button .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.remove_modal .removemodal_body .removemodal_button a .border_br,
.remove_modal .removemodal_body .removemodal_button button .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.remove_modal .removemodal_body .removemodal_button a.active,
.remove_modal .removemodal_body .removemodal_button button.active {
  background: #F02731;
  color: #F5F6FF;
}
.remove_modal .removemodal_body .removemodal_button a.active span,
.remove_modal .removemodal_body .removemodal_button button.active span {
  transform: scale(1.25);
}
.remove_modal .removemodal_body .removemodal_button a:hover,
.remove_modal .removemodal_body .removemodal_button button:hover {
  background: #F02731;
  color: #F5F6FF;
  opacity: 0.85;
}
.remove_modal .removemodal_body .removemodal_button a:hover span,
.remove_modal .removemodal_body .removemodal_button button:hover span {
  transform: scale(1.25);
}

.successRegister_wrap {
  padding: 4rem 0rem;
}
.successRegister_wrap .registM_wrap {
  max-width: 38.7rem;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.successRegister_wrap .registM_wrap .checkmark_icon {
  flex-shrink: 0;
}
.successRegister_wrap .registM_wrap .checkmark_icon img {
  width: 3.2rem;
}
.successRegister_wrap .timeM_btn {
  text-align: center;
}
.successRegister_wrap .timeM_btn button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  background: #212121;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 2rem;
  position: relative;
}
.successRegister_wrap .timeM_btn button img {
  width: 2rem;
}
.successRegister_wrap .timeM_btn button .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.successRegister_wrap .timeM_btn button .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.successRegister_wrap .timeM_btn button .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.successRegister_wrap .timeM_btn button .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.successRegister_wrap .timeM_btn button:hover span {
  transform: scale(1.25);
}

.colorbg_v1 {
  position: relative;
}
.colorbg_v1::after {
  content: "";
  width: 100%;
  height: 46rem;
  display: block;
  background: linear-gradient(180deg, rgba(84, 84, 84, 0.8) 20.39%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.colorbg_v2 {
  position: relative;
}
.colorbg_v2::after {
  content: "";
  width: 100%;
  height: 46rem;
  display: block;
  background: linear-gradient(180deg, rgba(3, 25, 64, 0.8) 0%, rgba(3, 25, 64, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.colorbg_v3 {
  position: relative;
}
.colorbg_v3::after {
  content: "";
  width: 100%;
  height: 46rem;
  display: block;
  background: linear-gradient(0deg, rgba(22, 20, 16, 0) 0%, rgba(208, 29, 33, 0.5) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.joinTournament_title .logout_btn a {
  background: rgba(240, 39, 49, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.info_box {
  background: #080808;
  padding: 2rem 2rem;
  margin-top: 4rem;
  position: relative;
}
.info_box .border_tl {
  width: 1rem;
  height: 0.8rem;
  border-top: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.info_box .border_tr {
  width: 1rem;
  height: 0.8rem;
  border-top: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.info_box .border_bl {
  width: 1rem;
  height: 0.8rem;
  border-bottom: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.info_box .border_br {
  width: 1rem;
  height: 0.8rem;
  border-bottom: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
@media (max-width: 767px) {
  .info_box {
    margin-top: 2.5rem;
  }
}
.info_box .info_bar {
  background: #0C63D4;
  border: 1px solid rgba(246, 153, 41, 0.2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
}
.info_box .info_bar img {
  width: 2rem;
}
.info_box .info_bar p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: #FFF;
}
.info_box .infoBox_item {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .info_box .infoBox_item {
    flex-direction: column;
    gap: 2rem;
  }
}
.info_box .infoBox_item .infoBox_game {
  width: 5.4rem;
  height: 5rem;
  border: 1px solid #671112;
  position: relative;
}
.info_box .infoBox_item .infoBox_game .premium_badge {
  width: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}
.info_box .infoBox_item .infoBox_game .game {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info_box .infoBox_item .infoBox_game span {
  width: 1rem;
  height: 1rem;
  display: block;
  background: #37AE48;
  border-radius: 50%;
  position: absolute;
  left: -0.4rem;
  bottom: -0.4rem;
}
.info_box .infoBox_item .infoBox_button {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.6rem;
}
.info_box .infoBox_item .infoBox_button a {
  width: 12.4rem;
  gap: 0.7rem;
}
.info_box .infoBox_item .infoBox_button .disabled a {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.addAccount_button {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575px) {
  .addAccount_button {
    gap: 0.8rem;
  }
}
.addAccount_button a {
  font-family: "Cooperative" !important;
  font-size: 1.6rem !important;
  font-weight: 400;
  color: #FFFFFF;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 !important;
  position: relative;
  transition: 0.2s all ease;
  text-decoration: underline;
}
.addAccount_button span {
  display: flex;
  align-items: center;
}
.addAccount_button span img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-left: -1.4rem;
}
.addAccount_button span img:last-child {
  margin-left: 0rem;
}
@media (max-width: 575px) {
  .addAccount_button span img {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: -1.2rem;
  }
}

.info_box .info_barGreen {
  background: #37AE48;
  border-color: rgba(55, 174, 72, 0.2);
}

.tournament_overview_wraper {
  padding: 5.6rem 0rem 1.6rem;
}
@media (max-width: 767px) {
  .tournament_overview_wraper {
    padding: 4rem 0rem 0rem;
  }
}
.tournament_overview_wraper .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2.4;
}
.tournament_overview_wraper .overview_box {
  background: #121212;
  border: 1px solid rgba(240, 39, 49, 0.1);
  padding: 2.4rem 2.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .tournament_overview_wraper .overview_box {
    padding: 2rem 1.8rem;
  }
}
.tournament_overview_wraper .overview_box .right_shape img {
  width: 5.6rem;
  position: absolute;
  right: 0;
  top: 0.5rem;
}
.tournament_overview_wraper .overview_box .right_shape img:last-child {
  top: 48%;
}
.tournament_overview_wraper .overview_box .left_shape img {
  width: 5.6rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.tournament_overview_wraper .overview_box .left_shape img:last-child {
  top: 48%;
}
.tournament_overview_wraper .overview_box .status span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #F02731;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0rem 0.5rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}
.tournament_overview_wraper .overview_box .overview_title {
  text-align: center;
}
.tournament_overview_wraper .overview_box .overview_title span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #FFF;
  background: #A11B1B;
  display: inline-block;
  padding: 0rem 0.5rem;
}
.tournament_overview_wraper .overview_box .overview_title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.2rem;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.8rem 0rem;
}
.tournament_overview_wraper .overview_box .overview_title h3 img {
  width: 4rem;
}
.tournament_overview_wraper .overview_box .overview_title p {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.tournament_overview_wraper .overview_box .overview_title p span {
  width: 1px;
  height: 1.2rem;
  background: #F02731;
  display: block;
  padding: 0;
}
.tournament_overview_wraper .overview_box .overview_gameBox {
  background: #171717;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 1.5rem;
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 9;
}
.tournament_overview_wraper .overview_box .overview_gameBox .overview_gameItem {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tournament_overview_wraper .overview_box .overview_gameBox .overview_gameItem .overview_gameImg img {
  width: 3.3rem;
}
.tournament_overview_wraper .overview_box .overview_gameBox .overview_gameItem .overview_gameText p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  color: #F02731;
  margin-bottom: 0.4rem;
}
.tournament_overview_wraper .overview_box .overview_gameBox .overview_gameItem .overview_gameText p.green {
  color: #37AE48;
}
.tournament_overview_wraper .overview_box .overview_gameBox .overview_gameItem .overview_gameText h4 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.tournament_overview_wraper .overview_box .overview_gameBox .overview_gamePoint h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.tournament_overview_wraper .overview_box.greenBox {
  border-color: rgba(55, 174, 72, 0.1);
}
.tournament_overview_wraper .overview_box.greenBox .status span {
  color: #37AE48;
}
.tournament_overview_wraper .overview_box.greenBox .overview_title span {
  background: #2FAA54;
}
.tournament_overview_wraper .overview_box.greenBox .overview_title p span {
  background: #F02731;
}

.readyTeam_hero {
  padding-top: 2.5rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .readyTeam_hero {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
}
.readyTeam_hero .season_btnnv {
  font-size: 1.4rem;
  line-height: initial;
  display: inline-block;
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.2) 3.38%, rgba(228, 105, 18, 0.2) 22.95%, rgba(246, 153, 41, 0.2) 63.01%, rgba(253, 172, 51, 0.2) 77.92%);
  padding: 0.6rem 2rem;
  margin-right: 2rem;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.readyTeam_hero .season_btnnv span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 142%;
  letter-spacing: initial;
  margin: 0;
  padding: 0;
  background: var(--Linear, linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.readyTeam_hero .back_btn {
  position: absolute;
  right: 0;
}
.readyTeam_hero .back_btn a {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: initial;
  color: #F9F9FF;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.readyTeam_hero .back_btn a img {
  width: 2.4rem;
}
.readyTeam_hero .back_btn a span {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .readyTeam_hero .back_btn {
    position: static;
    margin-bottom: 1rem;
  }
  .readyTeam_hero .back_btn a {
    font-size: 1.8rem;
  }
  .readyTeam_hero .back_btn a img {
    width: 2.1rem;
  }
}
.readyTeam_hero .live_btn {
  text-align: center;
  padding-top: 0.8rem;
}
.readyTeam_hero .live_btn a {
  font-family: "Cooperative", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 120%;
  color: #A11B1B;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0rem 1.32rem;
}
.readyTeam_hero .live_btn a img {
  width: 4rem;
}
@media (max-width: 767px) {
  .readyTeam_hero .live_btn a {
    font-size: 2.5rem;
    line-height: 132%;
    gap: 0.7rem;
  }
  .readyTeam_hero .live_btn a img {
    width: 2.8rem;
  }
}
.readyTeam_hero .live_btn2 {
  text-align: center;
  padding-top: 0.8rem;
}
.readyTeam_hero .live_btn2 img {
  width: 7rem;
}
.readyTeam_hero .readyTeam_heroTitle {
  max-width: 67rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2.2rem 0rem 1.6rem;
}
.readyTeam_hero .readyTeam_heroTitle h2 {
  margin-bottom: 1.6rem;
}
.readyTeam_hero .readyTeam_heroTitle p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}
.readyTeam_hero .readyTeam_heroTitle p a {
  color: #F02731;
}
@media (max-width: 767px) {
  .readyTeam_hero .readyTeam_heroTitle p {
    font-size: 1.6rem;
  }
}
.readyTeam_hero .readyTeam_heroGame {
  max-width: 57rem;
  width: 100%;
  background: #150B0B;
  margin: 0 auto;
  padding: 2rem 1.6rem;
  position: relative;
  box-shadow: -4.5rem -1.4rem 5.44rem rgba(255, 26, 26, 0.12) inset;
}
@media (max-width: 767px) {
  .readyTeam_hero .readyTeam_heroGame {
    padding: 2rem 1rem;
  }
}
.readyTeam_hero .readyTeam_heroGame .border_tl {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_hero .readyTeam_heroGame .border_tr {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_hero .readyTeam_heroGame .border_bl {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_hero .readyTeam_heroGame .border_br {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_item {
    gap: 0.5rem;
  }
}
.readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_item img {
  width: 5.9rem;
}
@media (max-width: 767px) {
  .readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_item img {
    width: 4.2rem;
  }
}
.readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_item p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_item p {
    font-size: 1.6rem;
  }
}
.readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_text h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 100%;
  background: linear-gradient(to bottom, #F21F1F 0%, #360B0B 50%, #F21F1F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);
}
@media (max-width: 767px) {
  .readyTeam_hero .readyTeam_heroGame .readyTeam_heroGame_wraper .readyTeam_heroGame_text h3 {
    font-size: 3.2rem;
  }
}

.readyTeam_timer {
  padding: 6rem 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
@media (max-width: 767px) {
  .readyTeam_timer {
    padding: 4rem 0rem;
  }
}
.readyTeam_timer h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .readyTeam_timer h4 {
    font-size: 1.8rem;
  }
}
.readyTeam_timer .timer_wraper {
  width: 12rem;
  height: 12rem;
  margin: 3.2rem auto 4.2rem;
  position: relative;
}
.readyTeam_timer .timer_wraper .timer {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, #000 60%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.readyTeam_timer .timer_wraper .timer .progress-ring {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.readyTeam_timer .timer_wraper .timer .time {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 140%;
  color: #FFFFFF;
  position: absolute;
}
.readyTeam_timer p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}

.readyTeam_button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 4rem 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.readyTeam_button a {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  min-width: 12rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../img/button-shape.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.readyTeam_button a:hover {
  background-image: url("../img/button-selected-shape.png");
}
.readyTeam_button a.selected {
  background-image: url("../img/button-selected-shape.png");
  color: #FFFFFF;
}
.readyTeam_button a.active {
  background-image: url("../img/button-active-shape.png");
}
.readyTeam_button a:first-child {
  min-width: 14rem;
}
.readyTeam_button span {
  width: 7rem;
  height: 0.7rem;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  border-radius: 5rem;
}
.readyTeam_button span.active_shape {
  background: linear-gradient(to right, rgba(255, 13, 18, 0) 0%, rgba(255, 13, 18, 0.8) 50%, rgba(255, 13, 18, 0) 100%);
}
@media (max-width: 767px) {
  .readyTeam_button {
    padding: 3rem 0rem;
  }
  .readyTeam_button span {
    display: none;
  }
}

.readyTeam_section {
  padding-top: 4.2rem;
  padding-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .readyTeam_section {
    padding-top: 3.2rem;
  }
}

.readyTeam_title h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.readyTeam_title h3 img {
  width: 5.8rem;
}
@media (max-width: 767px) {
  .readyTeam_title h3 {
    font-size: 2.6rem;
    gap: 1.2rem;
  }
  .readyTeam_title h3 img {
    width: 5rem;
  }
}

.readyTeam_wraper {
  padding-top: 4.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.6rem;
}
@media (max-width: 991px) {
  .readyTeam_wraper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .readyTeam_wraper {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 3rem;
  }
}
@media (max-width: 575px) {
  .readyTeam_wraper {
    grid-template-columns: 1fr;
  }
}
.readyTeam_wraper .readyTeam_card {
  position: relative;
  background: rgba(40, 20, 21, 0.5);
  border: 1px solid rgba(112, 8, 13, 0.2);
  min-height: 33.3rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardImg img {
  width: 100%;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardImg .badge {
  position: absolute;
  top: -1px;
  right: 1.6rem;
  padding: 0;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardImg .badge img {
  width: 2.6rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardImg .dot_btn {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardImg .dot_btn img {
  width: 3rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardImg .dot_btn .maneger_dropdown a img {
  width: 2rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem {
  background: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem .readyTeam_cardText h4 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem .readyTeam_cardText h4.gradient_text {
  background: linear-gradient(to left, #DE5709 0%, #E46912 21%, #F69929 64%, #FDAC33 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem .readyTeam_cardText p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem .readyTeam_cardText p button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem .readyTeam_cardText p button img {
  width: 1.6rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardItem .readyTeam_cardLabel span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #F02731;
  background: #000000;
  border: 1px solid rgba(255, 26, 26, 0.2);
  display: inline-block;
  padding: 0.1rem 0.8rem;
  border-radius: 5rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn {
  background: #000000;
  padding: 0rem 1.2rem 1.2rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 100%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  background: #F02731;
  border: 1px solid #F46B4F;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a img {
  width: 1.6rem;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a:hover span {
  transform: scale(1.3);
}
.readyTeam_wraper .readyTeam_card .readyTeam_cardBtn a.gray_btn {
  background: #303030;
  border-color: transparent;
  box-shadow: none;
}
.readyTeam_wraper .readyTeam_card.green_card {
  border: 1px solid rgba(55, 174, 72, 0.2);
}
.readyTeam_wraper .readyTeam_card.green_card .readyTeam_cardBtn a {
  background: #37AE48;
  border-color: #84BD5C;
}
.readyTeam_wraper .readyTeam_card.empty_card {
  background: #000000;
  border: 1px solid #281415;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F9F9FF;
  display: inline-block;
  background: #121212;
  padding: 0.7rem 1.2rem;
  text-align: center;
  position: relative;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a img {
  width: 2rem;
  margin-right: 0.4rem;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #595959;
  border-left: 1px solid #595959;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #595959;
  border-right: 1px solid #595959;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #595959;
  border-left: 1px solid #595959;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #595959;
  border-right: 1px solid #595959;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.readyTeam_wraper .readyTeam_card.empty_card .join_btn a:hover span {
  transform: scale(1.3);
}
.readyTeam_wraper .readyTeam_card.empty_card .empty_text p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
}

.readyTeam_section2 {
  padding-bottom: 10rem;
}
@media (max-width: 991px) {
  .readyTeam_section2 {
    padding-bottom: 5rem;
  }
}

.lineup_icon img {
  width: 3.8rem;
}

.lineup_iconv2 img {
  width: 4.6rem;
}

.readyTeam_timer .gradient_text {
  background: linear-gradient(to left, #DE5709 0%, #E46912 21%, #F69929 64%, #FDAC33 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.startTeam_section {
  padding: 4.5rem 0rem 10rem;
}
@media (max-width: 991px) {
  .startTeam_section {
    padding: 3.2rem 0rem 5rem;
  }
}

.startTeam_wraper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .startTeam_wraper {
    flex-direction: column;
    align-items: center;
  }
}
.startTeam_wraper .startTeam_card {
  max-width: 30.2rem;
  width: 100%;
  text-align: center;
}
.startTeam_wraper .startTeam_card .startTeam_box {
  width: 100%;
  height: 24.8rem;
  border: 1px solid #661616;
  padding: 0.2rem 0.2rem;
  position: relative;
  transition: 0.2s all ease;
}
.startTeam_wraper .startTeam_card .startTeam_box .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.startTeam_wraper .startTeam_card .startTeam_box .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.startTeam_wraper .startTeam_card .startTeam_box .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.startTeam_wraper .startTeam_card .startTeam_box .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.startTeam_wraper .startTeam_card .startTeam_box .team_banner {
  position: relative;
}
.startTeam_wraper .startTeam_card .startTeam_box .team_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.startTeam_wraper .startTeam_card .startTeam_box .team_banner .team_overlay {
  width: 100%;
  height: 100%;
  background: rgba(40, 20, 21, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  inset: 0;
  transition: 0.2s all ease;
}
.startTeam_wraper .startTeam_card .startTeam_box .team_banner .team_overlay img {
  width: 11rem;
  height: auto;
}
.startTeam_wraper .startTeam_card .startTeam_box .team_banner .team_overlay .team_game1 {
  width: 9.9rem;
}
.startTeam_wraper .startTeam_card .startTeam_box .team_banner .team_overlay.selected {
  background: rgba(55, 174, 72, 0.6);
}
.startTeam_wraper .startTeam_card .startTeam_box:hover {
  cursor: pointer;
}
.startTeam_wraper .startTeam_card .startTeam_box:hover span {
  transform: scale(1.3);
}
.startTeam_wraper .startTeam_card .startTeam_text {
  padding-top: 1.2rem;
  text-align: center;
}
.startTeam_wraper .startTeam_card .startTeam_text h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  text-align: center;
}

.mapselect_timer .text_color2 {
  color: #37AE48;
}

.mapSelect_section {
  padding: 4rem 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .mapSelect_section {
    padding: 3rem 0rem;
  }
}

.mapSelect_wraper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.4rem;
}
@media (max-width: 991px) {
  .mapSelect_wraper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .mapSelect_wraper {
    grid-template-columns: 1fr;
  }
}
.mapSelect_wraper .mapSelect_card {
  text-align: center;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box {
  border: 1px solid #661616;
  padding: 0.2rem 0.2rem;
  position: relative;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner {
  position: relative;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner .mapSelect_overlay {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  inset: 0;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner .mapSelect_overlay p {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all ease;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner .mapSelect_overlay.selected, .mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner .mapSelect_overlay:hover {
  box-shadow: 0rem 5.8rem 25rem 1.9rem #A11B1B inset;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner .mapSelect_overlay.selected p, .mapSelect_wraper .mapSelect_card .mapSelect_box .mapSelect_banner .mapSelect_overlay:hover p {
  opacity: 1;
  visibility: visible;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box:hover {
  cursor: pointer;
}
.mapSelect_wraper .mapSelect_card .mapSelect_box:hover span {
  transform: scale(1.3);
}
.mapSelect_wraper .mapSelect_card .mapSelect_text {
  padding-top: 1.2rem;
  text-align: center;
}
.mapSelect_wraper .mapSelect_card .mapSelect_text h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  text-align: center;
}

.mapRoadmap_section {
  padding: 5rem 0rem 10rem;
}
@media (max-width: 991px) {
  .mapRoadmap_section {
    padding: 4rem 0rem 6rem;
  }
}
@media (max-width: 767px) {
  .mapRoadmap_section {
    padding: 3rem 0rem 5rem;
  }
}
.mapRoadmap_section .mapRoadmap_wraper {
  max-width: 76rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 0.5rem;
}
.mapRoadmap_section .mapRoadmap_wraper::after {
  content: "";
  width: 1px;
  height: 95%;
  display: block;
  background: #3E3E3E;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .mapRoadmap_section .mapRoadmap_wraper::after {
    left: 17.5%;
    transform: initial;
  }
}
@media (max-width: 575px) {
  .mapRoadmap_section .mapRoadmap_wraper::after {
    left: 2.05rem;
    transform: initial;
  }
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item {
  max-width: 36.6rem;
  width: 100%;
  margin: 0;
  background: #212121;
  border: 1px solid #232F25;
  padding: 1.2rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  margin-bottom: 6rem;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item:last-child {
  margin-bottom: 0rem;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #37AE48;
  border-left: 1px solid #37AE48;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #37AE48;
  border-right: 1px solid #37AE48;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #37AE48;
  border-left: 1px solid #37AE48;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #37AE48;
  border-right: 1px solid #37AE48;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .mapRoadmap_img {
  flex-shrink: 0;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .mapRoadmap_img img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: cover;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .mapRoadmap_text h4 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item .mapRoadmap_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: #F02731;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: -2.05rem;
  top: 0;
  z-index: 9;
}
@media (max-width: 991px) {
  .mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item {
    max-width: 33.6rem;
    margin-bottom: 4.5rem;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item {
    max-width: 30.5rem;
    margin-bottom: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2 {
  margin-right: auto;
  background: #281415;
  border-color: #341516;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2 .border_tl,
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2 .border_tr,
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2 .border_bl,
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2 .border_br {
  border-color: #A11B1B;
}
.mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2::before {
  left: initial;
  right: -2.2rem;
}
@media (max-width: 767px) {
  .mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2 {
    margin-left: auto;
    margin-right: auto;
  }
  .mapRoadmap_section .mapRoadmap_wraper .mapRoadmap_item2::before {
    right: initial;
    left: -2.05rem;
  }
}

.selected_map {
  padding-top: 3rem;
  text-align: center;
}
.selected_map h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
}
.selected_map .selected_mapImg {
  max-width: 26.8rem;
  width: 100% 0;
  border: 1px solid #661616;
  padding: 0.2rem 0.2rem;
  margin: 1.2rem auto 1.6rem;
  overflow: hidden;
}
.selected_map .selected_mapImg img {
  width: 100%;
  transition: 0.25s all ease;
}
.selected_map .selected_mapImg:hover img {
  transform: scale(1.1);
}

.attack_card span {
  border-color: #A11B1B !important;
}
.attack_card .team_overlay {
  background: transparent !important;
}
.attack_card .team_overlay span {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.6rem;
  color: #FFF;
  background: #A11B1B;
  display: inline-block;
  padding: 0rem 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  top: 0;
}
.attack_card .team_overlay.selected {
  background: rgba(55, 174, 72, 0.6) !important;
}

.defend_card span {
  border-color: #A11B1B !important;
}
.defend_card .team_overlay {
  background: transparent !important;
}
.defend_card .team_overlay span {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.6rem;
  color: #FFF;
  background: #281415;
  display: inline-block;
  padding: 0rem 2.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  top: 0;
}
.defend_card .team_overlay.selected {
  background: rgba(55, 174, 72, 0.6) !important;
}

.how_playBtn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F9F9FF;
  background: #DA232D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  position: relative;
  transition: 0.2s all ease;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.how_playBtn a img {
  width: 2rem;
}
.how_playBtn a .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FDEABE;
  border-left: 1px solid #FDEABE;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.how_playBtn a .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FDEABE;
  border-right: 1px solid #FDEABE;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.how_playBtn a .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FDEABE;
  border-left: 1px solid #FDEABE;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.how_playBtn a .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FDEABE;
  border-right: 1px solid #FDEABE;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.how_playBtn a:hover span {
  transform: scale(1.3);
}

.reportScore_chat {
  padding-top: 2rem;
}
.reportScore_chat .chat_body {
  max-width: 100% !important;
  display: block !important;
  position: initial !important;
  transform: initial !important;
}
@media (max-width: 767px) {
  .reportScore_chat .chat_body .chat_mainBox {
    padding-left: 1rem !important;
    padding-right: 0rem !important;
  }
}
.reportScore_chat .chatField_wrap .chatField_item {
  max-width: 100% !important;
}
.reportScore_chat .chatField_wrap .chatField_item .chat_input {
  max-width: 100% !important;
}
.reportScore_chat .chatField_wrap .chatField_item .chat_input input {
  height: 8.3rem !important;
}
@media (max-width: 767px) {
  .reportScore_chat .chatField_wrap .chatField_item .chat_input input {
    height: 4.5rem !important;
  }
}
.reportScore_chat .chatField_wrap .chatField_item .send_btn {
  width: 9.2rem;
  height: 8.3rem;
  background: #DA232D !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}
.reportScore_chat .chatField_wrap .chatField_item .send_btn img {
  width: 3rem !important;
}
@media (max-width: 767px) {
  .reportScore_chat .chatField_wrap .chatField_item .send_btn {
    width: 5rem !important;
    height: 4.5rem !important;
  }
  .reportScore_chat .chatField_wrap .chatField_item .send_btn img {
    width: 2rem !important;
  }
}

@media (max-width: 991px) {
  .reportScore_section .main_wrapper {
    padding-bottom: 0rem;
  }
}

.stepModal_body {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.stepModal_body .jointmodal_title img {
  width: 10rem;
  display: block;
  margin: 0 auto;
}
.stepModal_body .jointmodal_title h3 {
  max-width: 37.2rem;
  width: 100%;
  margin: 1.6rem auto 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .stepModal_body .jointmodal_title h3 {
    max-width: 31.2rem;
  }
}
.stepModal_body .stepModal_wraper {
  position: relative;
}
.stepModal_body .stepModal_wraper .stepModal_item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  padding-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .stepModal_body .stepModal_wraper .stepModal_item {
    gap: 1.5rem;
  }
}
.stepModal_body .stepModal_wraper .stepModal_item::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: #453A3A;
  position: absolute;
  right: 2.7rem;
  top: 0;
}
@media (max-width: 767px) {
  .stepModal_body .stepModal_wraper .stepModal_item::after {
    right: 2rem;
  }
}
.stepModal_body .stepModal_wraper .stepModal_item:last-child {
  padding-bottom: 0rem;
}
.stepModal_body .stepModal_wraper .stepModal_item:last-child::after {
  display: none;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_number {
  flex-shrink: 0;
  width: 5.4rem;
  height: 5.4rem;
  background: #080808;
  border: 1px solid #F02731;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0.3rem 0.3rem 1.86rem 0rem rgba(255, 26, 26, 0.4) inset;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .stepModal_body .stepModal_wraper .stepModal_item .stepModal_number {
    width: 4rem;
    height: 4rem;
  }
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_number h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .stepModal_body .stepModal_wraper .stepModal_item .stepModal_number h3 {
    font-size: 1.8rem;
  }
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text {
  width: 100%;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_heading h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  margin-bottom: 0.8rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_heading p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  max-width: 43.7rem;
  width: 100%;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_heading p:last-child {
  margin-bottom: 0rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_heading h5 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgb(255, 255, 255);
  margin-bottom: 0.8rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_innerTextRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.2rem;
  padding-top: 2.4rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_innerTextRow .stepModal_innerText {
  text-align: center;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_innerTextRow .stepModal_innerText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(245, 246, 255, 0.8);
  margin-bottom: 1.2rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_innerTextRow .stepModal_innerText h4 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  margin-bottom: 0.8rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_innerTextRow .stepModal_innerText span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #F02731;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap {
  padding-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.2rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem h3 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox {
  background: #130D0E;
  padding: 0.8rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileImg {
  flex-shrink: 0;
  border: 1px solid #9C1A1B;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileImg img {
  width: 4.6rem;
  height: 4.2rem;
  object-fit: cover;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileText h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileCopy {
  display: block;
  margin-right: auto;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileCopy button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap .stepModal_profileItem .stepModal_profileBox .stepModal_profileCopy button img {
  width: 2rem;
}
@media (max-width: 767px) {
  .stepModal_body .stepModal_wraper .stepModal_item .stepModal_text .stepModal_profileWrap {
    grid-template-columns: 1fr;
  }
}

.scoreResult_formSection {
  max-width: 82rem;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0rem;
}
.scoreResult_formSection .scoreResult_box {
  background: #140E0E;
  border: 1px solid #2B0F0F;
  padding: 2rem 2rem;
}

.scoreResult_gameWraper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.4rem;
}
@media (max-width: 767px) {
  .scoreResult_gameWraper {
    grid-template-columns: 1fr;
  }
}
.scoreResult_gameWraper .scoreResult_gameBox {
  background-color: #000000;
  background-image: url("../img/scoreResult_game-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #191919;
  padding: 2.4rem 2.4rem;
  position: relative;
  text-align: center;
}
.scoreResult_gameWraper .scoreResult_gameBox .border_tl {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #B13238;
  border-left: 1px solid #B13238;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .border_tr {
  width: 1.6rem;
  height: 0.8rem;
  border-top: 1px solid #B13238;
  border-right: 1px solid #B13238;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .border_bl {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #B13238;
  border-left: 1px solid #B13238;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .border_br {
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 1px solid #B13238;
  border-right: 1px solid #B13238;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameImg {
  width: 9.9rem;
  height: 9rem;
  background: #000000;
  border: 1px solid #9B1A1A;
  padding: 0.9rem;
  margin: 0 auto;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameTitle {
  padding: 1.2rem 0rem 3.2rem;
  text-align: center;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameTitle h4 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameTitle p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameTitle p img {
  width: 1.5rem;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameText {
  text-align: center;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn {
  padding-top: 1.8rem;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #121212;
  border: 1px solid #292929;
  position: relative;
  padding-bottom: 0.3rem;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn a .border_tl {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn a .border_tr {
  width: 1rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn a .border_bl {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn a .border_br {
  width: 1rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_gameWraper .scoreResult_gameBox .scoreResult_gameBtn a:hover span {
  transform: scale(1.2);
}

.scoreResult_title {
  margin-bottom: 1.6rem;
}
.scoreResult_title h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
}

.scoreResult_upload {
  background: #080808;
  position: relative;
}
.scoreResult_upload .border_tl {
  width: 2.2rem;
  height: 1rem;
  border-top: 1px solid #AA1E25;
  border-left: 1px solid #AA1E25;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.scoreResult_upload .border_tr {
  width: 2.2rem;
  height: 1rem;
  border-top: 1px solid #AA1E25;
  border-right: 1px solid #AA1E25;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.scoreResult_upload .border_bl {
  width: 2.2rem;
  height: 1rem;
  border-bottom: 1px solid #AA1E25;
  border-left: 1px solid #AA1E25;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.scoreResult_upload .border_br {
  width: 2.2rem;
  height: 1rem;
  border-bottom: 1px solid #AA1E25;
  border-right: 1px solid #AA1E25;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.scoreResult_upload .upload-content {
  background: #080808;
}
.scoreResult_upload .scoreResult_uploadfield {
  width: 100%;
  padding: 1.5rem 0rem;
  text-align: center;
}
.scoreResult_upload .scoreResult_uploadfield img {
  width: 6rem;
}
.scoreResult_upload .scoreResult_uploadfield p {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #F5F6FF;
  margin-top: 3.2rem;
}

.or_item {
  padding: 2.4rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.or_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  color: #FFF;
}
.or_item img {
  width: 11.6rem;
}

.scoreResult_input {
  background: #121212;
  border: 1px solid #302B2B;
  position: relative;
}
.scoreResult_input .border_tl {
  width: 2.2rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_input .border_tr {
  width: 2.2rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_input .border_bl {
  width: 2.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_input .border_br {
  width: 2.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_input input {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 4.6rem;
  display: block;
  text-align: center;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.2rem 2rem;
}
.scoreResult_input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.scoreResult_notes {
  background: #121212;
  border: 1px solid #302B2B;
  position: relative;
}
.scoreResult_notes .border_tl {
  width: 1.4rem;
  height: 1.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_notes .border_tr {
  width: 1.4rem;
  height: 1.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_notes .border_bl {
  width: 1.4rem;
  height: 1.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_notes .border_br {
  width: 1.4rem;
  height: 1.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.scoreResult_notes textarea {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 14.8rem;
  display: block;
  text-align: right;
  background: transparent;
  border: none;
  outline: none;
  padding: 1.2rem 1.2rem;
}
.scoreResult_notes textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.report_button {
  padding-top: 4rem;
}
.report_button a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  width: 100%;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #F46B4F;
  position: relative;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  transition: 0.2s all ease;
}
.report_button a .border_tl {
  width: 1.4rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.report_button a .border_tr {
  width: 1.4rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.report_button a .border_bl {
  width: 1.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.report_button a .border_br {
  width: 1.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.report_button a:hover {
  opacity: 0.9;
}
.report_button a:hover span {
  transform: scale(1.2);
}

.report_scorep4 h4 {
  color: #FFF;
}
.report_scorep4 a {
  background: transparent;
  border: none;
  padding: 0rem;
  box-shadow: none;
  color: #F02731;
  text-decoration: underline;
}

.report_scorep4_info {
  background: #231312;
  border: 1px solid #4F1414;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .report_scorep4_info {
    margin-bottom: 4rem;
  }
}
.report_scorep4_info img {
  width: 2rem;
}
.report_scorep4_info p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}

.report_end {
  text-align: center;
}
.report_end span {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 160%;
  color: #FFF;
  background: #A11B1B;
  display: inline-block;
  padding: 0.1rem 1.4rem;
}

.result_confirmed {
  background: #37AE48;
}
.result_confirmed p {
  color: #FFF;
}

.report_scorep3text .victory {
  font-size: 1.6rem;
  font-weight: 400;
  color: #37AE48;
  margin-bottom: 0.4rem;
  text-align: left;
  display: block;
}

.report_scorep3text .loss {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F02731;
  margin-bottom: 0.4rem;
  display: block;
}

.score-input {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #121212;
  border: 1px solid #292929;
  outline: none;
}
.score-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.score-input:focus {
  border-color: #50171B;
}

.jointournament_modalDialog {
  max-width: 92.7rem;
}
@media (max-width: 991px) {
  .jointournament_modalDialog {
    max-width: 72rem;
  }
}
@media (max-width: 767px) {
  .jointournament_modalDialog {
    max-width: 50rem;
  }
}
.jointournament_modalDialog .removemodal_body .removemodal_title {
  max-width: 65.4rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.jointournament_modalDialog .removemodal_body .removemodal_title h3 {
  font-size: 4.8rem;
}
@media (max-width: 991px) {
  .jointournament_modalDialog .removemodal_body .removemodal_title h3 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .jointournament_modalDialog .removemodal_body .removemodal_title h3 {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 575px) {
  .jointournament_modalDialog .removemodal_body .removemodal_title h3 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
  }
}
.jointournament_modalDialog .removemodal_body .removemodal_title .text_green {
  color: #37AE48 !important;
}
.jointournament_modalDialog .removemodal_body .removemodal_title p {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .jointournament_modalDialog .removemodal_body .removemodal_title p {
    font-size: 1.6rem;
  }
}
.jointournament_modalDialog .jointplan_wraper {
  padding: 4rem 0rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 991px) {
  .jointournament_modalDialog .jointplan_wraper {
    grid-template-columns: 1fr;
  }
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card {
  background-image: url("../img/joinplan-card1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardTitle {
  padding: 2rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #321717;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardTitle h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #F5F5F5;
  text-align: center;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardheading {
  padding: 2.4rem 2.4rem;
  border-bottom: 1px solid #262525;
  text-align: right;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardheading h4 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F02731;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardList {
  padding: 2.4rem 2.4rem;
}
@media (max-width: 575px) {
  .jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardList {
    padding: 2.4rem 1.6rem;
  }
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardList ul li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardList ul li:last-child {
  margin-bottom: 0rem;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardList ul li img {
  width: 2rem;
}
@media (max-width: 575px) {
  .jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardList ul li {
    font-size: 1.5rem;
    gap: 0.6rem;
  }
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn {
  padding: 0rem 2.4rem 2.4rem;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  padding: 1rem 1.2rem;
  display: block;
  text-align: center;
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn a .border_tl {
  width: 1.3rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn a .border_tr {
  width: 1.3rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn a .border_bl {
  width: 1.3rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn a .border_br {
  width: 1.3rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_card .jointplan_cardBtn a:hover span {
  transform: scale(1.25);
}
.jointournament_modalDialog .jointplan_wraper .jointplan_cardv2 {
  background-image: url("../img/joinplan-card2.png");
}
.jointournament_modalDialog .jointplan_wraper .jointplan_cardv2 .jointplan_cardTitle {
  background: #1B0A0A;
}
.jointournament_modalDialog .jointplan_wraper .jointplan_cardv2 .jointplan_cardTitle span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #F02731;
  background: #FFF;
  display: inline-block;
  padding: 0.2rem 1.3rem 0.2rem 0.5rem;
  clip-path: polygon(87% 0, 100% 49%, 88% 100%, 0 100%, 0 0);
  position: absolute;
  left: 0;
  top: 2.5rem;
}
.jointournament_modalDialog .jointbottom_text {
  text-align: center;
}
.jointournament_modalDialog .jointbottom_text p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}

.jointgroup_member {
  margin-top: 4rem;
  background-image: url("../img/group-member.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.jointgroup_member .groupmember_title {
  text-align: center;
  padding: 2rem 2rem;
  border-bottom: 1px solid #321717;
}
.jointgroup_member .groupmember_title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #F5F5F5;
}
.jointgroup_member .groupmember_heading {
  padding: 1.4rem 0rem;
  text-align: center;
  border-bottom: 1px solid #252525;
}
.jointgroup_member .groupmember_heading h4 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F02731;
}
@media (max-width: 767px) {
  .jointgroup_member .groupmember_heading h4 {
    font-size: 2.6rem;
  }
}
.jointgroup_member .groupmember_text {
  padding: 1.4rem 2.4rem;
  border-bottom: 1px solid #252525;
  text-align: right;
}
.jointgroup_member .groupmember_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #FFFFFF;
  max-width: 68rem;
  width: 100%;
}
.jointgroup_member .groupmember_text p span {
  color: #F02731;
}
@media (max-width: 767px) {
  .jointgroup_member .groupmember_text p {
    font-size: 1.6rem;
  }
}
.jointgroup_member .groupmember_item {
  padding: 1.4rem 2.4rem;
  border-bottom: 1px solid #252525;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.jointgroup_member .groupmember_item .groupmember_checkItem label {
  border: 1px solid transparent;
}
.jointgroup_member .groupmember_item .groupmember_checkItem .form-check-input {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  border-width: 0.2rem;
}
.jointgroup_member .groupmember_item .groupmember_checkItem .form-check-input:checked[type=checkbox] {
  border-color: #F02731;
  background-color: transparent;
  background-image: url("../img/check-red.svg");
  background-size: 1.5rem;
}
.jointgroup_member .groupmember_item .groupmember_checkItem .form-check-input:checked[type=checkbox] + label {
  border-color: #70080D;
}
.jointgroup_member .groupmember_item .groupmember_checkItem .groupmember_checkText {
  background: #000000;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.jointgroup_member .groupmember_item .groupmember_checkItem .groupmember_checkText img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
}
.jointgroup_member .groupmember_item .groupmember_checkItem .groupmember_checkText p {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
}
.jointgroup_member .groupmember_info {
  padding: 1.4rem 2.4rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.jointgroup_member .groupmember_info img {
  width: 3rem;
}
.jointgroup_member .groupmember_info p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .jointgroup_member .groupmember_info p {
    font-size: 1.6rem;
  }
}
.jointgroup_member .groupmember_btn {
  padding: 0rem 2.4rem 2.4rem;
}
.jointgroup_member .groupmember_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  display: block;
  text-align: center;
  padding: 1rem 1.2rem;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.jointgroup_member .groupmember_btn a .border_tl {
  width: 2.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointgroup_member .groupmember_btn a .border_tr {
  width: 2.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.jointgroup_member .groupmember_btn a .border_bl {
  width: 2.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.jointgroup_member .groupmember_btn a .border_br {
  width: 2.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}

.test_gameWraper {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 991px) {
  .test_gameWraper {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .test_gameWraper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .test_gameWraper .join_titleText p {
    font-size: 1.6rem;
  }
  .test_gameWraper .join_titleText p span {
    margin: 0 0.8rem;
  }
}
.test_gameWraper .test_gameImg {
  flex-shrink: 0;
}
.test_gameWraper .test_gameImg img {
  width: 16rem;
}
@media (max-width: 991px) {
  .test_gameWraper .test_gameImg img {
    width: 12rem;
  }
}
.test_gameWraper .join_titleText {
  width: 100%;
}
.test_gameWraper .join_titleText .ended {
  background: #A11B1B;
  padding: 0.2rem 0.8rem;
}

.mathes_heading {
  background: #281415;
  padding: 1rem 1rem;
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mathes_heading a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  display: inline-block;
  padding: 0.7rem 10rem;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  transition: 0.2s all ease;
}
@media (max-width: 991px) {
  .mathes_heading a {
    padding: 0.7rem 6rem;
  }
}
@media (max-width: 767px) {
  .mathes_heading a {
    font-size: 1.45rem;
    padding-left: 3.6rem;
    padding-right: 3.6rem;
  }
}
@media (max-width: 575px) {
  .mathes_heading a {
    font-size: 1.4rem;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
.mathes_heading a .border_tl {
  width: 1.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
  opacity: 0;
}
.mathes_heading a .border_tr {
  width: 1.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
  opacity: 0;
}
.mathes_heading a .border_bl {
  width: 1.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
  opacity: 0;
}
.mathes_heading a .border_br {
  width: 1.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
  opacity: 0;
}
.mathes_heading a.active {
  background: #F23D46;
  border-color: #F23D46;
}
.mathes_heading a.active span {
  opacity: 1;
}

.matches_title {
  padding: 3.2rem 0rem 1.2rem;
}
.matches_title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
}

.matches_row {
  margin-top: 2rem;
}
.matches_row h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #F5F6FF;
  margin-bottom: 1.6rem;
}
.matches_row .matches_box {
  background: #121212;
  border: 1px solid #262626;
  padding: 1.2rem 1.2rem 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s all ease;
}
.matches_row .matches_box .matches_details {
  max-width: 25.6rem;
  width: 100%;
  position: relative;
}
.matches_row .matches_box .matches_details::before {
  content: "";
  width: 1px;
  height: 6rem;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease;
}
@media (max-width: 991px) {
  .matches_row .matches_box .matches_details::before {
    left: -0.8rem;
  }
}
.matches_row .matches_box .matches_details span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #E0CDCE;
  background: #A11B1B;
  display: inline-block;
  padding: 0.2rem 0.8rem;
}
.matches_row .matches_box .matches_details .hold {
  color: #FFFFFF;
  background: #2FAA54;
}
.matches_row .matches_box .matches_details .live {
  background: transparent;
  padding: 0;
}
.matches_row .matches_box .matches_details .live img {
  width: 5.4rem;
  height: 2.2rem;
  object-fit: cover;
}
.matches_row .matches_box .matches_details h5 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: initial;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.8rem 0rem 0.4rem;
}
.matches_row .matches_box .matches_details p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}
.matches_row .matches_box .matches_details p span {
  width: 0.4rem;
  height: 0.4rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  border-radius: 50%;
  margin: 0 1rem;
}
.matches_row .matches_box .matches_details p strong {
  font-weight: 500;
}
.matches_row .matches_box .matches_item {
  width: 21.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0E0E0E;
  padding: 0.85rem 1rem;
  margin: 0.2rem 0rem;
}
@media (max-width: 991px) {
  .matches_row .matches_box .matches_item {
    width: 19rem;
  }
}
.matches_row .matches_box .matches_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #E0CDCE;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.matches_row .matches_box .matches_item p img {
  width: 2.2rem;
}
.matches_row .matches_box .matches_arrow {
  max-width: 28rem;
  width: 100%;
  position: relative;
  text-align: left;
}
@media (max-width: 991px) {
  .matches_row .matches_box .matches_arrow {
    max-width: 13rem;
  }
}
@media (max-width: 767px) {
  .matches_row .matches_box .matches_arrow {
    max-width: 10rem;
  }
}
@media (max-width: 575px) {
  .matches_row .matches_box .matches_arrow {
    max-width: 8.6rem;
  }
}
.matches_row .matches_box .matches_arrow img {
  width: 2.4rem;
}
.matches_row .matches_box .matches_arrow::after {
  content: "";
  width: 1px;
  height: 6rem;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease;
}
.matches_row .matches_box:hover {
  background: #1E1212;
  border-color: #3B1315;
}
.matches_row .matches_box:hover .matches_item {
  background: #281415;
}
.matches_row .matches_box:hover .matches_details::before {
  background: #481618;
}
.matches_row .matches_box:hover .matches_arrow::after {
  background: #481618;
}
@media (max-width: 767px) {
  .matches_row .matches_box {
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 1.4rem 1.4rem 1.4rem 1.8rem;
  }
  .matches_row .matches_box .matches_details {
    max-width: 100%;
  }
  .matches_row .matches_box .matches_details::before {
    display: none;
  }
}

.matchBlank_section {
  padding: 10rem 0rem 20rem;
  text-align: center;
}
@media (max-width: 767px) {
  .matchBlank_section {
    padding: 8rem 0rem 15rem;
  }
}
.matchBlank_section img {
  width: 10rem;
}
.matchBlank_section h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  margin: 2rem 0rem 0.8rem;
}
.matchBlank_section p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .matchBlank_section p {
    font-size: 1.8rem;
  }
}

.lineup_timer .line_textred {
  color: #F02731;
}
.lineup_timer p span {
  color: #37AE48;
}
.lineup_timer .how_playBtn {
  margin-top: 3.2rem;
}

.lineup_heading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.lineup_heading img {
  width: 5.8rem;
  flex-shrink: 0;
}
.lineup_heading .lineup_heading_text p {
  font-size: 2rem;
  font-weight: 400;
  color: #37AE48;
  margin-bottom: 0.2rem;
}
.lineup_heading .lineup_heading_text p.red {
  color: #F02731;
}
.lineup_heading .lineup_heading_text h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
}

.lineup_gameBar {
  display: flex;
  align-items: center;
  padding-bottom: 10rem;
}
@media (max-width: 991px) {
  .lineup_gameBar {
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .lineup_gameBar {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 6rem;
    padding-top: 3rem;
  }
}
.lineup_gameBar .lineup_gameItem {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid transparent;
  padding: 0rem 1.5rem 1.5rem;
  transition: 0.2s all ease;
}
.lineup_gameBar .lineup_gameItem:hover {
  background: linear-gradient(to bottom, rgba(240, 39, 49, 0) 0%, rgba(240, 39, 49, 0.3) 100%);
  border-color: #C12028;
}
.lineup_gameBar .lineup_gameItem p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: initial;
  color: #FFFFFF;
}
.lineup_gameBar .lineup_gameItem p span {
  color: #37AE48;
}
@media (max-width: 991px) {
  .lineup_gameBar .lineup_gameItem p {
    font-size: 1.8rem;
  }
}
.lineup_gameBar .lineup_gameItem .abrasive {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #37AE48;
  display: inline-block;
  padding: 0.4rem 1.2rem;
}
@media (max-width: 991px) {
  .lineup_gameBar .lineup_gameItem .abrasive {
    font-size: 1.4rem;
  }
}

.teamDetails_section {
  padding: 3.2rem 0rem 10rem;
}
@media (max-width: 991px) {
  .teamDetails_section {
    padding: 2.4rem 0rem;
  }
}
.teamDetails_section .serachBar_wraper {
  width: 33rem;
}
@media (max-width: 991px) {
  .teamDetails_section .serachBar_wraper {
    width: 28rem;
  }
}

.teamD_titles {
  margin-top: 3.2rem;
}
.teamD_titles .title_xl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #FFFFFF;
  padding-right: 2rem;
}
.teamD_titles .title_xl::before {
  height: 3.1rem;
}
.teamD_titles .subtitle {
  padding-top: 0.8rem;
}

.team_list_wraper {
  padding: 1.6rem 0rem 0.8rem;
}
.team_list_wraper .team_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #3B1315;
  padding: 1.6rem 1.2rem;
}
.team_list_wraper .team_list .team_list_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.team_list_wraper .team_list .team_list_item .teaml_game {
  width: 5.5rem;
  border: 1px solid #9B1A1B;
  flex-shrink: 0;
}
.team_list_wraper .team_list .team_list_item .teaml_game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team_list_wraper .team_list .team_list_item .team_gameText h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}
.team_list_wraper .team_list .team_list_item .team_gameText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
}
.team_list_wraper .team_list .team_list_dropdown img {
  width: 2.4rem;
}
.team_list_wraper .team_list .team_list_dropdown .maneger_dropdown {
  width: 21rem;
}
.team_list_wraper .team_list .team_list_dropdown .maneger_dropdown img {
  width: 2rem;
}

.joinTournament_title .results_live a {
  padding: 0;
  background: transparent;
}
.joinTournament_title .results_live a img {
  width: 5rem;
}

.resultsdt_table {
  padding: 2rem 0rem;
}
.resultsdt_table .resultsdt_thead {
  padding: 2rem 1.4rem 1.2rem;
  border-bottom: 1px solid #3B1315;
  display: flex;
  align-items: center;
}
.resultsdt_table .resultsdt_thead h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  color: #FFFFFF;
}
.resultsdt_table .resultsdt_thead h4:first-child {
  width: 10.8rem;
}
@media (max-width: 767px) {
  .resultsdt_table .resultsdt_thead h4:first-child {
    width: 7.5rem;
  }
}
@media (max-width: 575px) {
  .resultsdt_table .resultsdt_thead h4:first-child {
    width: 6.5rem;
  }
}
.resultsdt_table .resultsdt_thead h4:last-child {
  margin-right: auto;
}
.resultsdt_table .resultsdt_tbody {
  padding: 2rem 1.2rem 1.2rem;
  border-bottom: 1px solid #3B1315;
  display: flex;
  align-items: center;
}
.resultsdt_table .resultsdt_tbody .resultsdt_data1 {
  width: 10.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .resultsdt_table .resultsdt_tbody .resultsdt_data1 {
    width: 7.5rem;
  }
}
@media (max-width: 575px) {
  .resultsdt_table .resultsdt_tbody .resultsdt_data1 {
    width: 6.5rem;
  }
}
.resultsdt_table .resultsdt_tbody .resultsdt_data1 img {
  width: 2rem;
}
.resultsdt_table .resultsdt_tbody .resultsdt_data1 h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}
.resultsdt_table .resultsdt_tbody .resultsdt_data_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.resultsdt_table .resultsdt_tbody .resultsdt_data_item img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: cover;
  border-radius: 50%;
}
.resultsdt_table .resultsdt_tbody .resultsdt_data_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}
.resultsdt_table .resultsdt_tbody .resultsdt_data_text {
  margin-right: auto;
}
.resultsdt_table .resultsdt_tbody .resultsdt_data_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resultsdt_table .resultsdt_tbody .resultsdt_data_text p img {
  width: 1.6rem;
}

.brackets_grid {
  padding: 4rem 0rem 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
}
@media (max-width: 991px) {
  .brackets_grid {
    padding: 3rem 0rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .brackets_grid {
    padding: 2.5rem 0rem;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.brackets_grid .brackets_box {
  background: #1E1212;
  padding: 2rem 1.5rem;
  text-align: center;
}
.brackets_grid .brackets_box h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  margin-bottom: 0.8rem;
}
.brackets_grid .brackets_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #E0CDCE;
}

.brackets_roadmap {
  display: flex;
  align-items: center;
  gap: 10rem;
  padding-bottom: 4.2rem;
}
@media (max-width: 991px) {
  .brackets_roadmap {
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #A01A20 #1B0D0D;
  }
  .brackets_roadmap::-webkit-scrollbar {
    width: 0.8rem;
    border-radius: 2rem;
  }
  .brackets_roadmap::-webkit-scrollbar-track {
    background: #1B0D0D;
    border-radius: 2rem;
  }
  .brackets_roadmap::-webkit-scrollbar-thumb {
    background: #A01A20;
    border-radius: 2rem;
  }
}

.brackets_roadmap_heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
  margin-top: 2.4rem;
}
.brackets_roadmap_heading span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #E0CDCE;
  background: #281415;
  display: inline-block;
  padding: 0.2rem 1.1rem;
}
.brackets_roadmap_heading span.ended {
  background: #A11B1B;
  padding: 0.2rem 0.75rem;
}
.brackets_roadmap_heading span.waiting_green {
  background: #37AE48;
}
.brackets_roadmap_heading img {
  width: 4.5rem;
}
.brackets_roadmap_heading p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #E0CDCE;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brackets_roadmap_heading p img {
  width: 1.6rem;
}

.brackets_roadmap_box {
  width: 21.6rem;
  background: #281415;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.8rem;
  margin-bottom: 0.2rem;
}
.brackets_roadmap_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #E0CDCE;
}
.brackets_roadmap_box .brackets_roadmap_boxItem {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brackets_roadmap_box .brackets_roadmap_boxItem img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
}

.brackets_roadmap_column2 .brackets_roadmap_heading {
  margin-top: 16rem;
}

.brackets_roadmap_column3 .brackets_roadmap_heading {
  margin-top: 43rem;
}

.brackets_roadmap_item {
  position: relative;
}
.brackets_roadmap_item::after {
  content: "";
  width: 5rem;
  height: 56%;
  display: block;
  background: transparent;
  border: 0.2rem solid #3E3E3E;
  border-radius: 2rem 0rem 0rem 2rem;
  border-right: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
}
.brackets_roadmap_item::before {
  content: "";
  width: 5rem;
  height: 0.2rem;
  display: block;
  background: #3E3E3E;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10rem;
}

.brackets_roadmap_column2 .brackets_roadmap_item::after {
  height: 70%;
}

.brackets_roadmap_column3 .brackets_roadmap_item::after {
  height: 82%;
}

.brackets_roadmap_column4 .brackets_roadmap_item::before, .brackets_roadmap_column4 .brackets_roadmap_item::after {
  display: none;
}

.brackets_roadmap2 .brackets_roadmap_heading span {
  font-weight: 700;
}
.brackets_roadmap2 .brackets_roadmap_box p {
  font-weight: 700;
}

.brackets_pagination {
  padding: 3.2rem 0;
  border-top: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brackets_pagination .screen_btn a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: initial;
  color: #E0CDCE;
  background: #281415;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
}
.brackets_pagination .screen_btn a img {
  width: 2.4rem;
}

.client_section {
  padding: 7.5rem 0rem 1.4rem;
}
@media (max-width: 991px) {
  .client_section {
    padding: 4rem 0rem 0rem;
  }
}

.client_box {
  max-width: 31.2rem;
  width: 100%;
  margin: 0 auto;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 3.8rem 2.4rem;
  position: relative;
}
.client_box .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid rgba(240, 39, 49, 0.4);
  border-left: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid rgba(240, 39, 49, 0.4);
  border-right: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.4);
  border-left: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.4);
  border-right: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .label {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #F02731;
  background: rgba(161, 27, 27, 0.1);
  border: 1px solid rgba(161, 27, 27, 0.5);
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 5rem;
  position: absolute;
  top: 2rem;
  right: 1.2rem;
}
.client_box .client_img {
  width: 10.5rem;
  margin: 0 auto;
  position: relative;
}
.client_box .client_img img {
  width: 10.5rem;
}
.client_box .client_img a {
  position: absolute;
  bottom: -0.1rem;
  right: -0.1rem;
}
.client_box .client_img a img {
  width: 2.4rem;
}
.client_box .client_title {
  padding: 1.6rem 0rem 0.8rem;
  text-align: center;
}
.client_box .client_title h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
}
.client_box .offline_btn {
  text-align: center;
}
.client_box .offline_btn span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(218, 17, 17, 0.1);
  border: 1px solid rgba(218, 17, 17, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  border-radius: 5rem;
  position: relative;
}
.client_box .offline_btn span::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  background: #DA1111;
  border: 1px solid rgba(218, 17, 17, 0.3);
  border-radius: 50%;
}
.client_box .social_icon {
  padding: 1.6rem 0rem 2.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.client_box .social_icon img {
  width: 2.4rem;
  transition: 0.2s all ease;
}
.client_box .social_icon img:hover {
  opacity: 0.85;
}
.client_box .client_boxBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.client_box .client_boxBtn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 11.1rem;
  display: inline-block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  position: relative;
  transition: 0.2s all ease;
}
.client_box .client_boxBtn a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .client_boxBtn a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .client_boxBtn a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .client_boxBtn a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.client_box .client_boxBtn a:hover, .client_box .client_boxBtn a.active {
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
}
.client_box .client_boxBtn .warning_btn {
  border: 0.6px solid rgba(240, 41, 50, 0.1);
  background: rgba(240, 41, 50, 0.1);
  min-width: 3.6rem;
  padding-left: 0rem;
  padding-right: 0rem;
}
.client_box .client_boxBtn .warning_btn img {
  width: 2rem;
}
.client_box .client_boxBtn .warning_btn span {
  border-color: #F02932;
}

.clientbox_icon {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}
.clientbox_icon img {
  width: 5.5rem;
}

.statistics_box .coin {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.statistics_box .coin img {
  width: 1.8rem;
}

.client_analytics {
  position: relative;
}
.client_analytics .store_unlock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.4rem);
}
.client_analytics .store_unlock p {
  font-size: 2.4rem;
}

.client_box_nv {
  background-image: url("../img/clientbox_bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
}

.warning_modal {
  max-width: 65rem;
}
.warning_modal .removemodal_body .removemodal_title h3 {
  margin-bottom: 2rem;
}
.warning_modal .removemodal_body .removemodal_title p {
  max-width: 35.4rem;
}
.warning_modal .removemodal_body .removemodal_button {
  justify-content: space-between;
}
.warning_modal .removemodal_body .removemodal_button a {
  width: 48.5%;
}
.warning_modal .removemodal_body .warning_modalWraper {
  padding-top: 3.2rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem {
  margin-bottom: 2rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  opacity: 0.8;
  text-align: right;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box {
  background: #140E0E;
  padding: 1rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .player_img {
  flex-shrink: 0;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .player_img img {
  width: 5rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .player_text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .player_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
  color: #F9F9FF;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .player_text img {
  width: 2.6rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #B11D1D;
  border-left: 1px solid #B11D1D;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #B11D1D;
  border-right: 1px solid #B11D1D;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #B11D1D;
  border-left: 1px solid #B11D1D;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .player_box .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #B11D1D;
  border-right: 1px solid #B11D1D;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .choose_box {
  background: #140E0E;
  border: 1px solid #372323;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .choose_box .choose_item {
  border-bottom: 1px solid #372323;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .choose_box .choose_item:last-child {
  border-bottom: none;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .choose_box .choose_item .custom_checkBox {
  padding: 1rem 1.2rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .choose_box .choose_item .custom_checkBox .form-check-input:checked[type=checkbox] {
  background-color: #EF2630;
  border-color: #EF2630;
  background-image: url("../img/check-black.svg");
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .details_box {
  background: #140E0E;
  border: 1px solid #1C1C1C;
  padding: 1.2rem 1.2rem;
  position: relative;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .details_box textarea {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.5);
  background: #140E0E;
  border: none;
  outline: none;
  resize: none;
  width: 100%;
  display: block;
  height: 12rem;
  text-align: right;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .details_box .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #B11D1D;
  border-left: 1px solid #B11D1D;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .details_box .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #B11D1D;
  border-right: 1px solid #B11D1D;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .details_box .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #B11D1D;
  border-left: 1px solid #B11D1D;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .details_box .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #B11D1D;
  border-right: 1px solid #B11D1D;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box {
  background: #140E0E;
  border: 1px solid #1C1C1C;
  position: relative;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .upload-content {
  padding: 1.2rem 1.2rem;
  cursor: pointer;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .upload-content .uploda_text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .upload-content .uploda_text img {
  width: 1.8rem;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .upload-content .uploda_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #888286;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .border_tl {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #B11D1D;
  border-left: 1px solid #B11D1D;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .border_tr {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #B11D1D;
  border-right: 1px solid #B11D1D;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .border_bl {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #B11D1D;
  border-left: 1px solid #B11D1D;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.warning_modal .removemodal_body .warning_modalWraper .warning_modalItem .upload_box .border_br {
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #B11D1D;
  border-right: 1px solid #B11D1D;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}

.edit_cover {
  padding: 12rem 0rem 4.8rem;
  text-align: left;
}
@media (max-width: 991px) {
  .edit_cover {
    padding: 10rem 0rem 3.2rem;
  }
}
.edit_cover a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #212121;
  padding: 1.2rem 2rem;
  position: relative;
  transition: 0.2s all ease;
}
.edit_cover a img {
  width: 2rem;
}
.edit_cover a .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.edit_cover a .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.edit_cover a .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.edit_cover a .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.edit_cover a:hover span {
  transform: scale(1.25);
}

.admin_analytics {
  padding-top: 3rem;
}
.admin_analytics .analytics_title h3 {
  font-size: 2rem !important;
}

.admin_premiumBox {
  right: 4.5rem;
  display: none;
}

.admin_bar {
  max-width: 31rem;
  width: 100%;
  display: block;
  flex-shrink: 0;
  padding-top: 7rem;
  position: sticky;
  top: 5rem;
}
@media (max-width: 991px) {
  .admin_bar {
    background: #080808;
    max-width: 32rem;
    width: 100%;
    height: 100%;
    padding-top: 0rem;
    padding-bottom: 5rem;
    padding-left: 1rem;
    position: fixed;
    top: 9.5rem;
    left: -110%;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    transition: 0.3s all ease;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #F02731 #1D1D1D;
  }
  .admin_bar::-webkit-scrollbar {
    width: 0.8rem;
    border-radius: 2rem;
  }
  .admin_bar::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 2rem;
  }
  .admin_bar::-webkit-scrollbar-thumb {
    background: #F02731;
    border-radius: 2rem;
  }
  .admin_bar.show {
    visibility: visible;
    opacity: 1;
    left: 0.5rem;
  }
}

.admin_contentLeft {
  max-width: 99rem;
  width: 100%;
}
@media (max-width: 991px) {
  .admin_contentLeft {
    max-width: 100%;
  }
}

.admin_linksBox {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem 1.8rem;
  position: relative;
}
.admin_linksBox .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid rgba(240, 39, 49, 0.4);
  border-left: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.admin_linksBox .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid rgba(240, 39, 49, 0.4);
  border-right: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.admin_linksBox .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.4);
  border-left: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.admin_linksBox .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.4);
  border-right: 1px solid rgba(240, 39, 49, 0.4);
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.admin_linksBox ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.9rem 1rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.2);
  transition: 0.2s all ease;
}
.admin_linksBox ul li a img {
  width: 2.4rem;
}
.admin_linksBox ul li a .ban_icon {
  width: 2.1rem;
}
.admin_linksBox ul li a:hover, .admin_linksBox ul li a.active {
  background: linear-gradient(to bottom, rgba(255, 26, 26, 0) 0%, rgba(255, 26, 26, 0.3) 100%);
  border-color: rgba(240, 39, 49, 0.4);
}
.admin_linksBox ul li:last-child a {
  border-bottom: none;
}

.admin_logout {
  padding-top: 2.4rem;
  padding-bottom: 10rem;
}
.admin_logout a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.6rem 2rem;
  position: relative;
  transition: 0.2s all ease;
}
.admin_logout a img {
  width: 2rem;
  transition: 0.2s all ease;
}
.admin_logout a .border_tl {
  width: 2.4rem;
  height: 1rem;
  border-top: 1px solid rgba(240, 39, 49, 0.7);
  border-left: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.admin_logout a .border_tr {
  width: 2.4rem;
  height: 1rem;
  border-top: 1px solid rgba(240, 39, 49, 0.7);
  border-right: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.admin_logout a .border_bl {
  width: 2.4rem;
  height: 1rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.7);
  border-left: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.admin_logout a .border_br {
  width: 2.4rem;
  height: 1rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.7);
  border-right: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.admin_logout a:hover span {
  border-color: #F02731;
}
.admin_logout a:hover img {
  transform: translateX(-0.5rem);
}

.logout_modalText p {
  max-width: 27.2rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.profile_toggle {
  margin-left: 1.6rem;
}
.profile_toggle button {
  width: 4rem;
  height: 3.6rem;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.profile_toggle button img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
}
.profile_toggle .border_tl {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #8C8681;
  border-left: 1px solid #8C8681;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profile_toggle .border_tr {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #8C8681;
  border-right: 1px solid #8C8681;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profile_toggle .border_bl {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #8C8681;
  border-left: 1px solid #8C8681;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profile_toggle .border_br {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #8C8681;
  border-right: 1px solid #8C8681;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profile_toggle:hover span {
  border-color: #FFF;
}

.profile_closeBtn {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
}
.profile_closeBtn img {
  width: 2.6rem;
}

/* Backdrop */
.admin_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9;
}
.admin_backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 992px) and (max-width: 1700px) {
  .admin_profile_fixed {
    display: none !important;
  }
}
.transactions_section {
  padding: 5rem 0rem 10rem;
}
@media (max-width: 991px) {
  .transactions_section {
    padding: 2.4rem 0rem;
  }
}

.coins_depositBox {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2rem;
}
@media sm {
  .coins_depositBox {
    padding: 2rem 1.5rem;
  }
}
.coins_depositBox h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 2.4rem;
}
@media (max-width: 991px) {
  .coins_depositBox h3 {
    font-size: 2.4rem;
  }
}

.coins_depositWrap {
  background: #140E0E;
  border: 1px solid rgba(240, 39, 49, 0.1);
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .coins_depositWrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.6rem;
  }
}
.coins_depositWrap .coins_depositText p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.coins_depositWrap .coins_depositText p img {
  width: 2.4rem;
}
@media (max-width: 991px) {
  .coins_depositWrap .coins_depositText p {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .coins_depositWrap .coins_depositText p img {
    width: 2rem;
  }
}
.coins_depositWrap .coins_depositText h4 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .coins_depositWrap .coins_depositText h4 {
    font-size: 3rem;
  }
}
.coins_depositWrap .coins_depositButton {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.coins_depositWrap .coins_depositButton a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 28rem;
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  position: relative;
  transition: 0.2s all ease;
}
.coins_depositWrap .coins_depositButton a .border_tl {
  width: 1.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.coins_depositWrap .coins_depositButton a .border_tr {
  width: 1.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.coins_depositWrap .coins_depositButton a .border_bl {
  width: 1.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.coins_depositWrap .coins_depositButton a .border_br {
  width: 1.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.coins_depositWrap .coins_depositButton a:hover, .coins_depositWrap .coins_depositButton a.active {
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.coins_depositWrap .coins_depositButton a:hover span, .coins_depositWrap .coins_depositButton a.active span {
  transform: scale(1.25);
}
@media (max-width: 991px) {
  .coins_depositWrap .coins_depositButton a {
    width: 21rem;
  }
}
@media (max-width: 767px) {
  .coins_depositWrap .coins_depositButton {
    width: 100%;
    flex-direction: row;
    gap: 1.5rem;
    padding-top: 2rem;
  }
  .coins_depositWrap .coins_depositButton a {
    width: 48%;
    font-size: 1.5rem;
  }
}
.coins_depositWrap .premium_btn a {
  width: 18rem;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%) !important;
  box-shadow: 0 0.2rem 1.77rem 0 rgba(249, 204, 97, 0.54) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.coins_depositWrap .premium_btn a img {
  width: 1.8rem;
}

.transaction_history {
  padding-top: 3.6rem;
}
.transaction_history .history_title {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
.transaction_history .history_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin: 0;
}
.transaction_history .history_title img {
  width: 4rem;
}
@media (max-width: 991px) {
  .transaction_history .history_title {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .transaction_history .history_title h3 {
    font-size: 2.4rem;
  }
  .transaction_history .history_title img {
    width: 3rem;
  }
}
.transaction_history .history_box {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .transaction_history .history_box {
    padding: 1.6rem 1.2rem;
  }
}
.transaction_history .history_box:last-child {
  margin-bottom: 0rem;
}
.transaction_history .history_box .history_item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.transaction_history .history_box .history_item .history_icon img {
  width: 3.1rem;
}
.transaction_history .history_box .history_item .history_text h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 110%;
  color: #FFF;
  margin: 0;
}
.transaction_history .history_box .history_item .history_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .transaction_history .history_box .history_item {
    gap: 1rem;
  }
  .transaction_history .history_box .history_item .history_icon img {
    width: 2.6rem;
  }
  .transaction_history .history_box .history_item .history_text h4 {
    font-size: 2rem;
  }
  .transaction_history .history_box .history_item .history_text p {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .transaction_history .history_box .history_item .history_text h4 {
    font-size: 1.8rem;
  }
}
.transaction_history .history_box .history_coin {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.transaction_history .history_box .history_coin img {
  width: 2.4rem;
}
.transaction_history .history_box .history_coin p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  direction: ltr;
}
@media (max-width: 991px) {
  .transaction_history .history_box .history_coin img {
    width: 2rem;
  }
  .transaction_history .history_box .history_coin p {
    font-size: 1.6rem;
  }
}

.history_titleWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.history_titleWrap .history_select {
  width: 21.2rem;
  flex-shrink: 0;
}
.history_titleWrap .ques_sign img {
  width: 3rem;
}

@media (max-width: 575px) {
  .history_titleWrap_v2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.coinBolt_modalBody .coinBolt_icon {
  margin-bottom: 2.4rem;
}
.coinBolt_modalBody .coinBolt_icon img {
  width: 6rem;
}
.coinBolt_modalBody .removemodal_title p {
  font-size: 2rem !important;
  max-width: 39.7rem;
}

.edit_profile_section {
  padding: 3.2rem 0rem 10rem;
}
@media (max-width: 991px) {
  .edit_profile_section {
    padding: 2.4rem 0rem;
  }
}

.profile_detailsBox {
  background: #080808;
  padding: 2rem 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .profile_detailsBox {
    margin-bottom: 2.5rem;
    padding: 2rem 1.5rem;
  }
}
.profile_detailsBox .profile_title {
  margin-bottom: 2.4rem;
}
.profile_detailsBox .profile_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
}
@media (max-width: 767px) {
  .profile_detailsBox .profile_title h3 {
    font-size: 2.4rem;
  }
}
.profile_detailsBox .row {
  --bs-gutter-x: 1.4rem;
  --bs-gutter-y: 1.6rem;
}
.profile_detailsBox .textarea_wrap span {
  width: 1.5rem !important;
  height: 0.6rem !important;
}
.profile_detailsBox .textarea_wrap textarea {
  height: 8rem !important;
}
.profile_detailsBox .password-wrapper .togglePassword {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 2rem !important;
  height: initial !important;
}
.profile_detailsBox .password-wrapper .togglePassword img {
  width: 2rem;
}
.profile_detailsBox .input_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F02731;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .profile_detailsBox .input_item p {
    font-size: 1.2rem;
  }
}
.profile_detailsBox .input_item .custom_select .border_tl,
.profile_detailsBox .input_item .custom_select .border_tr,
.profile_detailsBox .input_item .custom_select .border_bl,
.profile_detailsBox .input_item .custom_select .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-color: #a11b1b;
}
.profile_detailsBox .input_item .select_dropdown {
  max-height: 24rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #F02731 #1D1D1D;
}
.profile_detailsBox .input_item .select_dropdown::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.profile_detailsBox .input_item .select_dropdown::-webkit-scrollbar-track {
  background: #1D1D1D;
  border-radius: 2rem;
}
.profile_detailsBox .input_item .select_dropdown::-webkit-scrollbar-thumb {
  background: #F02731;
  border-radius: 2rem;
}

.profile_button {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.profile_button button {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  min-width: 11.1rem;
  display: inline-block;
  padding: 0.8rem 2.4rem;
  position: relative;
  transition: 0.2s all ease;
}
.profile_button button .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profile_button button .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profile_button button .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profile_button button .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profile_button button:hover, .profile_button button.active {
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.profile_button button:hover span {
  transform: scale(1.25);
}

.saveModal_dialog {
  max-width: 40.6rem;
}

.account_settings {
  padding: 3.2rem 0rem 10rem;
}
@media (max-width: 991px) {
  .account_settings {
    padding: 2.4rem 0rem;
  }
}
.account_settings .settings_title {
  margin-bottom: 3.2rem;
}
.account_settings .settings_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 0.8rem;
}
.account_settings .settings_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .account_settings .settings_title {
    margin-bottom: 2.5rem;
  }
  .account_settings .settings_title h3 {
    font-size: 2.4rem;
  }
  .account_settings .settings_title p {
    font-size: 1.5rem;
  }
}
.account_settings .switch_box {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 1.2rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account_settings .switch_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
}
.account_settings .switch_box .switch {
  position: relative;
  width: 4.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.account_settings .switch_box .switch input {
  display: none;
}
.account_settings .switch_box .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #280F0F;
  border-radius: 5rem;
  border: 1px solid #811010;
  transition: 0.25s;
}
.account_settings .switch_box .switch .slider::before {
  content: "";
  position: absolute;
  height: 2.1rem;
  width: 2.1rem;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  background: #DA232D;
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0rem 0.3rem 1rem 0rem rgba(249, 204, 97, 0.45) inset;
}
.account_settings .switch_box .switch {
  /* ON state */
}
.account_settings .switch_box .switch input:checked + .slider {
  background: #8B1010;
  border-color: #B21010;
}
.account_settings .switch_box .switch {
  /* Move knob */
}
.account_settings .switch_box .switch input:checked + .slider::before {
  transform: translate(1.94rem, -50%);
}
@media (max-width: 991px) {
  .account_settings .switch_box .switch_text {
    width: 80%;
  }
  .account_settings .switch_box .switch_text p {
    font-size: 1.5rem;
  }
}
.account_settings .settings_badge {
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .account_settings .settings_badge {
    margin-bottom: 2.5rem;
  }
}
.account_settings .settings_badge p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
}
@media (max-width: 991px) {
  .account_settings .settings_badge p {
    font-size: 1.5rem;
  }
}
.account_settings .settings_badge img {
  width: 2.4rem;
}

.delete_box {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2rem;
  margin-top: 4rem;
}
.delete_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
  margin-bottom: 1.6rem;
}
@media (max-width: 991px) {
  .delete_box p {
    font-size: 1.5rem;
  }
}
.delete_box label {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.4rem;
}
.delete_box .input_item {
  margin-bottom: 2.1rem;
}
@media (max-width: 767px) {
  .delete_box {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
}

.media_box {
  background: #080808;
  padding: 2rem 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .media_box {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }
}
.media_box .media_title {
  margin-bottom: 2.4rem;
}
.media_box .media_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
}
@media (max-width: 991px) {
  .media_box .media_title h3 {
    font-size: 2.4rem;
  }
}
.media_box .media_wraper {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.media_box .media_wraper .media_item {
  width: 6.2rem;
  flex-shrink: 0;
}
.media_box .media_wraper .media_item a {
  width: 6.2rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: 0.2s all ease;
}
.media_box .media_wraper .media_item a img {
  width: 4rem;
}
.media_box .media_wraper .media_item a .border_tl {
  width: 1.5rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraper .media_item a .border_tr {
  width: 1.5rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraper .media_item a .border_bl {
  width: 1.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraper .media_item a .border_br {
  width: 1.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraper .media_item a:hover, .media_box .media_wraper .media_item a.active {
  background: rgba(55, 174, 72, 0.1);
  border-color: rgba(55, 174, 72, 0.2);
}
.media_box .media_wraper .media_item a:hover span, .media_box .media_wraper .media_item a.active span {
  border-color: #37AE48;
}
.media_box .media_wraperv2 {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.media_box .media_wraperv2 .media_itemv2 {
  width: 11.4rem;
  flex-shrink: 0;
}
.media_box .media_wraperv2 .media_itemv2 button {
  width: 11.4rem;
  height: 12.2rem;
  display: block;
  text-align: center;
  background: #251111;
  border: 1px solid rgba(240, 39, 49, 0.2);
  position: relative;
  transition: 0.2s all ease;
}
.media_box .media_wraperv2 .media_itemv2 button img {
  width: 5.2rem;
}
.media_box .media_wraperv2 .media_itemv2 button .mediav2_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 1.2rem 0.9rem;
}
.media_box .media_wraperv2 .media_itemv2 button .mediav2_inner img {
  width: 3rem;
}
.media_box .media_wraperv2 .media_itemv2 button .border_tl {
  width: 1.5rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraperv2 .media_itemv2 button .border_tr {
  width: 1.5rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraperv2 .media_itemv2 button .border_bl {
  width: 1.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.media_box .media_wraperv2 .media_itemv2 button .border_br {
  width: 1.5rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}

.mediaRemove_title .alert_icon {
  width: 6rem;
  display: block;
  margin: 0 auto 2rem;
}
.mediaRemove_title h3 {
  margin-bottom: 2rem !important;
}

.details_mdltitle h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #F5F5F5;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.details_mdlwrap {
  padding-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media (max-width: 767px) {
  .details_mdlwrap {
    flex-direction: column;
  }
}
.details_mdlwrap .details_mdlprofile {
  width: 13.2rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .details_mdlwrap .details_mdlprofile {
    margin: 0 auto;
  }
}
.details_mdlwrap .details_mdlprofile img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
}
.details_mdlwrap .details_mdlprofile h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  margin: 1.6rem 0rem 0.8rem;
  text-align: center;
}
.details_mdlwrap .details_mdlprofile a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.details_mdlwrap .details_mdlprofile a img {
  width: 2rem;
  height: auto;
}
.details_mdlwrap .details_mdlitem {
  width: 100%;
}
.details_mdlwrap .details_mdlitem h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 0.8rem;
}
.details_mdlwrap .details_mdlitem p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.details_mdlwrap .details_mdlitem .details_mdltext {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.details_mdlwrap .details_mdlitem .details_mdltextv2 {
  padding-top: 1.6rem;
}
.details_mdlwrap .details_mdlitem .details_mdltextv2 h4 {
  margin-bottom: 1.2rem;
}
.details_mdlwrap .details_mdlitem .details_mdltextv2 .links_copy {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
}
.details_mdlwrap .details_mdlitem .details_mdltextv2 .links_copy a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.details_mdlwrap .details_mdlitem .details_mdltextv2 .links_copy button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.profileTeam_section {
  padding: 3.2rem 0rem 10rem;
}
@media (max-width: 991px) {
  .profileTeam_section {
    padding: 2.4rem 0rem;
  }
}
.profileTeam_section .profile_groups {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profileTeam_section .profile_groups h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin: 0;
}
@media (max-width: 991px) {
  .profileTeam_section .profile_groups h3 {
    font-size: 2.4rem;
  }
}
.profileTeam_section .profile_groups .join_btn a {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 15.4rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  background: #F02731;
  border: 1px solid #F46B4F;
  box-shadow: 0rem 0.2rem 1.7rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.profileTeam_section .profile_groups .join_btn a img {
  width: 2rem;
}
.profileTeam_section .profile_groups .join_btn a .border_tl {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profileTeam_section .profile_groups .join_btn a .border_tr {
  width: 0.8rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.profileTeam_section .profile_groups .join_btn a .border_bl {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profileTeam_section .profile_groups .join_btn a .border_br {
  width: 0.8rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.profileTeam_section .profile_groups .join_btn a:hover span {
  transform: scale(1.25);
}

.profile_groupsBox {
  background: #080808;
  padding: 2rem 2rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .profile_groupsBox {
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
  }
}
.profile_groupsBox .groupBox_ptitle {
  margin-bottom: 2.4rem;
}
.profile_groupsBox .groupBox_ptitle h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
}
@media (max-width: 991px) {
  .profile_groupsBox .groupBox_ptitle h3 {
    font-size: 2.4rem;
  }
}
.profile_groupsBox .groupBox_ptext p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.profile_groupsBox .groupBox_ptext p img {
  width: 2.4rem;
}
.profile_groupsBox .groupBox_profile_innerBox {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 1.2rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile_groupsBox .groupBox_profile_innerBox:last-child {
  margin-bottom: 0rem;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerItem {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerItem .groupBox_profile_innerimg {
  width: 5.2rem;
  border: 1px solid #8F1819;
  flex-shrink: 0;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerItem .groupBox_profile_innerimg img {
  width: 100%;
  height: 4.8rem;
  object-fit: cover;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerItem .groupBox_profile_innerText h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerItem .groupBox_profile_innerText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerItem .groupBox_profile_innerText p img {
  width: 1.6rem;
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerLeft {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerLeft {
    gap: 2rem;
  }
}
.profile_groupsBox .groupBox_profile_innerBox .groupBox_profile_innerLeft .status {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
  background: #290E0E;
  border: 1px solid #820F0F;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 5rem;
}

.manage_modal {
  max-width: 65rem;
}
.manage_modal .removemodal_title h3 {
  font-size: 4.8rem !important;
}
@media (max-width: 767px) {
  .manage_modal .removemodal_title h3 {
    font-size: 3.2rem !important;
  }
}
.manage_modal .removemodal_button {
  padding-top: 2.4rem !important;
}
.manage_modal .removemodal_button a {
  width: 48% !important;
}

.manage_tablinks ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.manage_tablinks ul li {
  width: 50%;
}
.manage_tablinks ul .nav-link {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  color: #FFF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  border-bottom: 1px solid #541113;
}
.manage_tablinks ul .nav-link:hover {
  border-color: #FF2933;
}
.manage_tablinks ul .nav-link.active {
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 26, 26, 0.3));
  border-color: #FF2933;
  color: #FFF;
}
.manage_tablinks ul .nav-link img {
  width: 1.8rem;
}

.manage_tabcontent {
  padding-top: 3.2rem;
}

.mange_tabheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mange_tabheading h5 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 155%;
  color: #FFF;
  margin: 0;
}

.manage_friendBox {
  background: #140E0E;
  border: 1px solid rgba(240, 39, 49, 0.2);
  padding: 1.6rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}
.manage_friendBox .manage_friendItem {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.manage_friendBox .manage_friendItem img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 50%;
}
.manage_friendBox .manage_friendItem p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  color: #F9F9FF;
}
.manage_friendBox .manage_friendLeft span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFF;
  background: #FF1A1A;
  display: inline-block;
  padding: 0.2rem 0.5rem;
}
.manage_friendBox .manage_friendLeft img {
  width: 1.8rem;
}

.manage_searchbar {
  padding: 1.6rem 0rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.manage_searchbar .manage_searchBtn {
  flex-shrink: 0;
}
.manage_searchbar .manage_searchBtn a {
  width: 11.1rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
}
.manage_searchbar .manage_searchBtn a .border_tl {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.manage_searchbar .manage_searchBtn a .border_tr {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.manage_searchbar .manage_searchBtn a .border_bl {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.manage_searchbar .manage_searchBtn a .border_br {
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.manage_searchbar .manage_searchBtn a:hover span {
  transform: scale(1.25);
}
.manage_searchbar .manage_searchBox {
  width: 100%;
}
.manage_searchbar .manage_searchBox .input_wrap span {
  width: 0.8rem;
  height: 0.6rem;
}

.friend_headingText {
  padding-bottom: 1.6rem;
  text-align: right;
}
.friend_headingText h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  color: #FFF;
  text-align: right;
}

.manage_tabcontent .invite_btn .button span {
  width: 0.6rem;
  height: 0.6rem;
  border-color: #FFF;
}
.manage_tabcontent .invite_btn .button.cancel_btn {
  background: #281415;
  border-color: rgba(255, 255, 255, 0.1);
}

.supportcenter_section {
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .supportcenter_section {
    padding-top: 3rem;
  }
}
.supportcenter_section .supportcenter_box {
  background-image: url("../img/support-boxbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2.4rem 2.4rem;
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box {
    padding: 2rem 1.5rem;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .supportcenter_section .supportcenter_box .supportcenter_wraper {
    grid-template-columns: 1fr;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox {
  background-image: url("../img/helpbox-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6rem 3.2rem;
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox {
    padding: 4.5rem 2rem;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_img {
  text-align: center;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_img img {
  max-width: 17.6rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_img img {
    width: 14rem;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_title {
  padding-top: 10.4rem;
  padding-bottom: 3.2rem;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_title h4 {
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.15rem;
  color: #F5F5F5;
  margin-bottom: 1.2rem;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.05rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_title {
    padding-top: 8rem;
  }
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_title h4 {
    font-size: 3.2rem;
  }
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_title p {
    font-size: 1.8rem;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text {
  background: #1C1717;
  padding: 1.6rem 1.6rem;
  position: relative;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text label {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  display: block;
  margin-bottom: 1.2rem;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_helpbox .help_text input {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  color: rgba(245, 246, 255, 0.8);
  width: 100%;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  text-align: right;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox {
  background: #080808;
  padding: 2.4rem 2.4rem;
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox {
    padding: 2.4rem 1.6rem;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .contact_title {
  margin-bottom: 4rem;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .contact_title h4 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 0.8rem;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .contact_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .contact_title {
    margin-bottom: 3rem;
  }
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .contact_title h4 {
    font-size: 2.4rem;
  }
  .supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .contact_title p {
    font-size: 1.6rem;
  }
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 1.8rem;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row .send_btn a,
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row .send_btn button {
  background: #F02731;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0.2rem 1.77rem 0 rgba(249, 204, 97, 0.54) inset;
  transition: 0.2s all ease;
  width: auto;
  min-width: 15.4rem;
  height: 3.8rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  white-space: nowrap;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row .send_btn a img,
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row .send_btn button img {
  transition: 0.25s all ease;
}
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row .send_btn a:hover img,
.supportcenter_section .supportcenter_box .supportcenter_wraper .supportcenter_contactbox .row .send_btn button:hover img {
  transform: translate(-0.5rem);
}
.supportcenter_section .supportcenter_box .supportcenter_detailsWrap {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .supportcenter_section .supportcenter_box .supportcenter_detailsWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .supportcenter_section .supportcenter_box .supportcenter_detailsWrap {
    grid-template-columns: 1fr;
  }
}

.userinform_section {
  padding: 4rem 0rem;
}
.userinform_section .userinform_title {
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .userinform_section .userinform_title {
    margin-bottom: 2.5rem;
  }
}
.userinform_section .userinform_title h3 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.15rem;
  color: #F5F5F5;
}
@media (max-width: 991px) {
  .userinform_section .userinform_title h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .userinform_section .userinform_title h3 {
    font-size: 2.4rem;
  }
}
.userinform_section .userinform_wraper {
  background-image: url("../img/userinform-boxbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2.4rem 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .userinform_section .userinform_wraper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .userinform_section .userinform_wraper {
    padding: 2rem 2rem;
    grid-template-columns: 1fr;
  }
}

.userinform_card {
  background: #080808;
  padding: 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.userinform_card .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.userinform_card .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.userinform_card .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.userinform_card .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.userinform_card .cardGame_contoller img {
  width: 3.2rem;
}
.userinform_card .userinform_cardText h4 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
  margin: 2rem 0rem 1.6rem;
}
.userinform_card .userinform_cardText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.userinform_card .userinform_cardText a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #F02731;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.userinform_card .userinform_cardText a img {
  width: 2rem;
}
.userinform_card .userinform_cardBtn {
  margin-top: auto;
}

.preium_titlev2 {
  display: block;
}
.preium_titlev2 p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .preium_titlev2 p {
    font-size: 1.6rem;
  }
}

.premium_subcriptionBox {
  background: #212121;
  padding: 2rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.premium_subcriptionBox .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .subscription_text h4 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
}
.premium_subcriptionBox .subscription_text h4 span {
  color: #37AE48;
}
@media (max-width: 575px) {
  .premium_subcriptionBox .subscription_text h4 {
    font-size: 2rem;
  }
}
.premium_subcriptionBox .subscription_text p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  color: #F5F5F5;
  margin-top: 1.2rem;
}
.premium_subcriptionBox .subscription_text p span {
  color: #F02731;
}
@media (max-width: 575px) {
  .premium_subcriptionBox .subscription_text p {
    font-size: 1.7rem;
  }
}
.premium_subcriptionBox .subscription_item {
  width: 11rem;
  flex-shrink: 0;
  text-align: center;
}
.premium_subcriptionBox .subscription_item img {
  width: 5.6rem;
}
@media (max-width: 575px) {
  .premium_subcriptionBox .subscription_item img {
    width: 4.4rem;
  }
}
.premium_subcriptionBox .subscription_item a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F9F9FF;
  width: 10.6rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 4rem;
  background: #080808;
  position: relative;
}
.premium_subcriptionBox .subscription_item a .border_tl {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .subscription_item a .border_tr {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .subscription_item a .border_bl {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .subscription_item a .border_br {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subcriptionBox .subscription_item a:hover span {
  transform: scale(1.25);
}

.premium_subscWrap {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .premium_subscWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .premium_subscWrap {
    grid-template-columns: 1fr;
  }
}
.premium_subscWrap .premium_subscCard {
  background: #000000;
  padding: 2rem 1.2rem;
  position: relative;
  text-align: center;
}
.premium_subscWrap .premium_subscCard .border_tl {
  width: 1.6rem;
  height: 0.6rem;
  border-top: 1px solid #AC1F26;
  border-left: 1px solid #AC1F26;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subscWrap .premium_subscCard .border_tr {
  width: 1.6rem;
  height: 0.6rem;
  border-top: 1px solid #AC1F26;
  border-right: 1px solid #AC1F26;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subscWrap .premium_subscCard .border_bl {
  width: 1.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #AC1F26;
  border-left: 1px solid #AC1F26;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subscWrap .premium_subscCard .border_br {
  width: 1.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #AC1F26;
  border-right: 1px solid #AC1F26;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premium_subscWrap .premium_subscCard img {
  width: 12rem;
  display: block;
  margin: 0 auto 1.6rem;
}
.premium_subscWrap .premium_subscCard h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 0.4rem;
}
.premium_subscWrap .premium_subscCard p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #C4C5CC;
  text-align: center;
}

.premium_faqWraper {
  padding-bottom: 8rem;
}
@media (max-width: 991px) {
  .premium_faqWraper {
    padding-bottom: 5rem;
  }
}

@media (max-width: 575px) {
  .join_section_premium {
    padding: 7rem 1.2rem 5rem;
  }
}
.join_section_premium .join_text h3 {
  font-size: 4.6rem;
}
@media (max-width: 991px) {
  .join_section_premium .join_text h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .join_section_premium .join_text h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .join_section_premium .join_text h3 {
    font-size: 2.1rem;
  }
  .join_section_premium .join_text h3 img {
    width: 7rem;
  }
}
.join_section_premium .join_text ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 4.5rem;
}
.join_section_premium .join_text ul a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  color: #F02731;
  background: #281415;
  display: inline-block;
  padding: 0.3rem 0.4rem;
}

.accordion_item {
  background: #0E0E0E;
  border: 1px solid #1F1F1F;
  margin-bottom: 1.6rem;
  position: relative;
}
.accordion_item:last-child {
  margin-bottom: 0rem;
}
.accordion_item .border_tl {
  width: 1.6rem;
  height: 0.6rem;
  border-top: 1px solid #B1252C;
  border-left: 1px solid #B1252C;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.accordion_item .border_tr {
  width: 1.6rem;
  height: 0.6rem;
  border-top: 1px solid #B1252C;
  border-right: 1px solid #B1252C;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.accordion_item .border_bl {
  width: 1.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #B1252C;
  border-left: 1px solid #B1252C;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.accordion_item .border_br {
  width: 1.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #B1252C;
  border-right: 1px solid #B1252C;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.accordion_item .accordion_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  cursor: pointer;
}
.accordion_item .accordion_title h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 110%;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .accordion_item .accordion_title h4 {
    font-size: 1.8rem;
    padding-left: 4rem;
    line-height: 150%;
  }
}
.accordion_item .accordion_title .accordion_icon {
  transition: 0.2s all ease;
}
.accordion_item .accordion_title .accordion_icon img {
  width: 2.4rem;
}
.accordion_item .accordion_body {
  padding: 0rem 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion_item .accordion_body p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  max-width: 95rem;
  width: 100%;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .accordion_item .accordion_body p {
    font-size: 1.5rem;
  }
}

.accordion_item.active .accordion_icon {
  transform: rotate(180deg);
}

.collection_section {
  padding: 3rem 0rem;
}
.collection_section .collection_tab {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.collection_section .collection_tab a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #251011;
  border: 1px solid #62171B;
  display: inline-block;
  padding: 1rem 1.5rem;
  transition: 0.2s all ease;
}
.collection_section .collection_tab a.active, .collection_section .collection_tab a:hover {
  background: #F02731;
}
.collection_section .collection_wraper {
  padding-top: 4rem;
}
.collection_section .collection_wraper .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}
.collection_section .collection_wraper .collection_card {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}
.collection_section .collection_wraper .collection_card .border_tl {
  width: 1.6rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.collection_section .collection_wraper .collection_card .border_tr {
  width: 1.6rem;
  height: 0.6rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.collection_section .collection_wraper .collection_card .border_bl {
  width: 1.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.collection_section .collection_wraper .collection_card .border_br {
  width: 1.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.collection_section .collection_wraper .collection_card .collection_cardImg {
  padding: 1.2rem 1.2rem 1.5rem;
}
.collection_section .collection_wraper .collection_card .collection_cardImg img {
  width: 100%;
}
.collection_section .collection_wraper .collection_card .collection_cardText {
  background: #210B0B;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.collection_section .collection_wraper .collection_card .collection_cardText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  color: rgba(245, 246, 255, 0.8);
}
.collection_section .collection_wraper .collection_card .collection_cardText span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
}
.collection_section .collection_wraper .collection_card.selected {
  background: #080808;
  border: 1px solid rgba(240, 39, 49, 0.6);
}

.edit_modal {
  max-width: 92.7rem;
}
@media (max-width: 767px) {
  .edit_modal {
    max-width: 50rem;
  }
}
.edit_modal .removemodal_body .edit_modalTitle h3 {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .edit_modal .removemodal_body .edit_modalTitle h3 {
    font-size: 3.2rem;
  }
}
.edit_modal .removemodal_body .edit_modalTitle p {
  font-size: 2rem;
  max-width: 65.4rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .edit_modal .removemodal_body .edit_modalTitle p {
    font-size: 1.6rem;
  }
}
.edit_modal .removemodal_body .edit_mainContent {
  padding-top: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .edit_modal .removemodal_body .edit_mainContent {
    flex-direction: column-reverse;
    padding-top: 3rem;
  }
}
.edit_modal .removemodal_body .edit_mainContent .left_card {
  max-width: 32rem;
  width: 100%;
}
@media (max-width: 767px) {
  .edit_modal .removemodal_body .edit_mainContent .left_card {
    max-width: 100%;
  }
}
.edit_modal .removemodal_body .edit_mainContent .left_card h4 {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #F5F6FF;
  margin-bottom: 1.6rem;
  text-align: right;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame {
  position: relative;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame img {
  width: 100%;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame .display_item {
  padding: 3.2rem 2rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame .display_item img {
  width: 10rem;
  display: block;
  margin: 0 auto;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame .display_item .display_text {
  margin-top: auto;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame .display_item .display_text p {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  text-align: center;
  margin-bottom: 1.2rem;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame .display_item .display_text a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(218, 17, 17, 0.1);
  border: 1px solid rgba(218, 17, 17, 0.5);
  width: 9.2rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 0.6rem;
  border-radius: 5rem;
  position: relative;
}
.edit_modal .removemodal_body .edit_mainContent .left_card .display_frame .display_item .display_text a::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  background: #DA1111;
  outline: 0.2rem solid #580A0C;
  border-radius: 50%;
}
.edit_modal .removemodal_body .edit_mainContent .right_card {
  max-width: 50.3rem;
  width: 100%;
}
@media (max-width: 767px) {
  .edit_modal .removemodal_body .edit_mainContent .right_card {
    max-width: 100%;
  }
}
.edit_modal .removemodal_body .edit_mainContent .right_card .edit_tablinks {
  margin-bottom: 1.6rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .edit_tablinks .nav-tabs {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .edit_tablinks .nav-tabs .nav-link {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  background: rgba(240, 39, 49, 0.1);
  border: 0.6px solid rgba(240, 39, 49, 0.3);
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 0rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .edit_tablinks .nav-tabs .nav-link.active {
  color: rgb(245, 246, 255);
  background: #F02731;
  border: 0.6px solid rgba(240, 39, 49, 0.3);
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list {
  height: 31.5rem;
  overflow: auto;
  padding-left: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #F02731 #1F1D1D;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list::-webkit-scrollbar-track {
  background: #1F1D1D;
  border-radius: 2rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list::-webkit-scrollbar-thumb {
  background: #F02731;
  border-radius: 2rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-bottom: 1.2rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item .border_tl {
  width: 1.2rem;
  height: 0.9rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item .border_tr {
  width: 1.2rem;
  height: 0.9rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item .border_bl {
  width: 1.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item .border_br {
  width: 1.2rem;
  height: 0.9rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  text-align: right;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item a img {
  width: 5.4rem;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .editTab_list .editTab_item a:hover {
  background: #1B0A0A;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn {
  position: sticky;
  bottom: 0;
  padding: 0.2rem 0rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #1F1D1D);
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn a {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #F02731;
  display: inline-block;
  padding: 0.8rem 1rem;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  transition: 0.2s all ease;
  position: relative;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn a:hover {
  background: #CB0013;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn a .border_tl {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn a .border_tr {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn a .border_bl {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .edit_mainContent .right_card .shopcard_btn a .border_br {
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .editModal_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  gap: 2rem;
}
.edit_modal .removemodal_body .editModal_buttons a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0.8rem 3.6rem;
  transition: 0.2s all ease;
}
.edit_modal .removemodal_body .editModal_buttons a:first-child {
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.edit_modal .removemodal_body .editModal_buttons a:hover {
  background: #F02731;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
}

.store_hero {
  border-bottom: none;
  margin-bottom: 5rem;
}
@media (max-width: 991px) {
  .store_hero {
    margin-bottom: 0rem;
  }
}
.store_hero .storeHero_title h2 {
  color: #F5F5F5;
  margin-bottom: 1.2rem;
}

.store_tabMenu {
  flex-direction: row !important;
  justify-content: center;
}
.store_tabMenu .main_menuLinks a {
  min-width: 13rem;
}
.store_tabMenu .main_menuLinks a img {
  width: 2rem;
}
.store_tabMenu .main_menuLinks a.active::after {
  height: 3.5rem;
  right: 38%;
}
.store_tabMenu .main_menuLinks a.coin_noline::after {
  display: none;
}
.store_tabMenu .tab_links ul li a {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.store_tabMenu .tab_links ul::before {
  width: 82%;
  transform: translateX(-48%);
}
@media (max-width: 767px) {
  .store_tabMenu .tab_links {
    display: flex;
    justify-content: center;
  }
}

.store_title {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3.2rem;
}
.store_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .store_title h3 {
    font-size: 2.4rem;
  }
}
.store_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}

.store_slider_wraper {
  max-width: 90.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
  position: relative;
  padding: 0 6rem;
}
.store_slider_wraper .store_item {
  text-align: center;
  cursor: pointer;
}
.store_slider_wraper .store_item img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border: 0.3rem solid transparent;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
.store_slider_wraper .store_item p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  margin-top: 1rem;
}
.store_slider_wraper .store_item.active img {
  border-color: #F02731;
}
.store_slider_wraper .store_item.active p {
  color: #F02731;
}
.store_slider_wraper .swiper-slide {
  width: auto;
}
.store_slider_wraper .swiper-button-prev {
  width: 3.2rem;
  right: 0 !important;
}
.store_slider_wraper .swiper-button-prev img {
  width: 100%;
}
.store_slider_wraper .swiper-button-prev svg {
  display: none;
}
.store_slider_wraper .swiper-button-next {
  width: 3.2rem;
  left: 0 !important;
}
.store_slider_wraper .swiper-button-next img {
  width: 100%;
}
.store_slider_wraper .swiper-button-next svg {
  display: none;
}

.store_mainwraper {
  max-width: 90.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #080808;
  padding: 2rem 2rem;
  margin-bottom: 5rem;
  position: relative;
}
@media (max-width: 991px) {
  .store_mainwraper {
    margin-bottom: 3rem;
  }
}
.store_mainwraper .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2.4rem;
}
@media (max-width: 767px) {
  .store_mainwraper .row {
    --bs-gutter-x: 1.6rem;
    --bs-gutter-y: 2rem;
  }
}

.store_card {
  padding: 1rem 0.8rem;
  background: linear-gradient(to bottom, #0F0F0E, #080808);
  position: relative;
}
@media (max-width: 767px) {
  .store_card {
    max-width: 30rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.store_card .line_shape1 {
  width: 1rem;
  position: absolute;
  right: 0;
  top: 9.8rem;
}
.store_card .line_shape2 {
  width: 1rem;
  position: absolute;
  left: 0;
  top: 5.5rem;
}
.store_card .card_imgShape {
  width: 100%;
  height: 23.4rem;
  background-image: url(../img/store-card-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: relative;
  padding: 2.4rem 0rem 4rem;
  overflow: hidden;
}
.store_card .card_imgShape .card_icon {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  cursor: pointer;
  z-index: 9;
}
.store_card .card_imgShape .card_icon img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.store_card .card_imgShape .question_sign {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 9;
}
.store_card .card_imgShape .question_sign button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.store_card .card_imgShape .question_sign button img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.store_card .card_imgShape .card_img {
  width: 100%;
  height: 17rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.store_card .card_imgShape .card_img img {
  width: 100%;
  display: block;
  margin: 0 auto;
  transition: 0.2s all ease;
}
.store_card .card_imgShape .card_img:hover .profile_frame_asset {
  transform: scale(1.05);
}
.store_card .status_btn {
  width: 11.85rem;
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  background-image: url(../img/store-card-btn-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-top: -1rem;
  z-index: 9;
  position: relative;
}
.store_card .status_btn span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.7);
}
.store_card .card_textShape {
  background-image: url("../img/store-card-shape-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 6.5rem 1.5rem;
  text-align: center;
  position: relative;
  margin-top: -4.5rem;
}
.store_card .card_textShape h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
}
.store_card .card_textShape h4 img {
  width: 2.2rem;
}
.store_card .card_textShape a {
  width: 16.3rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  background-image: url("../img/store-card-btn-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  bottom: 0rem;
  transform: translateX(-50%);
  transition: 0.2s all ease;
}
.store_card .card_textShape a img {
  width: 1.6rem;
  transition: 0.2s all ease;
}
.store_card .card_textShape a:hover img {
  transform: translateX(-0.5rem);
}

.store_mainwraper_v2 .card_textShape {
  background-image: url("../img/store-card-shape-2-big.png");
  padding: 0 1.5rem;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -4.6rem;
}
.store_mainwraper_v2 .card_textShape h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}
.store_mainwraper_v2 .card_textShape .coin {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #531B20;
  padding: 0.2rem 0.6rem 0.4rem 1rem;
  border-radius: 5rem;
}
.store_mainwraper_v2 .card_textShape .coin img {
  width: 1.6rem;
}
.store_mainwraper_v2 .card_textShape h6 {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0rem 0.2rem;
}
.store_mainwraper_v2 .card_textShape h6.red {
  color: #F02731;
}
.store_mainwraper_v2 .card_textShape p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
}
.store_mainwraper_v2 .card_textShape p span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  color: #FEE9EA;
}
.store_mainwraper_v2 .card_textShape a {
  bottom: 0.2rem;
}

.skin_searchWrap {
  max-width: 90.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.skin_searchWrap .row {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 1.6rem;
}
.skin_searchWrap .search_skin {
  width: 100%;
  position: relative;
}
.skin_searchWrap .search_skin .border_tl {
  width: 0.4rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.skin_searchWrap .search_skin .border_tr {
  width: 0.4rem;
  height: 0.6rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.skin_searchWrap .search_skin .border_bl {
  width: 0.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.skin_searchWrap .search_skin .border_br {
  width: 0.4rem;
  height: 0.6rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.skin_searchWrap .search_skin input {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #D4D4D4;
  width: 100%;
  height: 4.4rem;
  background: #262626;
  border: 1px solid #353535;
  padding-left: 1rem;
  padding-right: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skin_searchWrap .search_skin input:focus {
  border-color: #3F1717;
}
.skin_searchWrap .search_skin input::placeholder {
  color: #D4D4D4;
  opacity: 1;
}
.skin_searchWrap .search_skin button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.3rem;
}
.skin_searchWrap .search_skin button img {
  width: 2rem;
}
.skin_searchWrap .skin_filter {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.skin_searchWrap .skin_filter h4 {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.skin_searchWrap .skin_filter .filter_btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.skin_searchWrap .skin_filter .filter_btn a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 0.8rem;
  border-radius: 5rem;
}
.skin_searchWrap .skin_filter .filter_btn a img {
  width: 1.8rem;
}
.skin_searchWrap .skin_filter button {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F02731;
  background: transparent;
  border: none;
  outline: none;
}

.buyModal_title img {
  width: 13.8rem;
  display: block;
  margin: 0 auto 2rem;
}
.buyModal_title p {
  max-width: 31.2rem;
  width: 100%;
  margin: 0 auto;
}

.giftModal_body {
  position: relative;
}
.giftModal_body .gift1 {
  width: 15rem;
  position: absolute;
  top: -7rem;
  right: -7rem;
}
.giftModal_body .gift2 {
  width: 20rem;
  position: absolute;
  left: -9rem;
  bottom: -9rem;
}

.modal_infoText {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.modal_infoText img {
  width: 1.6rem;
  flex-shrink: 0;
}
.modal_infoText p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .modal_infoText p {
    font-size: 1.45rem;
  }
}
.modal_infoText p span {
  color: #F02731;
}
.modal_infoText p a {
  color: #F02731;
}

.giftModal_item {
  max-width: 19.5rem;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #1B0A0B;
  background-image: url("../img/giftModal_itembg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: 4rem;
}
.giftModal_item .border_tl {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.giftModal_item .border_tr {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.giftModal_item .border_bl {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.giftModal_item .border_br {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.giftModal_item img {
  width: 13.8rem;
  display: block;
  margin: 1.8rem auto 1rem;
}
.giftModal_item a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  width: 100%;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem;
  background-image: url("../img/button-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.boxdetails_modaldialog {
  max-width: 70rem;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog {
    max-width: 50rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalTitle {
  text-align: center;
  padding-top: 2rem;
}
.boxdetails_modaldialog .boxdetails_modalTitle img {
  width: 15rem;
  height: 8rem;
  object-fit: cover;
  display: block;
  margin: 0 auto 2.4rem;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalTitle img {
    width: 15rem;
    height: 8rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalTitle h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 115%;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
  .boxdetails_modaldialog .boxdetails_modalTitle h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalTitle h3 {
    font-size: 2.5rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalText {
  max-width: 65.4rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 3.5rem;
  padding-bottom: 3.6rem;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalText {
    padding: 3rem 0rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalText p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.6rem;
}
.boxdetails_modaldialog .boxdetails_modalText p:last-child {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalText p {
    font-size: 1.6rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalText h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: initial;
  color: #F02731;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalText h4 {
    font-size: 1.6rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalWraper {
  border-top: 1px solid #360E10;
  padding-top: 3.6rem;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalWraper {
    padding-top: 3rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_products {
  height: 60rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #A01A20 #1B0D0D;
  direction: ltr;
  padding-right: 1.6rem;
  margin-right: -1rem;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_products::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 2rem;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_products::-webkit-scrollbar-track {
  background: #1B0D0D;
  border-radius: 2rem;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_products::-webkit-scrollbar-thumb {
  background: #A01A20;
  border-radius: 2rem;
}
.boxdetails_modaldialog .boxdetails_modalWraper .row {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 1.6rem;
  direction: rtl;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard {
  border: 1px solid #1B0A0B;
  background-image: url("../img/giftModal_itembg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .border_tl {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .border_tr {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .border_bl {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .border_br {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .boxdetails_cardItem {
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .boxdetails_cardItem {
    height: 15rem;
  }
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .boxdetails_cardItem img {
  width: 100%;
  object-fit: cover;
}
.boxdetails_modaldialog .boxdetails_modalWraper .boxdetails_modalCard .boxdetails_cardBtn span {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  width: 100%;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem;
  background-image: url("../img/button-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.store_unlock {
  width: 100%;
  height: 84rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 11.2rem 0rem 14.6rem;
  text-align: center;
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.store_unlock p {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 150%;
  color: #F5F5F5;
  text-align: center;
  margin-bottom: 2.4rem;
}
.store_unlock p span {
  color: #F02731;
}
@media (max-width: 767px) {
  .store_unlock p {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.store_unlock a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 15.5rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: 0.2s all ease;
}
.store_unlock a img {
  width: 1.8rem;
}
.store_unlock a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.store_unlock a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.store_unlock a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.store_unlock a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.store_unlock a:hover span {
  transform: scale(1.25);
}

.store_unlock_v3 {
  height: 43.6rem;
}

.store_titlev2 {
  max-width: 33.8rem;
}

.profile_cardwrap .card_imgShape .card_img img {
  width: 17rem;
}

.profile_frameWrap .card_imgShape .card_img img {
  width: 15rem;
}

.coin_titlev2 {
  padding-top: 8rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .coin_titlev2 {
    padding-top: 6rem;
    margin-bottom: 3rem;
  }
}

.coin_wraper {
  background: #080808;
  padding: 2rem 2rem;
}
@media (max-width: 767px) {
  .coin_wraper {
    padding: 1.2rem 1.2rem;
  }
}
.coin_wraper .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2.4rem;
}
.coin_wraper .coin_box {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.coin_wraper .coin_box .coin_shapeLeft {
  position: absolute;
  left: 0;
  top: 0;
}
.coin_wraper .coin_box .coin_shapeLeft img {
  width: 8.3rem;
}
.coin_wraper .coin_box .coin_shapeRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
.coin_wraper .coin_box .coin_shapeRight img {
  width: 7.6rem;
}
.coin_wraper .coin_box .coin_icon {
  text-align: center;
  position: relative;
  z-index: 9;
}
.coin_wraper .coin_box .coin_icon img {
  width: 7.1rem;
  display: block;
  margin: 0 auto;
}
.coin_wraper .coin_box .coin_text {
  padding: 2.6rem 0rem 3.2rem;
  text-align: center;
  position: relative;
  z-index: 9;
}
.coin_wraper .coin_box .coin_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.coin_wraper .coin_box .coin_text h4 span {
  font-family: "Cooperative";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 125%;
  color: #FFFFFF;
}
.coin_wraper .coin_box .coin_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.9);
}
.coin_wraper .coin_box .coin_btn {
  position: relative;
}
.coin_wraper .coin_box .coin_btn .border_tl {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.coin_wraper .coin_box .coin_btn .border_tr {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.coin_wraper .coin_box .coin_btn .border_bl {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.coin_wraper .coin_box .coin_btn .border_br {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.coin_wraper .coin_box .coin_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.85rem 0rem;
  position: relative;
  box-shadow: 0 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.coin_wraper .coin_box .coin_btn:hover span {
  transform: scale(1.25);
}

.customize_wraper {
  background: #080808;
  padding: 2.4rem 2.4rem 2rem;
}
@media (max-width: 767px) {
  .customize_wraper {
    padding: 2rem 1.2rem;
  }
}
.customize_wraper .row {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 2.4rem;
}
.customize_wraper .customize_coin img {
  width: 100%;
}
.customize_wraper .amount_item {
  background: #0E0E0E;
  padding: 2rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .customize_wraper .amount_item {
    padding: 2rem 1.2rem;
  }
}
.customize_wraper .amount_item h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.2rem;
}
.customize_wraper .amount_item h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #CFCFCF;
  margin: 1.6rem 0rem 1.4rem;
}
.customize_wraper .amount_item .amount_input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.6rem 1.2rem;
  position: relative;
  margin-bottom: 1.6rem;
}
.customize_wraper .amount_item .amount_input img {
  width: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
}
.customize_wraper .amount_item .amount_input input {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  padding-right: 3rem;
}
.customize_wraper .amount_item .amount_input .border_tl {
  width: 0.9rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .amount_item .amount_input .border_tr {
  width: 0.9rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .amount_item .amount_input .border_bl {
  width: 0.9rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .amount_item .amount_input .border_br {
  width: 0.9rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .amount_item .info_item {
  background: #231312;
  border: 1px solid #391413;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.customize_wraper .amount_item .info_item img {
  width: 2rem;
  flex-shrink: 0;
}
.customize_wraper .amount_item .info_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
.customize_wraper .summary_item {
  background: #0E0E0E;
  padding: 2rem 2rem;
}
@media (max-width: 767px) {
  .customize_wraper .summary_item {
    padding: 2rem 1.2rem;
  }
}
.customize_wraper .summary_item h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.2rem;
}
.customize_wraper .summary_item .summary_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0rem 2rem;
}
.customize_wraper .summary_item .summary_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #CFCFCF;
}
.customize_wraper .summary_item .summary_text span {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.customize_wraper .summary_item .summary_text span img {
  width: 2rem;
}
.customize_wraper .summary_item .total_item {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.customize_wraper .summary_item .total_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
}
.customize_wraper .summary_item .total_item h4 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #FFF;
}
@media (max-width: 767px) {
  .customize_wraper .summary_item .total_item h4 {
    font-size: 2.4rem;
  }
}
.customize_wraper .summary_item .total_item h4 span {
  color: #F02731;
}
.customize_wraper .summary_item .payment_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
  background: #F02731;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: block;
  text-align: center;
  padding: 1.2rem 1.5rem;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
  transition: 0.2s all ease;
}
.customize_wraper .summary_item .payment_btn a .border_tl {
  width: 0.7rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .summary_item .payment_btn a .border_tr {
  width: 0.7rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .summary_item .payment_btn a .border_bl {
  width: 0.7rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .summary_item .payment_btn a .border_br {
  width: 0.7rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.customize_wraper .summary_item .payment_btn a:hover span {
  transform: scale(1.25);
}

.shipping_section {
  padding: 4rem 0rem;
}
@media (max-width: 991px) {
  .shipping_section {
    padding: 2rem 0rem;
  }
}
.shipping_section .shipping_box {
  background: #080808;
  padding: 2.4rem 2.4rem;
}
@media (max-width: 767px) {
  .shipping_section .shipping_box {
    padding: 1.5rem 1.2rem;
  }
}
.shipping_section .shipping_box .shipping_title h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .shipping_section .shipping_box .shipping_title h3 {
    font-size: 2.5rem;
  }
}
.shipping_section .shipping_box .shipping_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .shipping_section .shipping_box .shipping_title p {
    font-size: 1.7rem;
  }
}
.shipping_section .shipping_box .shipping_text {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .shipping_section .shipping_box .shipping_text {
    padding-top: 2.8rem;
  }
}
.shipping_section .shipping_box .shipping_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
  margin-bottom: 1.6rem;
}
.shipping_section .shipping_box .shipping_text .shipping_infoBox {
  background: #1D0D0C;
  border: 1px solid #4A100F;
  padding: 0.8rem 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.shipping_section .shipping_box .shipping_text .shipping_infoBox img {
  width: 2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.shipping_section .shipping_box .shipping_text .shipping_infoBox p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: initial;
  color: #FFF;
  max-width: 56rem;
  width: 100%;
}
.shipping_section .shipping_box .shipping_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  background: #F02731;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  padding: 1.2rem 1.5rem;
  position: relative;
  transition: 0.2s all ease;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.shipping_section .shipping_box .shipping_btn a .border_tl {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.shipping_section .shipping_box .shipping_btn a .border_tr {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.shipping_section .shipping_box .shipping_btn a .border_bl {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.shipping_section .shipping_box .shipping_btn a .border_br {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.shipping_section .shipping_box .shipping_btn a:hover {
  opacity: 0.9;
}
.shipping_section .shipping_box .shipping_btn a:hover span {
  transform: scale(1.25);
}
.shipping_section .shipping_box .shipping_details {
  margin-bottom: 1.6rem;
}
.shipping_section .shipping_box .shipping_details .row {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 1.6rem;
}
.shipping_section .shipping_box .shipping_details .textarea_wrap span {
  width: 1.2rem !important;
  height: 0.5rem !important;
}
.shipping_section .shipping_box .shipping_details .select_btn .border_tl {
  width: 1.2rem;
  height: 0.5rem;
  border-color: #a11b1b;
}
.shipping_section .shipping_box .shipping_details .select_btn .border_tr {
  width: 1.2rem;
  height: 0.5rem;
  border-color: #a11b1b;
}
.shipping_section .shipping_box .shipping_details .select_btn .border_bl {
  width: 1.2rem;
  height: 0.5rem;
  border-color: #a11b1b;
}
.shipping_section .shipping_box .shipping_details .select_btn .border_br {
  width: 1.2rem;
  height: 0.5rem;
  border-color: #a11b1b;
}

.orderSuccess_modalDialog {
  max-width: 60.6rem;
  margin-left: auto;
  margin-right: auto;
}
.orderSuccess_modalDialog .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}
.orderSuccess_modalDialog .checkmark_icon {
  width: 10rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .orderSuccess_modalDialog .checkmark_icon {
    width: 8rem;
  }
}
.orderSuccess_modalDialog .removemodal_body {
  padding: 0;
}
.orderSuccess_modalDialog .removemodal_body .removemodal_title h3 {
  font-weight: 400;
  margin-bottom: 1rem !important;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox {
  background: #080808;
  padding: 2.4rem 2.4rem;
  margin-top: 4rem;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox ul {
  padding-bottom: 1.6rem;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox ul li:first-child {
  padding-top: 0rem;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox ul li strong {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: initial;
  color: #FFFFFF;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox ul li span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox ul li span.text_color {
  color: #F02731;
}
.orderSuccess_modalDialog .removemodal_body .success_detailsBox .removemodal_button a {
  width: 49%;
}

.storeClient_section {
  background: #080808;
  padding: 2.4rem 2.4rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .storeClient_section {
    padding: 2rem 1.2rem;
    margin-top: 2rem;
  }
}
.storeClient_section .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}
.storeClient_section .storeClient_right .storeClient_product {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.storeClient_section .storeClient_right .storeClient_product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storeClient_section .storeClient_right .storeCliet_sliderThumbs {
  margin-top: 2.4rem;
  padding-bottom: 0.2rem;
}
.storeClient_section .storeClient_right .storeCliet_sliderThumbs .swiper-slide {
  border: 1px solid transparent;
}
.storeClient_section .storeClient_right .storeCliet_sliderThumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storeClient_section .storeClient_right .storeCliet_sliderThumbs .swiper-slide-thumb-active {
  border-color: #f56e75;
  opacity: 1;
}
.storeClient_section .storeClient_left {
  background: #0e0e0e;
  padding: 2rem 2rem;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left {
    padding: 2rem 1rem;
  }
}
.storeClient_section .storeClient_left .storeClient_title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.storeClient_section .storeClient_left .storeClient_title h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #f5f6ff;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left .storeClient_title h3 {
    font-size: 2.4rem;
  }
}
.storeClient_section .storeClient_left .storeClient_title h4 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.storeClient_section .storeClient_left .storeClient_title h4 span {
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #f02731;
  leading-trim: both;
  text-edge: cap;
}
.storeClient_section .storeClient_left .storeClient_title h4 img {
  width: 2.6rem;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left .storeClient_title h4 {
    font-size: 2.4rem;
  }
  .storeClient_section .storeClient_left .storeClient_title h4 span {
    font-size: 3rem;
  }
  .storeClient_section .storeClient_left .storeClient_title h4 img {
    width: 2.2rem;
  }
}
.storeClient_section .storeClient_left .storeClient_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 111.111%;
  letter-spacing: initial;
  color: #fff;
  margin-bottom: 1.6rem;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left .storeClient_title p {
    font-size: 1.6rem;
  }
}
.storeClient_section .storeClient_left .storeClient_item {
  padding-top: 1.6rem;
}
.storeClient_section .storeClient_left .storeClient_item h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 111.111%;
  letter-spacing: initial;
  color: #fff;
  margin-bottom: 1.6rem;
  opacity: 0.8;
}
.storeClient_section .storeClient_left .storeClient_item h4.red {
  color: #f02731;
}
.storeClient_section .storeClient_left .storeClient_item .color_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.storeClient_section .storeClient_left .storeClient_item .color_item .color_box {
  width: 5.8rem;
  height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  padding: 0.4rem 0.4rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.storeClient_section .storeClient_left .storeClient_item .color_item .color_box span {
  width: 5rem;
  height: 5rem;
  display: block;
  background: #fff;
  flex-shrink: 0;
}
.storeClient_section .storeClient_left .storeClient_item .color_item .color_box span.red {
  background: linear-gradient(278deg, rgba(240, 39, 49, 0.15) 3.38%, rgba(240, 39, 49, 0.15) 77.92%);
}
.storeClient_section .storeClient_left .storeClient_item .color_item .color_box span.black {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
}
.storeClient_section .storeClient_left .storeClient_item .color_item .color_box.active {
  border-color: #f56e75;
}
.storeClient_section .storeClient_left .storeClient_item .size_item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.storeClient_section .storeClient_left .storeClient_item .size_item span {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(240, 39, 49, 0.1);
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
  color: #fff;
  cursor: pointer;
}
.storeClient_section .storeClient_left .storeClient_item .size_item span.active {
  border-color: #f56e75;
}
.storeClient_section .storeClient_left .storeClient_item .amount_item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.storeClient_section .storeClient_left .storeClient_item .amount_item .amount_box {
  flex-shrink: 0;
  width: 13.4rem;
  border: 0.5px solid rgba(240, 39, 49, 0.2);
  background: rgba(240, 39, 49, 0.1);
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.storeClient_section .storeClient_left .storeClient_item .amount_item .amount_box button {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.storeClient_section .storeClient_left .storeClient_item .amount_item .amount_box button img {
  width: 1.5rem;
}
.storeClient_section .storeClient_left .storeClient_item .amount_item .amount_box .counter {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}
.storeClient_section .storeClient_left .storeClient_item .amount_item .amount_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: initial;
  color: #fff;
  opacity: 0.8;
}
.storeClient_section .storeClient_left .storeClient_addBtn a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #fff;
  display: block;
  text-align: center;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #f02731;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  padding: 1.1rem 1rem;
  position: relative;
  transition: 0.2s all ease;
}
.storeClient_section .storeClient_left .storeClient_addBtn a .border_tl {
  width: 0.7rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.storeClient_section .storeClient_left .storeClient_addBtn a .border_tr {
  width: 0.7rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.storeClient_section .storeClient_left .storeClient_addBtn a .border_bl {
  width: 0.7rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.storeClient_section .storeClient_left .storeClient_addBtn a .border_br {
  width: 0.7rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.storeClient_section .storeClient_left .storeClient_addBtn a:hover span {
  transform: scale(1.25);
}
.storeClient_section .storeClient_left .storeClient_shippingBox {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #140e0e;
  padding: 1rem 1.2rem;
  margin-top: 2.4rem;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingBtn button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingBtn button img {
  width: 2.4rem;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.8rem 0rem 1rem;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails p a {
  color: #f02731;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails p {
    font-size: 1.2rem;
  }
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #140e0e;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table th {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #fff;
  padding: 2rem 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table th:first-child {
  padding-right: 2rem;
  text-align: right;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table th {
    font-size: 1.3rem;
  }
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table td {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #fff;
  padding: 2rem 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table td:first-child {
  padding-right: 2rem;
  text-align: right;
}
@media (max-width: 767px) {
  .storeClient_section .storeClient_left .storeClient_shippingBox .storeClient_shippingDetails .shippingDetails_table table td {
    font-size: 1.3rem;
  }
}
.storeClient_section .storeClient_left .storeClient_shippingBox.active .storeClient_shippingDetails {
  max-height: 50rem;
}
.storeClient_section .storeClient_left .storeClient_shippingBox.active .storeClient_shippingBtn img {
  transform: rotate(180deg);
  transition: 0.3s;
}

.cart____section .title_xl {
  padding-bottom: 4rem;
}
.cart____section .title_md {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cart____section .title_xl {
    padding-bottom: 2.4rem;
  }
  .cart____section .title_md {
    padding-bottom: 2.4rem;
  }
}

.tab_main_menu_v1 a {
  width: 13rem;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  letter-spacing: 0.032rem !important;
}

.tab_sub_menu_v1 .tab_links ul::before {
  width: 78.9%;
  left: 49.8%;
}
.tab_sub_menu_v1 .tab_links a {
  width: 13.5rem;
  letter-spacing: 0.032rem !important;
}
@media (max-width: 767px) {
  .tab_sub_menu_v1 .tab_links li:first-child a::before {
    width: 50%;
    left: -1.5%;
    transform: translate(0, 0);
  }
  .tab_sub_menu_v1 .tab_links li:last-child a::before {
    width: 50%;
    left: unset;
    right: -2%;
    transform: translate(0, 0);
  }
  .tab_sub_menu_v1 .tab_links a {
    width: 12rem;
    letter-spacing: 0.032rem !important;
  }
}

.order_cart_item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #140E0E;
  padding: 3.2rem;
}
.order_cart_item:not(:last-child) {
  margin-bottom: 2.4rem;
}
.order_cart_item .order_cart_item_top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .order_cart_item .order_cart_item_top .col-lg-6 {
    width: 49%;
  }
}
.order_cart_item .order_cart_item_top ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.order_cart_item .order_cart_item_top li p:nth-child(1) {
  font-size: 1.6rem;
  color: rgba(245, 246, 255, 0.8);
  padding-bottom: 1.2rem;
}
.order_cart_item .order_cart_item_top li p:nth-child(2) {
  font-size: 1.6rem;
  color: #F5F6FF;
  display: flex;
  align-items: center;
}
.order_cart_item .order_cart_item_top li p:nth-child(2) .coin {
  width: 1.6rem;
  margin-left: 0.8rem;
}
.order_cart_item .order_cart_item_top li p:nth-child(2) span {
  display: inline-block;
  margin-right: 0.2rem;
}
.order_cart_item .order_cart_item_top .badge {
  display: block;
  width: max-content;
  color: #D0D5DD;
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 155.556%;
  border-radius: 60px;
  padding: 4px 10px;
  border: 0.6px solid rgba(222, 87, 9, 0.0941176471);
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.16) 3.38%, rgba(228, 105, 18, 0.16) 22.95%, rgba(246, 153, 41, 0.16) 63.01%, rgba(253, 172, 51, 0.16) 77.92%);
  margin-right: auto;
}
.order_cart_item .order_cart_item_top .badge.delivered {
  border-color: #277C33;
  background: rgba(55, 174, 72, 0.3);
}
.order_cart_item .cart_item_title {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.order_cart_item .cart_item_title .cart_item_img {
  width: 10rem;
  height: 10rem;
}
.order_cart_item .cart_item_title .cart_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order_cart_item .cart_item_title .quantity {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  padding-top: 0.8rem;
}
.order_cart_item .cart_item_button {
  position: relative;
  width: 11.1rem;
  margin-right: auto;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: #F02731;
  text-align: center;
  padding: 0.85rem 0rem;
  box-shadow: 0 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.order_cart_item .cart_item_button .border_tl {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order_cart_item .cart_item_button .border_tr {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order_cart_item .cart_item_button .border_bl {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order_cart_item .cart_item_button .border_br {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order_cart_item .cart_item_button:hover span {
  transform: scale(1.25);
}
@media (max-width: 767px) {
  .order_cart_item {
    padding: 2rem;
  }
  .order_cart_item:not(:last-child) {
    margin-bottom: 1.6rem;
  }
  .order_cart_item .order_cart_item_top ul {
    gap: 2rem;
    padding-top: 2.4rem;
  }
  .order_cart_item .order_cart_item_top .badge {
    font-size: 1.4rem;
  }
  .order_cart_item .cart_item_title .title_sm {
    font-size: 2rem;
  }
  .order_cart_item .cart_item_button {
    width: 100%;
    margin-top: 1.6rem;
  }
}

.checkout_section .main_content {
  max-width: 124rem;
  width: 100%;
}
.checkout_section .main_row {
  --bs-gutter-x: 4.8rem;
}
@media (min-width: 992px) {
  .checkout_section .col-lg-8 {
    width: 62.9%;
  }
  .checkout_section .col-lg-4 {
    width: 37.1%;
  }
}
.checkout_section .back_to_cart {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #F9F9FF;
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 19.5%;
  text-underline-position: from-font;
  margin-bottom: 3.2rem;
}
.checkout_section .back_to_cart img {
  width: 2.4rem;
}
.checkout_section .back_to_cart:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .checkout_section .back_to_cart {
    font-size: 1.6rem;
  }
  .checkout_section .back_to_cart img {
    width: 1.8rem;
  }
}
.checkout_section .shipping_section .shipping_box .shipping_text .shipping_infoBox p {
  max-width: 100%;
}
.checkout_section .aboput_your_order .shipping_text {
  padding: 0;
  margin: 0;
}
.checkout_section .aboput_your_order .shipping_text h4 {
  padding: 1.6rem 0;
  margin: 0;
}
.checkout_section .aboput_your_order p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0rem;
}
.checkout_section .check_your_order .order_title {
  padding-bottom: 2.5rem;
}
.checkout_section .check_your_order .order_item {
  background: #212121;
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
}
.checkout_section .check_your_order .order_item:not(:last-child) {
  margin-bottom: 2rem;
}
.checkout_section .check_your_order .order_item .title {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.checkout_section .check_your_order .order_item .title img {
  width: 11rem;
  height: 11rem;
  object-fit: cover;
}
.checkout_section .check_your_order .order_item .title .info {
  display: block;
}
.checkout_section .check_your_order .order_item .title .info h4 {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 144.444%;
}
.checkout_section .check_your_order .order_item .title .info p {
  color: #FFF;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 125%;
}
.checkout_section .check_your_order .order_item .title .info p.color {
  padding: 1.2rem 0 0.6rem;
}
.checkout_section .check_your_order .order_item .order_price {
  padding-top: 1rem;
}
.checkout_section .check_your_order .order_item .order_price p {
  color: #FFF;
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
}
.checkout_section .check_your_order .border_line {
  width: 100%;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.1);
  margin: 2.4rem 0;
}
.checkout_section .check_your_order .cupon_wrap {
  background: #212121;
  padding: 2.5rem 1.6rem;
}
.checkout_section .check_your_order .cupon_wrap .cupon_form {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #140E0E;
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
  display: flex;
  margin-bottom: 2.4rem;
}
.checkout_section .check_your_order .cupon_wrap .cupon_form input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFF;
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  border: none;
}
.checkout_section .check_your_order .cupon_wrap .cupon_form input::placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}
.checkout_section .check_your_order .cupon_wrap .cupon_form input:focus::placeholder {
  opacity: 0;
}
.checkout_section .check_your_order .cupon_wrap .cupon_form button {
  width: 8.6rem;
  flex-shrink: 0;
  background: #84151B;
  border: none;
  color: #FFF;
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
  padding: 1rem;
  cursor: pointer;
}
.checkout_section .check_your_order .cupon_wrap .cupon_form button:hover {
  background: #F92832;
}
.checkout_section .check_your_order .cupon_wrap ul {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.checkout_section .check_your_order .cupon_wrap ul li {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  line-height: 125%;
}
.checkout_section .check_your_order .cupon_wrap ul li .text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.checkout_section .check_your_order .cupon_wrap ul li .amount {
  color: #FFF;
  font-weight: 500;
}
.checkout_section .check_your_order .cupon_wrap .total_amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}
.checkout_section .check_your_order .cupon_wrap .total_amount p {
  color: #FFF;
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
}
.checkout_section .check_your_order .apply {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding-top: 2.4rem;
}
.checkout_section .check_your_order .apply img {
  width: 2rem;
}
.checkout_section .check_your_order .apply p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 142%;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  .checkout_section .check_your_order {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .checkout_section {
    padding-bottom: 5rem;
  }
}

.payment_method {
  padding: 1.6rem 0;
}
.payment_method h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
}

.payment_method_item {
  display: block;
  margin-top: 1.6rem;
}
.payment_method_item .box_body {
  display: flex;
  align-items: center;
  padding: 2rem 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #0E0E0E;
  position: relative;
  border: 1px solid transparent;
  user-select: none;
}
@media (max-width: 767px) {
  .payment_method_item .box_body {
    padding: 1.6rem;
  }
}
.payment_method_item .border_tl {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.payment_method_item .border_tr {
  width: 0.8rem;
  height: 0.5rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.payment_method_item .border_bl {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.payment_method_item .border_br {
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.payment_method_item .coin {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: Cooperative;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.payment_method_item .coin img {
  width: 2.2rem;
}
.payment_method_item .alert {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin: 0;
  margin-right: auto;
  padding: 0;
}
.payment_method_item .radio_mark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  border: 0.4rem solid #F92832;
  display: none;
}
.payment_method_item input {
  display: none;
}
.payment_method_item input:checked ~ .box_body {
  border-color: rgba(240, 39, 49, 0.1);
  background: rgba(255, 26, 26, 0.1);
}
.payment_method_item input:checked ~ .box_body .border_tl {
  border-color: #F02731;
}
.payment_method_item input:checked ~ .box_body .border_tr {
  border-color: #F02731;
}
.payment_method_item input:checked ~ .box_body .border_bl {
  border-color: #F02731;
}
.payment_method_item input:checked ~ .box_body .border_br {
  border-color: #F02731;
}
.payment_method_item input:checked ~ .box_body .radio_mark {
  display: block;
}
.payment_method_item input:disabled ~ .box_body {
  cursor: not-allowed;
}

.order_succesful_section {
  padding: 4rem 0;
  min-height: calc(100vh - 20rem);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.order_succesful_content {
  max-width: 60.6rem;
  width: 100%;
  margin: 0 auto;
}
.order_succesful_content .order_succesful_top {
  text-align: center;
}
.order_succesful_content .order_succesful_top .icon {
  width: 10rem;
}
.order_succesful_content .order_succesful_top .title_md {
  padding: 2rem 0 0.8rem;
}
.order_succesful_content .order_succesful_top .subtitle {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .order_succesful_content .order_succesful_top .icon {
    width: 6rem;
  }
  .order_succesful_content .order_succesful_top .subtitle {
    font-size: 1.4rem;
  }
}
.order_succesful_content .order_succesful_bottom {
  background: #080808;
  padding: 2.4rem;
  padding-top: 0.8rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .order_succesful_content .order_succesful_bottom {
    margin-top: 2.4rem;
  }
}
.order_succesful_content .order_succesful_bottom ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.order_succesful_content .order_succesful_bottom ul li .text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  letter-spacing: 0;
}
.order_succesful_content .order_succesful_bottom ul li .number {
  color: #F5F6FF;
  font-size: 1.6rem;
  line-height: 120%;
}
.order_succesful_content .order_succesful_bottom ul li .number.delivery_time {
  color: #F02731;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group {
  padding-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  background: #F02731;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  padding: 1.2rem 1.5rem;
  position: relative;
  transition: 0.2s all ease;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a.dark {
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #212121;
  box-shadow: none;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a .border_tl {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a .border_tr {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a .border_bl {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a .border_br {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a:hover {
  opacity: 0.9;
}
.order_succesful_content .order_succesful_bottom .succesful_button_group a:hover span {
  transform: scale(1.25);
}

.cart-offcanvas {
  width: 50rem !important;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  z-index: 11111111;
}
@media (max-width: 767px) {
  .cart-offcanvas {
    width: 100% !important;
  }
}
.cart-offcanvas .offcanvas-body {
  background: #0E0E0E;
  padding: 2.4rem;
}
.cart-offcanvas .offcanvas_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cart-offcanvas .offcanvas_header {
    padding-bottom: 2.4rem;
  }
}
.cart-offcanvas .offcanvas_header button {
  padding: 0;
  background: transparent;
  border: none;
}
.cart-offcanvas .offcanvas_header button img {
  width: 3.2rem;
}
.cart-offcanvas .offcanvas_body {
  overflow: auto;
  flex-grow: 1;
  margin-bottom: 2.4rem;
}
.cart-offcanvas .offcanvas_footer {
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.cart-offcanvas .order_summary {
  background: #212121;
  padding: 1.6rem;
}
.cart-offcanvas .order_summary .shipping_and_taxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-offcanvas .order_summary .total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 2rem;
}
.cart-offcanvas .order_summary .total h5 {
  color: #FFF;
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.cart-offcanvas .order_summary .price ul li {
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 2rem;
  line-height: 140%;
  gap: 0.4rem;
}
.cart-offcanvas .order_summary .price ul li .coin {
  width: 2rem;
}
.cart-offcanvas .order_summary .price ul li .devider {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  padding: 0.4rem 0;
}
.cart-offcanvas .proceed_to_payment_btn {
  width: 100%;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #fff;
  display: block;
  text-align: center;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #f02731;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  padding: 1.1rem 1rem;
  position: relative;
  transition: 0.2s all ease;
  margin-top: 2.4rem;
}
.cart-offcanvas .proceed_to_payment_btn .border_tl {
  width: 0.7rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.cart-offcanvas .proceed_to_payment_btn .border_tr {
  width: 0.7rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.cart-offcanvas .proceed_to_payment_btn .border_bl {
  width: 0.7rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.cart-offcanvas .proceed_to_payment_btn .border_br {
  width: 0.7rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.cart-offcanvas .proceed_to_payment_btn:hover span {
  transform: scale(1.25);
}

.cart_product {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.6rem;
  background: #212121;
  padding: 1.6rem;
}
.cart_product:not(:last-child) {
  margin-bottom: 2rem;
}
.cart_product .product_img img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
}
.cart_product .product_content > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6rem;
}
.cart_product .title .title_sm {
  color: #FFF;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.cart_product .title ul li {
  color: #FFF;
  text-align: right;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0;
}
.cart_product .title ul li:not(:last-child) {
  margin-bottom: 0.6rem;
}
.cart_product .price ul li {
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 2rem;
  line-height: 140%;
  gap: 0.4rem;
}
.cart_product .price ul li .coin {
  width: 2rem;
}
.cart_product .price ul li .devider {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  padding: 0.4rem 0;
}
.cart_product .product_actions {
  align-items: flex-end;
  padding-top: 1.6rem;
}
.cart_product .product_actions .remove {
  padding: 0;
  background: transparent;
  border: none;
  color: var(--red, #F02731);
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.cart_product .product_actions .amount_box {
  flex-shrink: 0;
  width: 13.4rem;
  border: 0.5px solid rgba(240, 39, 49, 0.2);
  background: rgba(240, 39, 49, 0.1);
  padding: 0.3rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart_product .product_actions .amount_box button {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.cart_product .product_actions .amount_box button img {
  width: 1.5rem;
}
.cart_product .product_actions .amount_box .counter {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}

.order-modal .modal-dialog {
  max-width: 65rem;
}
.order-modal .modal-content {
  padding: 4rem;
}
.order-modal .title_box {
  display: block;
  border-bottom: 1px solid rgba(240, 39, 49, 0.2);
  padding-bottom: 4rem;
}
.order-modal .title_box .title_xl {
  letter-spacing: 0;
  padding-bottom: 2.4rem;
}
.order-modal .title_box p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}
.order-modal .order_details {
  padding: 4rem 0;
}
.order-modal .order_details h4 {
  color: #FFF;
  font-family: "Cooperative", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding-bottom: 2rem;
}
.order-modal .order_details .order_item {
  display: grid;
  grid-template-columns: 18.8rem 1fr;
  gap: 1.6rem;
  padding: 2rem;
  position: relative;
  background: #0E0E0E;
}
.order-modal .order_details .order_item .border_tl {
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .order_details .order_item .border_tr {
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .order_details .order_item .border_bl {
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .order_details .order_item .border_br {
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .order_details .order_item .order_img img {
  width: 100%;
  height: 18.8rem;
  object-fit: cover;
}
.order-modal .order_details .order_item h5 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 0.6rem;
}
.order-modal .order_details .order_item p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* number of lines to show */
  line-clamp: 6;
  -webkit-box-orient: vertical;
}
.order-modal .payment_btn a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  background: #F02731;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  padding: 1.2rem 1.5rem;
  position: relative;
  transition: 0.2s all ease;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
  margin-top: 2.4rem;
}
.order-modal .payment_btn a .border_tl {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .payment_btn a .border_tr {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .payment_btn a .border_bl {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .payment_btn a .border_br {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order-modal .payment_btn a:hover {
  opacity: 0.9;
}
.order-modal .payment_btn a:hover span {
  transform: scale(1.25);
}
@media (max-width: 767px) {
  .order-modal .modal-dialog {
    max-width: 100%;
  }
  .order-modal .modal-content {
    padding: 2rem;
  }
  .order-modal .title_box {
    padding-bottom: 2rem;
  }
  .order-modal .title_box .title_xl {
    padding-bottom: 0.8rem;
  }
  .order-modal .order_details {
    padding: 2rem 0;
  }
  .order-modal .order_details .order_item {
    grid-template-columns: 10rem 1fr;
  }
  .order-modal .order_details .order_item .order_img img {
    height: 10rem;
  }
  .order-modal .order_details .order_item p {
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
  }
  .order-modal .payment_btn a {
    margin-top: 1.6rem;
  }
}

.order-details-modal .modal-dialog {
  max-width: 96rem;
}
.order-details-modal .modal-content .modal_body {
  padding: 4rem;
}
.order-details-modal .title_xl {
  text-align: center;
  padding-bottom: 3.2rem;
}
.order-details-modal .order_tracking {
  padding: 2rem;
  background: #1C1717;
}
.order-details-modal .order_tracking.mt_20 {
  margin-top: 2rem;
}
.order-details-modal .order_tracking .top_bar {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.order-details-modal .order_tracking .order_num {
  color: #F5F6FF;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 1.6rem;
}
.order-details-modal .order_tracking .date {
  color: #D0D5DD;
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 155.556%;
}
.order-details-modal .order_tracking .badge {
  color: #D0D5DD;
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 155.556%;
  border-radius: 6rem;
  padding: 0.4rem 1rem;
  border: 0.6px solid rgba(222, 87, 9, 0.0901960784);
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.16) 3.38%, rgba(228, 105, 18, 0.16) 22.95%, rgba(246, 153, 41, 0.16) 63.01%, rgba(253, 172, 51, 0.16) 77.92%);
}
.order-details-modal .progress_bar {
  display: flex;
  justify-content: space-between;
  padding-top: 3.2rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.order-details-modal .progress_bar > div {
  width: 100%;
  text-align: center;
}
.order-details-modal .progress_bar > div .title_sm {
  color: #D0D5DD;
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 155.556%;
  letter-spacing: 0;
}
.order-details-modal .progress_bar > div .line {
  width: 100%;
  height: 0.2rem;
  background: #D0D5DD;
  margin: 3rem 0;
  position: relative;
}
.order-details-modal .progress_bar > div .line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 100%;
  border: 0.3rem solid #1C1717;
  background: #D0D5DD;
}
.order-details-modal .progress_bar > div .time_date {
  color: #667085;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.order-details-modal .progress_bar > div.active .title_sm {
  color: #37AE48;
}
.order-details-modal .progress_bar > div.active .line::before {
  background: #37AE48;
  border-color: #37AE48;
}
.order-details-modal .progress_bar > div.active .time_date {
  color: rgba(255, 255, 255, 0.7);
}
.order-details-modal .progress_bar > div:first-child {
  text-align: right;
}
.order-details-modal .progress_bar > div:first-child .line::before {
  right: 0;
  transform: translate(0%, -50%);
}
.order-details-modal .progress_bar > div:last-child {
  text-align: left;
}
.order-details-modal .progress_bar > div:last-child .line::before {
  left: 0;
  transform: translate(0%, -50%);
}
.order-details-modal .product {
  display: grid;
  grid-template-columns: 10rem auto auto;
  align-items: center;
  gap: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 3rem;
}
.order-details-modal .product .product_img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}
.order-details-modal .product .title_sm {
  letter-spacing: 0;
  padding-bottom: 0.8rem;
}
.order-details-modal .product p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  line-height: 150%;
}
.order-details-modal .product .coin {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.order-details-modal .product .coin img {
  width: 2.4rem;
}
.order-details-modal .action_butotn {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  background: #F02731;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.6rem;
  align-items: center;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1.2rem 5rem;
  position: relative;
  transition: 0.2s all ease;
  box-shadow: 0rem 0.2rem 1.7rem 0rem rgba(249, 204, 97, 0.54) inset;
  margin-top: 2.6rem;
}
.order-details-modal .action_butotn img {
  width: 2rem;
}
.order-details-modal .action_butotn .border_tl {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order-details-modal .action_butotn .border_tr {
  width: 0.9rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.order-details-modal .action_butotn .border_bl {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order-details-modal .action_butotn .border_br {
  width: 0.9rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.order-details-modal .action_butotn:hover {
  opacity: 0.9;
}
.order-details-modal .action_butotn:hover span {
  transform: scale(1.25);
}
@media (max-width: 991px) {
  .order-details-modal .modal-dialog {
    max-width: 72rem;
  }
}
@media (max-width: 767px) {
  .order-details-modal .modal-content .modal_body {
    padding: 2rem;
  }
  .order-details-modal .title_xl {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .order-details-modal .order_tracking .badge {
    font-size: 1.4rem;
  }
  .order-details-modal .order_tracking .order_num {
    padding-bottom: 0.8rem;
    font-size: 1.8rem;
  }
  .order-details-modal .order_tracking .date {
    font-size: 1.4rem;
  }
  .order-details-modal .progress_bar {
    width: 100%;
    flex-direction: column;
    padding-top: 2.4rem;
  }
  .order-details-modal .progress_bar > div {
    text-align: right !important;
    padding-bottom: 2rem;
    padding-right: 2rem;
    position: relative;
  }
  .order-details-modal .progress_bar > div .line {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, 0);
    width: 0.2rem;
    height: 100%;
    margin: 0;
  }
  .order-details-modal .progress_bar > div .line::before {
    left: unset !important;
    right: -1.1rem !important;
    top: 0 !important;
    transform: translate(0, 0) !important;
  }
  .order-details-modal .progress_bar > div:last-child .line {
    background: transparent;
  }
  .order-details-modal .product {
    grid-template-columns: 8rem auto auto;
  }
  .order-details-modal .product .product_img {
    height: 8rem;
  }
  .order-details-modal .product .title_sm {
    font-size: 1.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-bottom: 0;
    margin-bottom: 0.8rem;
  }
  .order-details-modal .product .coin {
    font-size: 1.8rem;
  }
  .order-details-modal .product .coin img {
    width: 1.8rem;
  }
}

.hero_premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10.6rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .hero_premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.hero_premium .premium_heroTitle {
  max-width: 52rem;
  width: 100%;
}
@media (max-width: 991px) {
  .hero_premium .premium_heroTitle {
    max-width: 46rem;
  }
}
.hero_premium .premium_heroTitle h1 span {
  color: #F02731;
}
.hero_premium .premium_heroTitle p {
  max-width: 40.7rem;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero_premium .premium_heroTitle {
    max-width: 35rem;
  }
  .hero_premium .premium_heroTitle h1 {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 575px) {
  .hero_premium .premium_heroTitle h1 {
    font-size: 2.8rem;
  }
}
.hero_premium .premium_heroText {
  max-width: 32.4rem;
  flex-shrink: 0;
}
.hero_premium .premium_heroText h3 {
  text-align: left;
  margin-bottom: 4.8rem;
  margin-left: 0.5rem;
}
.hero_premium .premium_heroText h3 span {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero_premium .premium_heroText h3 strong {
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .hero_premium .premium_heroText h3 {
    text-align: right;
    margin-bottom: 3rem;
  }
  .hero_premium .premium_heroText h3 span {
    font-size: 3rem;
  }
  .hero_premium .premium_heroText h3 strong {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .hero_premium .premium_heroText h3 {
    margin-bottom: 2.4rem;
  }
  .hero_premium .premium_heroText h3 span {
    font-size: 2.4rem;
  }
  .hero_premium .premium_heroText h3 strong {
    font-size: 2.8rem;
  }
}

.premiumgame_section .preium_titlev2 h2 {
  font-size: 4rem;
}
@media (max-width: 991px) {
  .premiumgame_section .preium_titlev2 h2 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .premiumgame_section .preium_titlev2 h2 {
    font-size: 2.25rem;
  }
}
.premiumgame_section .preium_titlev2 p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}

.premiumgame_wraper {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.2rem 3.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .premiumgame_wraper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .premiumgame_wraper {
    padding: 2.5rem 2rem;
  }
}
.premiumgame_wraper .border_tl {
  width: 1.1rem;
  height: 1rem;
  border-top: 1px solid #D3242D;
  border-left: 1px solid #D3242D;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premiumgame_wraper .border_tr {
  width: 1.1rem;
  height: 1rem;
  border-top: 1px solid #D3242D;
  border-right: 1px solid #D3242D;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.premiumgame_wraper .border_bl {
  width: 1.1rem;
  height: 1rem;
  border-bottom: 1px solid #D3242D;
  border-left: 1px solid #D3242D;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premiumgame_wraper .border_br {
  width: 1.1rem;
  height: 1rem;
  border-bottom: 1px solid #D3242D;
  border-right: 1px solid #D3242D;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.premiumgame_wraper .premiumgame_item {
  max-width: 47.2rem;
  width: 100%;
}
.premiumgame_wraper .premiumgame_item img {
  width: 100%;
}
@media (max-width: 991px) {
  .premiumgame_wraper .premiumgame_item {
    max-width: 100%;
  }
}
.premiumgame_wraper .premiumgame_text {
  max-width: 47.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .premiumgame_wraper .premiumgame_text {
    max-width: 100%;
  }
}
.premiumgame_wraper .premiumgame_text h4 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #F5F5F5;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .premiumgame_wraper .premiumgame_text h4 {
    font-size: 2.6rem;
  }
}
.premiumgame_wraper .premiumgame_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.06rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .premiumgame_wraper .premiumgame_text p {
    font-size: 1.6rem;
  }
}
.premiumgame_wraper .premiumgame_text ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.premiumgame_wraper .premiumgame_text ul li a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #F02731;
  background: rgba(240, 39, 49, 0.1);
  display: inline-block;
  padding: 0.3rem 0.4rem;
}
@media (max-width: 767px) {
  .premiumgame_wraper .premiumgame_text ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 991px) {
  .premiumgame_wraper.premiumgame_wraper_v2 {
    flex-direction: column;
  }
}

.compare_section .table_statusWrap {
  max-width: 60rem;
  width: 100%;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .compare_section .table_statusWrap {
    margin-right: 0;
  }
}
.compare_section .table_statusWrap .table_statusBox {
  max-width: 30rem;
  width: 100%;
  background: #212121;
  padding: 1.2rem 1.4rem;
  min-height: 10.2rem;
  text-align: center;
}
.compare_section .table_statusWrap .table_statusBox h4 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
  text-align: center;
  margin-bottom: 1rem;
}
.compare_section .table_statusWrap .table_statusBox a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.048rem;
  color: rgba(255, 255, 255, 0.7);
  background: #191919;
  border: 1px solid #2B2B2B;
  display: block;
  text-align: center;
  padding: 0.5rem 2rem;
}
.compare_section .table_statusWrap .table_statusBox_v2 {
  background: #F02731;
  padding: 1rem 1rem;
}
.compare_section .table_statusWrap .table_statusBox_v2 a {
  color: #FFF;
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.compare_section .table_statusWrap .table_statusBox_v2 h3 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .compare_section .table_statusWrap .table_statusBox_v2 h3 {
    font-size: 2rem;
  }
}
.compare_section .table_statusWrap .table_statusBox_v2 h3 span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.048rem;
  color: rgba(255, 255, 255, 0.7);
}
.compare_section .compare_table table {
  width: 100%;
}
@media (max-width: 991px) {
  .compare_section .compare_table table {
    width: 110rem;
  }
}
.compare_section .compare_table table thead .table_heading th {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
  text-align: center;
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.8rem 2.4rem;
  text-align: center;
}
.compare_section .compare_table table thead .table_heading th:first-child {
  text-align: right;
}
.compare_section .compare_table table thead th {
  width: 30rem;
}
.compare_section .compare_table table thead th:first-child {
  width: 55.5rem;
}
.compare_section .compare_table table tbody td {
  background: #0E0E0E;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.2rem 2.4rem;
  text-align: center;
  width: 30rem;
}
.compare_section .compare_table table tbody td:first-child {
  width: 55.5rem;
  text-align: right;
}
.compare_section .compare_table table tbody td img {
  width: 2.4rem;
  margin-bottom: 0.4rem;
}
.compare_section .compare_table table tbody td p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(245, 246, 255, 0.8);
  max-width: 43rem;
  width: 100%;
}
.compare_section .compare_table table tbody td .compare_text h4 {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  margin-bottom: 1.2rem;
}
.compare_section .compare_table table tbody td .compare_text h4 span {
  color: #868686;
}
.compare_section .compare_table table tbody td .compare_text h4 span.text_color1 {
  color: #3266F6;
}
.compare_section .compare_table table tbody td .compare_text h4 span.text_color2 {
  color: #F02731;
}
.compare_section .compare_table table tbody td .compare_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(245, 246, 255, 0.8);
  max-width: 43rem;
  width: 100%;
}
@media (max-width: 991px) {
  .compare_section .compare_table {
    overflow: auto;
    padding-bottom: 0.6rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #D3222A #1D1D1D;
  }
  .compare_section .compare_table::-webkit-scrollbar {
    width: 0.8rem;
    border-radius: 2rem;
  }
  .compare_section .compare_table::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 2rem;
  }
  .compare_section .compare_table::-webkit-scrollbar-thumb {
    background: #D3222A;
    border-radius: 2rem;
  }
}
.compare_section .unlock_box {
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.4) 3.38%, rgba(228, 105, 18, 0.4) 22.95%, rgba(246, 153, 41, 0.4) 63.01%, rgba(253, 172, 51, 0.4) 77.92%);
  padding: 2.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4.5rem;
}
@media (max-width: 767px) {
  .compare_section .unlock_box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.1rem;
    padding: 2rem 2rem;
  }
}
.compare_section .unlock_box p {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  color: #F5F6FF;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.compare_section .unlock_box p img {
  width: 4.4rem;
}
@media (max-width: 991px) {
  .compare_section .unlock_box p {
    font-size: 2rem;
    gap: 1rem;
  }
  .compare_section .unlock_box p img {
    width: 4rem;
  }
}
@media (max-width: 767px) {
  .compare_section .unlock_box p {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.compare_section .unlock_box a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
  width: 14rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  background: #DA232D;
  box-shadow: 0rem 0.2rem 1.77rem 0rem rgba(249, 204, 97, 0.54) inset;
  position: relative;
  transition: 0.2s all ease;
}
.compare_section .unlock_box a img {
  width: 2rem;
}
.compare_section .unlock_box a .border_tl {
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.compare_section .unlock_box a .border_tr {
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.compare_section .unlock_box a .border_bl {
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.compare_section .unlock_box a .border_br {
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.compare_section .unlock_box a:hover {
  opacity: 0.85;
}

.team_section_adminUser {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .team_section_adminUser {
    padding-top: 2rem;
  }
  .team_section_adminUser.team_section_adminUser_v2 {
    padding-top: 0.5rem;
  }
  .team_section_adminUser.team_section_adminUser_v2 .team_bannerWrap {
    padding-top: 6rem;
  }
}

.team_bannerWrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .team_bannerWrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
.team_bannerWrap .edit_btn {
  position: absolute;
  top: 0;
  left: 0;
}
.team_bannerWrap .edit_btn a {
  width: 15.4rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  background: #F02731;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.team_bannerWrap .edit_btn a img {
  width: 2rem;
}
@media (max-width: 767px) {
  .team_bannerWrap .edit_btn a {
    width: 14rem;
    height: 3.5rem;
  }
}
.team_bannerWrap .edit_btn a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .edit_btn a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .edit_btn a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .edit_btn a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .edit_btn a:hover span {
  transform: scale(1.25);
}
.team_bannerWrap .team_banner_items {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 575px) {
  .team_bannerWrap .team_banner_items {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
}
.team_bannerWrap .team_banner_items .team_banner_logo {
  flex-shrink: 0;
}
.team_bannerWrap .team_banner_items .team_banner_logo img {
  width: 17.6rem;
}
@media (max-width: 767px) {
  .team_bannerWrap .team_banner_items .team_banner_logo img {
    width: 16rem;
  }
}
@media (max-width: 575px) {
  .team_bannerWrap .team_banner_items .team_banner_logo img {
    width: 14rem;
  }
}
.team_bannerWrap .team_banner_items .team_banner_text h3 {
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  color: #F5F5F5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.team_bannerWrap .team_banner_items .team_banner_text h3 img {
  width: 6.1rem;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .team_bannerWrap .team_banner_items .team_banner_text h3 {
    font-size: 3.2rem;
  }
  .team_bannerWrap .team_banner_items .team_banner_text h3 img {
    width: 5rem;
  }
}
@media (max-width: 575px) {
  .team_bannerWrap .team_banner_items .team_banner_text h3 {
    justify-content: center;
  }
}
.team_bannerWrap .team_banner_items .team_banner_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0rem;
}
.team_bannerWrap .team_banner_items .team_banner_text p button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.team_bannerWrap .team_banner_items .team_banner_text p button img {
  width: 2.2rem;
}
@media (max-width: 575px) {
  .team_bannerWrap .team_banner_items .team_banner_text p {
    justify-content: center;
  }
}
.team_bannerWrap .team_banner_items .team_banner_text h6 {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
.team_bannerWrap .team_banner_items .team_banner_text h6 strong {
  font-weight: 500;
  color: #FFF;
}
@media (max-width: 575px) {
  .team_bannerWrap .team_banner_items .team_banner_text h6 {
    text-align: center;
  }
}
.team_bannerWrap .team_banner_items .team_banner_text ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.4rem;
}
@media (max-width: 575px) {
  .team_bannerWrap .team_banner_items .team_banner_text ul {
    justify-content: center;
  }
}
.team_bannerWrap .team_banner_items .team_banner_text ul a {
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #281415;
  border: 0.6px solid rgba(240, 39, 49, 0.3);
  transition: 0.2s all ease;
}
.team_bannerWrap .team_banner_items .team_banner_text ul a img {
  width: 1.6rem;
}
.team_bannerWrap .team_banner_items .team_banner_text ul a:hover {
  background: rgba(240, 39, 49, 0.3);
}
.team_bannerWrap .team_banner_boxWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .team_bannerWrap .team_banner_boxWrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .team_bannerWrap .team_banner_boxWrap {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box {
  background-image: url("../img/team_banner_box-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1.6rem 1.2rem;
  position: relative;
  text-align: center;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box .border_tl {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #D9232C;
  border-left: 1px solid #D9232C;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box .border_tr {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #D9232C;
  border-right: 1px solid #D9232C;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box .border_bl {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #D9232C;
  border-left: 1px solid #D9232C;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box .border_br {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #D9232C;
  border-right: 1px solid #D9232C;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #E0CDCE;
  text-align: center;
  margin-bottom: 0.2rem;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box h4 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.team_bannerWrap .team_banner_boxWrap .team_banner_box h4 img {
  width: 2.2rem;
}

.team_banner_joinLinks {
  padding-top: 6rem;
}
@media (max-width: 991px) {
  .team_banner_joinLinks {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.team_banner_joinLinks .invite_text {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.team_banner_joinLinks .invite_text p {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.8);
}
.team_banner_joinLinks .invite_text p span {
  color: #37AE48;
}
@media (max-width: 767px) {
  .team_banner_joinLinks .invite_text p {
    font-size: 2rem;
  }
}
.team_banner_joinLinks .invite_text a {
  width: 15.4rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  background: #F02731;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.team_banner_joinLinks .invite_text a img {
  width: 2rem;
}
@media (max-width: 767px) {
  .team_banner_joinLinks .invite_text a {
    width: 14rem;
    height: 3.5rem;
  }
}
.team_banner_joinLinks .invite_text a .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_banner_joinLinks .invite_text a .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_banner_joinLinks .invite_text a .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_banner_joinLinks .invite_text a .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_banner_joinLinks .invite_text a:hover span {
  transform: scale(1.25);
}

.team_adminUser_row {
  margin-bottom: 4rem;
}
.team_adminUser_row .team_adminUser_title {
  margin-bottom: 2.4rem;
}
.team_adminUser_row .team_adminUser_title h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  text-align: right;
}
@media (max-width: 767px) {
  .team_adminUser_row .team_adminUser_title h3 {
    font-size: 2.5rem;
  }
}
.team_adminUser_row .team_adminUser_games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 991px) {
  .team_adminUser_row .team_adminUser_games {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .team_adminUser_row .team_adminUser_games {
    grid-template-columns: 1fr;
  }
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.4rem 2rem;
  position: relative;
  text-align: center;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .corner .border_tl {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #D9232C;
  border-left: 1px solid #D9232C;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .corner .border_tr {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #D9232C;
  border-right: 1px solid #D9232C;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .corner .border_bl {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #D9232C;
  border-left: 1px solid #D9232C;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .corner .border_br {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #D9232C;
  border-right: 1px solid #D9232C;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .badge {
  width: 6.4rem;
  height: 2.4rem;
  line-height: 1.3rem;
  display: inline-block;
  background-image: url("../img/games-badge-bgshape.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .badge span {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  color: #E0CDCE;
  text-align: center;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox p {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0rem 0.8rem;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox p span {
  width: 1px;
  height: 1.2rem;
  background: #FF1A1A;
  display: block;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .game_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .game_item h4 {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .game_item h4 img {
  width: 3.8rem;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox .game_item h3 {
  -webkit-text-stroke-width: 0.04rem;
  -webkit-text-stroke-color: #FFF;
  font-family: Cooperative;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.072rem;
  color: #881616;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox a {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  text-align: center;
  width: 9rem;
  height: 2.4rem;
  background: #080808;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox a:hover {
  background: #7B2428;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox a .border_tl {
  width: 0.6rem;
  height: 0.3rem;
  border-top: 1px solid #F4676E;
  border-left: 1px solid #F4676E;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox a .border_tr {
  width: 0.6rem;
  height: 0.3rem;
  border-top: 1px solid #F4676E;
  border-right: 1px solid #F4676E;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox a .border_bl {
  width: 0.6rem;
  height: 0.3rem;
  border-bottom: 1px solid #F4676E;
  border-left: 1px solid #F4676E;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games .team_adminUser_gameBox a .border_br {
  width: 0.6rem;
  height: 0.3rem;
  border-bottom: 1px solid #F4676E;
  border-right: 1px solid #F4676E;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_games_v2 .team_adminUser_gameBox {
  padding: 4rem 1.5rem 2.4rem;
}
.team_adminUser_row .team_adminUser_games_v2 .team_adminUser_gameBox .game_item {
  gap: 0.5rem;
}
.team_adminUser_row .team_adminUser_games_v2 .team_adminUser_gameBox .game_item h4 {
  gap: 0.5rem;
}
.team_adminUser_row .team_adminUser_players {
  position: relative;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.2rem;
  position: relative;
  margin: 0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .border_tl {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .border_tr {
  width: 0.6rem;
  height: 0.5rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .border_bl {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .border_br {
  width: 0.6rem;
  height: 0.5rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card img {
  width: 100%;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .premium_badge {
  width: 3rem;
  position: absolute;
  right: 1.5rem;
  top: 0.1rem;
  transform: initial !important;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .member {
  width: 3rem;
  transform: initial !important;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .card_text {
  width: 100%;
  background: linear-gradient(180deg, rgba(161, 27, 27, 0) 0%, rgba(59, 10, 10, 0.9) 100%);
  padding: 1.2rem 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .card_text h4 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
  text-align: center;
  margin-bottom: 0.6rem;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card .card_text p {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.team_adminUser_row .team_adminUser_players .adminUser_players_card:hover {
  opacity: 0.85;
}
.team_adminUser_row .team_adminUser_players .button-next {
  width: 3.2rem;
  position: absolute;
  left: 0;
  top: -5.8rem;
}
.team_adminUser_row .team_adminUser_players .button-next img {
  width: 100%;
}
.team_adminUser_row .team_adminUser_players .button-prev {
  width: 3.2rem;
  position: absolute;
  left: 6rem;
  top: -5.8rem;
}
.team_adminUser_row .team_adminUser_players .button-prev img {
  width: 100%;
}
.team_adminUser_row .team_adminUser_tournaments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 991px) {
  .team_adminUser_row .team_adminUser_tournaments {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .team_adminUser_row .team_adminUser_tournaments {
    grid-template-columns: 1fr;
  }
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card {
  background: #150B0B;
  padding: 1.6rem 1.6rem;
  box-shadow: -4.5rem -1.4rem 5.44rem 0 rgba(255, 26, 26, 0.12) inset;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .border_tl {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .border_tr {
  width: 1rem;
  height: 0.5rem;
  border-top: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .border_bl {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #F02731;
  border-left: 1px solid #F02731;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .border_br {
  width: 1rem;
  height: 0.5rem;
  border-bottom: 1px solid #F02731;
  border-right: 1px solid #F02731;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .tournaments_card_text h4 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  margin-bottom: 0.4rem;
  direction: ltr;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .tournaments_card_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.042rem;
  color: rgba(255, 255, 255, 0.7);
  direction: ltr;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .tournaments_card_item {
  width: 10rem;
  border: 1px solid #3A1212;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card .tournaments_card_item img {
  width: 100%;
}
.team_adminUser_row .team_adminUser_tournaments .adminUser_tournaments_card:hover span {
  transform: scale(1.3);
}
.team_adminUser_row .team_adminUser_favorite {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .team_adminUser_row .team_adminUser_favorite {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .team_adminUser_row .team_adminUser_favorite {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item {
  border: 1px solid rgba(161, 27, 27, 0.3);
  padding: 0.2rem 0.2rem;
  position: relative;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item .border_tl {
  width: 0.3rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item .border_tr {
  width: 0.3rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item .border_bl {
  width: 0.3rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item .border_br {
  width: 0.3rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item img {
  width: 100%;
  transition: 0.2s all ease;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_item:hover img {
  transform: scale(0.95);
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_text {
  padding-top: 1.6rem;
}
.team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_text p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
}
@media (max-width: 991px) {
  .team_adminUser_row .team_adminUser_favorite .adminUser_favorite_card .adminUser_favorite_text p {
    font-size: 1.4rem;
  }
}

.admin_gameCategory {
  display: block;
}
.admin_gameCategory label {
  font-family: "Cooperative", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  letter-spacing: initial;
  color: #FFF;
  display: block;
  margin-bottom: 0.8rem;
}
.admin_gameCategory .custom_select {
  width: 18rem;
}
.admin_gameCategory .custom_select .select_btn .selected {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.admin_gameCategory .custom_select .select_btn .selected img {
  width: 1.4rem;
}
.admin_gameCategory .custom_select .select_dropdown li img {
  width: 1.5rem;
}

.cup_icon img {
  width: 2rem;
}

.admin_aboutBox {
  background: #140E0E;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 2rem;
  margin-top: 4.2rem;
}
.admin_aboutBox h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #F5F6FF;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .admin_aboutBox h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.admin_aboutBox p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .admin_aboutBox p {
    font-size: 1.4rem;
  }
}
.admin_aboutBox ul li {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.admin_aboutBox ul li:last-child {
  margin-bottom: 0;
}
.admin_aboutBox ul li img {
  width: 2.4rem;
}
.admin_aboutBox ul li a {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .admin_aboutBox ul li {
    font-size: 1.5rem;
  }
}

.blog_section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 6rem;
}
@media (max-width: 991px) {
  .blog_section {
    flex-direction: column;
    padding-top: 4rem;
  }
}
.blog_section .blog_post {
  max-width: 35.4rem;
  width: 100%;
}
@media (max-width: 991px) {
  .blog_section .blog_post {
    max-width: 100%;
  }
}
.blog_section .blog_post .post_title {
  margin-bottom: 2.4rem;
}
.blog_section .blog_post .post_title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
}
.blog_section .blog_post .post_card {
  background: #080808;
  position: relative;
  margin-bottom: 1.6rem;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_card:last-child {
  margin-bottom: 0;
}
.blog_section .blog_post .post_card .border_tl {
  width: 1.3rem;
  height: 1.3rem;
  border-top: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_card .border_tr {
  width: 1.3rem;
  height: 1.3rem;
  border-top: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_card .border_bl {
  width: 1.3rem;
  height: 1.3rem;
  border-bottom: 1px solid #651418;
  border-left: 1px solid #651418;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_card .border_br {
  width: 1.3rem;
  height: 1.3rem;
  border-bottom: 1px solid #651418;
  border-right: 1px solid #651418;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_card a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 1.8rem;
}
.blog_section .blog_post .post_card:hover {
  background: #3B1315;
}
.blog_section .blog_post .post_card .post_thumb {
  width: 8rem;
  flex-shrink: 0;
}
.blog_section .blog_post .post_card .post_thumb img {
  width: 100%;
  border-radius: 1rem;
}
.blog_section .blog_post .post_card .post_text h4 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}
.blog_section .blog_post .post_card .post_text ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog_section .blog_post .post_card .post_text ul li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #B5B5B5;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.blog_section .blog_post .post_card .post_text ul li img {
  width: 1.6rem;
}
.blog_section .blog_post .post_image {
  margin-top: 6rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog_section .blog_post .post_image {
    margin-top: 4rem;
  }
}
.blog_section .blog_post .post_image img {
  width: 100%;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_image img:hover {
  transform: scale(1.1);
}
.blog_section .blog_post .post_shareBox {
  background: #3B1315;
  padding: 1.8rem 1.8rem;
  margin-top: 2.4rem;
}
.blog_section .blog_post .post_shareBox h4 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}
.blog_section .blog_post .post_shareBox .post_shareItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_section .blog_post .post_shareBox .post_shareItem img {
  width: 2.4rem;
  transition: 0.2s all ease;
}
.blog_section .blog_post .post_shareBox .post_shareItem img:hover {
  transform: scale(1.2);
}
.blog_section .blog_post .post_shareBox .post_shareItem span {
  width: 1px;
  height: 2rem;
  display: block;
  background: #624244;
}
.blog_section .blog_details {
  max-width: 76.1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .blog_section .blog_details {
    max-width: 100%;
  }
}
.blog_section .blog_details .post_breadCumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .blog_section .blog_details .post_breadCumb {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}
.blog_section .blog_details .post_breadCumb ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.blog_section .blog_details .post_breadCumb ul li img {
  width: 2rem;
}
.blog_section .blog_details .post_breadCumb ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: 0.2s all ease;
}
.blog_section .blog_details .post_breadCumb ul li a img {
  width: 1.6rem;
}
.blog_section .blog_details .post_breadCumb ul li a:hover, .blog_section .blog_details .post_breadCumb ul li a.active {
  color: #F02731;
}
.blog_section .blog_details .post_breadCumb .time_text {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.blog_section .blog_details .post_breadCumb .time_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 155%;
  color: #B7B7B7;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.blog_section .blog_details .post_breadCumb .time_text p img {
  width: 2.4rem;
}
.blog_section .blog_details .blog_details_title {
  padding-top: 3.2rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .blog_section .blog_details .blog_details_title {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}
.blog_section .blog_details .blog_details_title h2 {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 115%;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .blog_section .blog_details .blog_details_title h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .blog_section .blog_details .blog_details_title h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}
.blog_section .blog_details .blog_details_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.03rem;
  color: rgba(255, 255, 255, 0.8);
}
.blog_section .blog_details .calender_title {
  position: relative;
}
.blog_section .blog_details .calender_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: initial;
  color: #B7B7B7;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.blog_section .blog_details .calender_title p img {
  width: 2.4rem;
}
.blog_section .blog_details .calender_title::after {
  content: "";
  width: calc(100% - 18rem);
  height: 0.5rem;
  display: block;
  border-top: 1px solid #68181C;
  border-bottom: 1px solid #68181C;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blog_section .blog_details .post_banner {
  margin: 4rem 0rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog_section .blog_details .post_banner {
    margin: 2.6rem 0rem;
  }
}
.blog_section .blog_details .post_banner img {
  width: 100%;
  transition: 0.2s all ease;
}
.blog_section .blog_details .post_banner img:hover {
  transform: scale(1.1);
}
.blog_section .blog_details .postDetails_text {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .blog_section .blog_details .postDetails_text {
    margin-bottom: 3rem;
  }
}
.blog_section .blog_details .postDetails_text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .blog_section .blog_details .postDetails_text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.blog_section .blog_details .postDetails_text h3::before {
  content: "";
  width: 0.8rem;
  height: 2rem;
  display: block;
  background: #DA232D;
  flex-shrink: 0;
}
.blog_section .blog_details .postDetails_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.03rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.6rem;
}
.blog_section .blog_details .postDetails_text p:last-child {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .blog_section .blog_details .postDetails_text p {
    font-size: 1.4rem;
    letter-spacing: initial;
  }
}

.message_section {
  padding: 10rem 0rem 8rem;
}
@media (max-width: 991px) {
  .message_section {
    padding: 8rem 0rem 6rem;
  }
}
.message_section .card_body .message_cardList {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.message_section .card_body .message_cardList li {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: initial;
  color: #B7B7B7;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.message_section .card_body .message_cardList li img {
  width: 2.4rem;
}
.message_section .card_body .message_cardList li::after {
  display: none;
}

.stream_details .row {
  --bs-gutter-y: 3.2rem;
}

.stream_card .post_thumb img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
}

.stream_img img {
  width: 100%;
  height: 36rem;
  object-fit: cover;
}
@media (max-width: 991px) {
  .stream_img img {
    height: 100%;
  }
}

.strteam_banner {
  position: relative;
}
.strteam_banner .card_img .img {
  height: 100%;
}
.strteam_banner .stream_bodyText {
  width: 100%;
  padding: 3rem 3rem;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, #000);
}
@media (max-width: 767px) {
  .strteam_banner .stream_bodyText {
    padding: 0;
    position: static;
  }
}

.main_wrapper .streamDetails_maincontent {
  width: 100%;
  margin-right: 0;
}

.streamDetails_fluid {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (min-width: 1200px) and (max-width: 1449px) {
  .streamDetails_fluid {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .streamDetails_fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 991px) {
  .streamDetails_fluid {
    max-width: 74rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .streamDetails_fluid {
    max-width: 55rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.streamDetails_section {
  padding-top: 1rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .streamDetails_section {
    flex-direction: column;
    padding-top: 0;
  }
}
.streamDetails_section .streamDetails_right {
  background: linear-gradient(0deg, #121212 0%, #121212 100%), #FFF;
  max-width: 25.6rem;
  width: 100%;
  min-height: 100vh;
  padding: 2rem 2rem;
  flex-shrink: 0;
  position: sticky;
  top: 10rem;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .streamDetails_section .streamDetails_right {
    max-width: 26rem;
    height: 100vh;
    min-height: 100vh;
    position: fixed;
    top: 9rem;
    left: -100%;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 1024;
  }
  .streamDetails_section .streamDetails_right.show {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  .streamDetails_section .streamDetails_right.show .streamDetails_title .filter_collapse {
    transform: rotate(180deg);
  }
}
.streamDetails_section .streamDetails_right .channel_wraper {
  padding-top: 3.2rem;
}
.streamDetails_section .streamDetails_right .channel_wraper h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: initial;
  line-height: normal;
  color: #FFF;
  margin: 0;
}
.streamDetails_section .streamDetails_right .channel_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}
.streamDetails_section .streamDetails_right .channel_item .channel_details {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.streamDetails_section .streamDetails_right .channel_item .channel_details img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.streamDetails_section .streamDetails_right .channel_item .channel_details .channel_text h5 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.032rem;
  color: #FFF;
  margin-bottom: 0.4rem;
}
.streamDetails_section .streamDetails_right .channel_item .channel_details .channel_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.028rem;
  color: #FFF;
  opacity: 0.7;
}
.streamDetails_section .streamDetails_right .channel_item .channel_viewer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.streamDetails_section .streamDetails_right .channel_item .channel_viewer span {
  width: 0.6rem;
  height: 0.6rem;
  display: block;
  background: #F02731;
  border-radius: 50%;
}
.streamDetails_section .streamDetails_right .channel_item .channel_viewer p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.028rem;
  color: #FFF;
}
.streamDetails_section .streamDetails_right .more_btn {
  padding-top: 2.4rem;
  text-align: left;
}
.streamDetails_section .streamDetails_right .more_btn a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #F02731;
  text-decoration: underline;
}
.streamDetails_section .streamDetails_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.streamDetails_section .streamDetails_title h3 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #FFF;
}
.streamDetails_section .streamDetails_title img {
  width: 1.8rem;
}
.streamDetails_section .streamDetails_middle {
  width: 100%;
}
.streamDetails_section .streamDetails_middle .stream_video img {
  width: 100%;
}
@media (max-width: 991px) {
  .streamDetails_section .streamDetails_middle .stream_video {
    margin-top: 2rem;
  }
}
.streamDetails_section .streamDetails_middle .video_details {
  padding-top: 3.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.streamDetails_section .streamDetails_middle .video_details .video_profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.streamDetails_section .streamDetails_middle .video_details .video_profile .live {
  position: relative;
}
.streamDetails_section .streamDetails_middle .video_details .video_profile .live img {
  width: 6rem;
  height: 6rem;
  border: 0.2rem solid #EA0400;
  border-radius: 50%;
}
.streamDetails_section .streamDetails_middle .video_details .video_profile .live span {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  background: #EA0400;
  width: 4rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.4rem;
}
.streamDetails_section .streamDetails_middle .video_details .video_profile .live_text h4 {
  font-family: "Cooperative", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: -0.036rem;
  color: #FFF;
  margin-bottom: 0.8rem;
}
.streamDetails_section .streamDetails_middle .video_details .video_profile .live_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.032rem;
  color: #FFF;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a {
  width: 11rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  position: relative;
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F9F9FF;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #F02731;
  box-shadow: 0 0.3rem 1rem 0 rgba(249, 204, 97, 0.45) inset;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a img {
  width: 1.8rem;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a .border_tl {
  width: 0.8rem;
  height: 0.45rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a .border_tr {
  width: 0.8rem;
  height: 0.45rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a .border_bl {
  width: 0.8rem;
  height: 0.45rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a .border_br {
  width: 0.8rem;
  height: 0.45rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_middle .video_details .follow_btn a:hover span {
  transform: scale(1.25);
}
@media (max-width: 767px) {
  .streamDetails_section .streamDetails_middle .video_details {
    flex-direction: column;
    gap: 2rem;
  }
}
.streamDetails_section .streamDetails_middle .live_linkWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .streamDetails_section .streamDetails_middle .live_linkWrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.streamDetails_section .streamDetails_middle .live_linkWrap ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.streamDetails_section .streamDetails_middle .live_linkWrap ul li a {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.028rem;
  color: #BABABA;
  letter-spacing: initial;
  background: #191919;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_middle .live_linkWrap ul li a:hover, .streamDetails_section .streamDetails_middle .live_linkWrap ul li a.active {
  color: #F02731;
}
.streamDetails_section .streamDetails_middle .live_linkWrap .live_time {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.streamDetails_section .streamDetails_middle .live_linkWrap .live_time p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: #FFF;
  letter-spacing: -0.028rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.streamDetails_section .streamDetails_middle .live_linkWrap .live_time p span {
  color: #FF6D72;
}
.streamDetails_section .streamDetails_middle .live_linkWrap .live_time p img {
  width: 1.6rem;
}
.streamDetails_section .streamDetails_middle .live_linkWrap .live_time a img {
  width: 1.6rem;
}
.streamDetails_section .streamDetails_left {
  background: linear-gradient(0deg, #121212 0%, #121212 100%), #FFF;
  max-width: 25.6rem;
  width: 100%;
  min-height: 100vh;
  padding: 2rem 2rem;
  flex-shrink: 0;
  position: sticky;
  top: 10rem;
}
@media (max-width: 991px) {
  .streamDetails_section .streamDetails_left {
    position: static;
    max-width: 100%;
    padding-top: 4rem;
    min-height: initial;
  }
}
.streamDetails_section .streamDetails_left .live_comment {
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .streamDetails_section .streamDetails_left .live_comment {
    padding-top: 2rem;
  }
}
.streamDetails_section .streamDetails_left .live_comment .comment_item {
  margin-bottom: 1.6rem;
}
.streamDetails_section .streamDetails_left .live_comment .comment_item p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.6);
}
.streamDetails_section .streamDetails_left .live_comment .comment_item p span {
  color: #F02731;
}
.streamDetails_section .streamDetails_left .live_comment .comment_item p span.text_color_yellow {
  color: #EF8721;
}
.streamDetails_section .streamDetails_left .live_comment .comment_item p span.text_color_green {
  color: #37AE48;
}
.streamDetails_section .streamDetails_left .live_comment .comment_item p img {
  width: 1.6rem;
  margin: 0rem 0.2rem;
}
.streamDetails_section .streamDetails_left .message_item {
  margin-top: 8rem;
}
@media (max-width: 991px) {
  .streamDetails_section .streamDetails_left .message_item {
    background: #0E0E0E;
    max-width: 74rem;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1.6rem;
  }
}
@media (max-width: 767px) {
  .streamDetails_section .streamDetails_left .message_item {
    max-width: 55rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.streamDetails_section .streamDetails_left .message_item .message_box {
  position: relative;
}
.streamDetails_section .streamDetails_left .message_item .message_box textarea {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 171.429%;
  color: rgba(255, 255, 255, 0.6);
  background: #2B261F;
  border: 1px solid #B84808;
  width: 100%;
  display: block;
  outline: none;
  resize: none;
  padding: 0.8rem 1rem;
  height: 8.5rem;
}
.streamDetails_section .streamDetails_left .message_item .message_box textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
@media (max-width: 991px) {
  .streamDetails_section .streamDetails_left .message_item .message_box textarea {
    height: 10rem;
  }
}
.streamDetails_section .streamDetails_left .message_item .message_box img {
  width: 1.8rem;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
.streamDetails_section .streamDetails_left .message_item .send_btn {
  margin-top: 1.3rem;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F9F9FF;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  background: #F02731;
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.8rem 1.2rem;
  outline: none;
  box-shadow: 0 0.3rem 1rem 0 rgba(249, 204, 97, 0.45) inset;
  position: relative;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button .border_tl {
  width: 1.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button .border_tr {
  width: 1.5rem;
  height: 0.5rem;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button .border_bl {
  width: 1.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button .border_br {
  width: 1.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button:hover {
  opacity: 0.9;
}
.streamDetails_section .streamDetails_left .message_item .send_btn button:hover span {
  transform: scale(1.25);
}

.report_hero {
  height: 33.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .report_hero {
    height: 24rem;
  }
}
.report_hero .hero_text {
  margin: 0 auto;
  text-align: center;
}

.report_cardWraper {
  padding: 4rem 0rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.4rem;
}
@media (max-width: 991px) {
  .report_cardWraper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .report_cardWraper {
    grid-template-columns: 1fr;
  }
}
.report_cardWraper .report_card {
  background: #080808;
  padding: 1.6rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.report_cardWraper .report_card .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.report_cardWraper .report_card .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.report_cardWraper .report_card .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.report_cardWraper .report_card .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.report_cardWraper .report_card h4 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
  margin-bottom: 2rem;
}
.report_cardWraper .report_card p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
  opacity: 0.8;
  margin-bottom: 2.4rem;
}
.report_cardWraper .report_card a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #F02731;
  display: inline-block;
  margin-top: auto;
  transition: 0.2s all ease;
}
.report_cardWraper .report_card a:hover {
  opacity: 0.85;
}

.blockage_wraper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.4rem;
}
@media (max-width: 767px) {
  .blockage_wraper {
    grid-template-columns: 1fr;
  }
}
.blockage_wraper .blockage_card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
  padding: 1.6rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.blockage_wraper .blockage_card .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.blockage_wraper .blockage_card .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.blockage_wraper .blockage_card .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.blockage_wraper .blockage_card .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.blockage_wraper .blockage_card .blockage_text h4 {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  color: #F5F5F5;
  margin-bottom: 1rem;
  direction: ltr;
  text-align: right;
}
.blockage_wraper .blockage_card .blockage_text p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: #FFF;
  opacity: 0.8;
}
.blockage_wraper .blockage_card .blockage_info img {
  width: 1.8rem;
}

.banactivity_title {
  padding-top: 4rem;
}
.banactivity_title h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .banactivity_title h3 {
    font-size: 2.5rem;
  }
}
.banactivity_title p {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #FFF;
  opacity: 0.8;
  margin: 0;
}
@media (max-width: 767px) {
  .banactivity_title p {
    font-size: 1.4rem;
  }
}

.banactivity_button {
  padding-top: 3rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.banactivity_button a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: rgba(240, 39, 49, 0.1);
  border: 0.6px solid rgba(240, 39, 49, 0.3);
  display: inline-block;
  padding: 0.65rem 1.4rem;
  transition: 0.2s all ease;
}
.banactivity_button a:hover, .banactivity_button a.active {
  background: #F02731;
  border-color: rgba(240, 39, 49, 0.3);
}
@media (max-width: 575px) {
  .banactivity_button {
    gap: 1.2rem;
  }
  .banactivity_button a {
    font-size: 1.4rem;
  }
}

.banactivity_chart {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .banactivity_chart {
    padding: 1.5rem 1.5rem;
  }
}
.banactivity_chart .border_tl {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid rgba(240, 39, 49, 0.7);
  border-left: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.banactivity_chart .border_tr {
  width: 2.2rem;
  height: 0.9rem;
  border-top: 1px solid rgba(240, 39, 49, 0.7);
  border-right: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.banactivity_chart .border_bl {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.7);
  border-left: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.banactivity_chart .border_br {
  width: 2.2rem;
  height: 0.9rem;
  border-bottom: 1px solid rgba(240, 39, 49, 0.7);
  border-right: 1px solid rgba(240, 39, 49, 0.7);
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.banactivity_chart .custom_select {
  width: 9rem;
  margin-right: auto;
}
.banactivity_chart .chart_item {
  margin-top: 3rem;
}
.banactivity_chart .chart_item img {
  width: 100%;
}

.banned_form {
  padding-top: 4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media (max-width: 991px) {
  .banned_form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.6rem;
  }
}
@media (max-width: 767px) {
  .banned_form {
    grid-template-columns: 1fr;
  }
}
.banned_form .player_field {
  width: 33rem;
}
@media (max-width: 991px) {
  .banned_form .player_field {
    width: 100%;
  }
}
.banned_form .player_field .input_wrap input {
  padding-right: 4.2rem;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.2rem) center;
  background-size: 1.8rem;
}
.banned_form .player_alltypes {
  width: 21.2rem;
}
@media (max-width: 991px) {
  .banned_form .player_alltypes {
    width: 100%;
  }
}

.banned_table {
  margin-top: 3.2rem;
}
@media (max-width: 575px) {
  .banned_table {
    overflow: auto;
    scrollbar-color: #961D23 #1D1D1D;
  }
  .banned_table::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 1rem;
  }
  .banned_table::-webkit-scrollbar-track {
    background: #1D1D1D;
    border-radius: 1rem;
  }
  .banned_table::-webkit-scrollbar-thumb {
    background: #961D23;
    border-radius: 1rem;
  }
}
.banned_table table {
  width: 100%;
}
@media (max-width: 575px) {
  .banned_table table {
    width: 57rem;
  }
}
.banned_table table thead {
  background: rgba(240, 39, 49, 0.2);
  border: 0.6px solid rgba(255, 255, 255, 0.1);
}
.banned_table table thead th {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  padding: 2rem 1rem;
}
.banned_table table thead th:first-child {
  padding-right: 4rem;
}
.banned_table table thead th h4 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.banned_table table thead th h4 img {
  width: 1.8rem;
}
@media (max-width: 767px) {
  .banned_table table thead th {
    font-size: 1.4rem;
    padding: 1.8rem 0.8rem;
  }
  .banned_table table thead th:first-child {
    padding-right: 2.5rem;
  }
  .banned_table table thead th h4 {
    gap: 0.6rem;
  }
  .banned_table table thead th img {
    width: 1.6rem;
  }
}
.banned_table table tbody {
  padding-top: 4rem;
}
.banned_table table tbody td {
  font-family: "Cooperative", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(240, 39, 49, 0.2);
  padding: 1.6rem 1rem;
}
.banned_table table tbody td .banned_player {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.banned_table table tbody td .banned_player img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.banned_table table tbody td .banned_player p {
  font-family: "Cooperative", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #F9F9FF;
}
@media (max-width: 767px) {
  .banned_table table tbody td {
    font-size: 1.4rem;
  }
  .banned_table table tbody td .banned_player {
    gap: 1.6rem;
  }
  .banned_table table tbody td .banned_player img {
    width: 4rem;
    height: 4rem;
  }
  .banned_table table tbody td .banned_player p {
    font-size: 1.7rem;
  }
}
.banned_table table tbody td span {
  color: #F02731;
}

/*# sourceMappingURL=style.css.map */
.tasks_section {
  padding-top: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .tasks_section {
    flex-direction: column;
  }
}
.tasks_section .tasks_right {
  max-width: 30.2rem;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .tasks_section .tasks_right {
    max-width: 100%;
  }
}
.tasks_section .tasks_right .game_box {
  position: relative;
}
.tasks_section .tasks_right .game_box .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_right .game_box .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_right .game_box .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_right .game_box .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_right .game_box .game_title {
  background: #080808;
  border-bottom: 0.6px solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem 1.8rem;
}
.tasks_section .tasks_right .game_box .game_title h3 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #FFF;
}
.tasks_section .tasks_right .game_box .game_links {
  background: #080808;
  padding: 1.8rem 1.8rem;
}
.tasks_section .tasks_right .game_box .game_links a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  border-bottom: 1px solid rgba(240, 39, 49, 0.2);
  padding: 2rem 1rem;
  display: block;
  transition: 0.2s all ease;
}
.tasks_section .tasks_right .game_box .game_links a.active {
  background: linear-gradient(180deg, rgba(255, 26, 26, 0) 0%, rgba(255, 26, 26, 0.3) 100%);
  border-bottom: 1px solid rgba(240, 39, 49, 0.2);
}
.tasks_section .tasks_right .level_box {
  margin-top: 2rem;
}
.tasks_section .tasks_right .level_box .level_links {
  padding: 1.8rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.tasks_section .tasks_right .level_box .level_links a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  background: rgba(240, 39, 49, 0.1);
  border: 0.6px solid rgba(240, 39, 49, 0.3);
  display: inline-block;
  min-width: 7.8rem;
  text-align: center;
  padding: 0.65rem 1.5rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_right .level_box .level_links a:hover, .tasks_section .tasks_right .level_box .level_links a.active {
  background: #F02731;
  border-color: 0.6px solid rgba(240, 39, 49, 0.3);
  color: #F5F6FF;
}
.tasks_section .tasks_left {
  max-width: 82.9rem;
  width: 100%;
}
@media (max-width: 991px) {
  .tasks_section .tasks_left {
    max-width: 100%;
    margin-top: 3rem;
  }
}
.tasks_section .tasks_box {
  background: #080808;
  padding: 1.8rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .tasks_section .tasks_box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tasks_section .tasks_box .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .input_item {
  width: 17rem;
}
@media (max-width: 767px) {
  .tasks_section .tasks_box .input_item {
    width: 100%;
  }
}
.tasks_section .tasks_box .input_item .select_btn .border_tl {
  width: 0.9rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .input_item .select_btn .border_tr {
  width: 0.9rem;
  height: 0.5rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .input_item .select_btn .border_bl {
  width: 0.9rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .input_item .select_btn .border_br {
  width: 0.9rem;
  height: 0.5rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.1rem;
  bottom: -0.1rem;
  transition: 0.2s all ease;
}
.tasks_section .tasks_box .tasks_text {
  margin-right: auto;
}
@media (max-width: 767px) {
  .tasks_section .tasks_box .tasks_text {
    margin-right: 0;
  }
}
.tasks_section .tasks_box .tasks_text p {
  font-family: "Heebo", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.7);
}
.tasks_section .taskMission_wrap {
  padding-top: 1.9rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .tasks_section .taskMission_wrap {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.tasks_section .taskMission_wrap .task_missionBox {
  max-width: 55.9rem;
  width: 100%;
  background-image: url("../img/task-mission-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1.8rem 1.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .tasks_section .taskMission_wrap .task_missionBox {
    max-width: 100%;
  }
}
.tasks_section .taskMission_wrap .task_missionBox .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  color: #F5F5F5;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .tasks_section .taskMission_wrap .task_missionBox h3 {
    font-size: 2.4rem;
  }
}
.tasks_section .taskMission_wrap .task_missionBox p {
  font-family: "Heebo", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: initial;
  color: #FFF;
  opacity: 0.8;
  max-width: 34rem;
  width: 100%;
  margin-bottom: 2.4rem;
}
.tasks_section .taskMission_wrap .task_missionBox a {
  font-family: "Heebo", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  background: #212121;
  text-align: center;
  width: 13rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  margin-right: auto;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox a img {
  width: 2rem;
}
.tasks_section .taskMission_wrap .task_missionBox a .border_tl {
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox a .border_tr {
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox a .border_bl {
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox a .border_br {
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_missionBox a:hover span {
  transform: scale(1.25);
}
.tasks_section .taskMission_wrap .task_progressBox {
  max-width: 25.8rem;
  width: 100%;
  background: #080808;
  padding: 1.5rem 1.5rem;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .tasks_section .taskMission_wrap .task_progressBox {
    max-width: 100%;
  }
}
.tasks_section .taskMission_wrap .task_progressBox .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_progressBox .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_progressBox .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_progressBox .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_cointext {
  padding: 0.8rem 0rem;
  text-align: center;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_cointext p {
  font-family: "Heebo", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_cointext p img {
  width: 1.8rem;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_cointext p span {
  direction: ltr;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_premium a {
  width: 13.2rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto;
  background: linear-gradient(278deg, rgba(222, 87, 9, 0.1) 3.38%, rgba(228, 105, 18, 0.1) 22.95%, rgba(246, 153, 41, 0.1) 63.01%, rgba(253, 172, 51, 0.1) 77.92%);
  padding: 0.5rem 0.5rem;
  text-align: center;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_premium a img {
  width: 1.3rem;
}
.tasks_section .taskMission_wrap .task_progressBox .progress_premium a span {
  font-family: "Heebo", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: initial;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tasks_section .circular_progress {
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
}
.tasks_section .circular_progress .progress_wheel {
  width: 100%;
  height: 100%;
  background: conic-gradient(from -115deg, #FDAC33 0%, #F69929 calc(var(--p) * 0.3699%), #E46912 calc(var(--p) * 0.7705%), #DE5709 calc(var(--p) * 1%), #1c1d22 calc(var(--p) * 1%) 100%);
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent 74%, #000 75%);
  mask: radial-gradient(farthest-side, transparent 74%, #000 75%);
  position: absolute;
  transform: rotate(70deg);
}
.tasks_section .circular_progress .progress_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
}
.tasks_section .circular_progress .progress_text .percentage_num {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #FFF;
  margin-bottom: 0rem;
}
.tasks_section .circular_progress .progress_text .status_lbl {
  font-family: "Heebo", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
}
.tasks_section .mission_faq {
  padding-top: 2rem;
}
.tasks_section .mission_faq .accordion_item {
  background: #080808;
  border: none;
}
.tasks_section .mission_faq .accordion_item .border_tl {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .border_tr {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .border_bl {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-left: 1px solid #A11B1B;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .border_br {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px solid #A11B1B;
  border-right: 1px solid #A11B1B;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .accordion_title {
  display: block;
  padding: 1.8rem 1.8rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title {
    padding: 1.6rem 1.5rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right {
    gap: 0.6rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right img {
  width: 5.4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right img {
    width: 4.5rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text h4 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text h4 span {
  font-family: "Heebo", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  background: rgba(255, 255, 255, 0.17);
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border-radius: 1px;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text h4 {
    font-size: 1.6rem;
  }
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text h4 span {
    font-size: 1rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text p {
  font-family: "Heebo", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(245, 245, 245, 0.6);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text p span {
  color: #37AE48;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text p .bullet {
  width: 0.4rem;
  height: 0.4rem;
  display: inline-block;
  background: linear-gradient(278deg, #808080 3.38%, #929292 22.02%, #C2C2C2 58.35%, #DEDEDE 77.92%);
  border-radius: 50%;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text p .text_gcolor1 {
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text p .text_gcolor2 {
  color: #F02731;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_right .atitle_text p {
    font-size: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left {
    gap: 0.6rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .points_item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .points_item img {
  width: 1.8rem;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .points_item p {
  font-family: "Heebo", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: initial;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .points_item {
    gap: 0.4rem;
  }
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .points_item img {
    width: 1.5rem;
  }
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .points_item p {
    font-size: 1.4rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .reload_button {
  margin-top: -0.2rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .reload_button {
    margin-top: -0.3rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .reload_button button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: inline-block;
  cursor: pointer;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .reload_button button img {
  width: 1.6rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .reload_button button img {
    width: 1.4rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .accordion_icon img {
  width: 2.2rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_wraper .atitle_left .accordion_icon img {
    width: 2rem;
  }
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_progress .aprogress_fill {
  width: 100%;
  height: 1rem;
  background: #080808;
  border: 0.6px solid rgba(240, 39, 49, 0.5);
  border-radius: 5rem;
  overflow: hidden;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_progress .aprogress_fill .aprogress_bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 13, 28, 0.6) 0%, rgba(255, 13, 28, 0.6) 49.52%, rgba(255, 13, 28, 0.36) 100%);
  border-radius: 5rem;
  transition: width 1s ease;
}
.tasks_section .mission_faq .accordion_item .accordion_title .accordion_title_progress p {
  font-family: "Heebo", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody {
  background-image: url("../img/mission_faqbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1.8rem 1.8rem;
  position: relative;
  margin-bottom: 1.8rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody {
    padding: 1.6rem 1.5rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item {
    gap: 0.8rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item img {
  width: 5.4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item img {
    width: 4.5rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text h4 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.2rem;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text h4 span {
  font-family: "Heebo", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  display: inline-block;
  background: #84151B;
  padding: 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text h4 {
    font-size: 1.6rem;
  }
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text h4 span {
    font-size: 1rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text p {
  font-family: "Heebo", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: rgba(245, 245, 245, 0.6);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text p span {
  color: #37AE48;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text p .bullet {
  width: 0.4rem;
  height: 0.4rem;
  display: inline-block;
  background: linear-gradient(278deg, #808080 3.38%, #929292 22.02%, #C2C2C2 58.35%, #DEDEDE 77.92%);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .heading_item .heading_text p {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .circular_progress {
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqbody_heading .circular_progress {
    text-align: center;
    margin: 0 auto;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.2rem;
  padding: 3.2rem 0rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox {
  background: rgba(240, 39, 49, 0.1);
  border: 0.6px solid rgba(240, 39, 49, 0.3);
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a {
  width: 100%;
  height: 100%;
  padding: 1.4rem 1.6rem;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a {
    padding: 1.4rem 1rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a h4 {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F02731;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a h4 {
    font-size: 1.4rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a p {
  font-family: "Cooperative";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a p img {
  width: 1.6rem;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a p span {
  color: #37AE48;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a p {
    font-size: 1.4rem;
  }
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a p img {
    width: 1.4rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a .premium {
  width: 1.8rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a .premium {
    width: 1.6rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a .premium_text {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  background: linear-gradient(278deg, #DE5709 3.38%, #E46912 22.95%, #F69929 63.01%, #FDAC33 77.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .faqmission_buttonWrap .faqmission_buttonBox a .premium_text {
    font-size: 1.4rem;
  }
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn {
  position: relative;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn .border_tl {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn .border_tr {
  width: 1.2rem;
  height: 0.6rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn .border_bl {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  position: absolute;
  left: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn .border_br {
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  right: -0.05rem;
  bottom: -0.05rem;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #F5F6FF;
  width: 100%;
  height: 3.6rem;
  background: #F02731;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 0.2rem 1.77rem 0 rgba(249, 204, 97, 0.54) inset;
  transition: 0.2s all ease;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn a img {
  width: 1.6rem;
}
.tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn a:hover {
  background: #CB252B;
}
@media (max-width: 767px) {
  .tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn a {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
  .tasks_section .mission_faq .accordion_item .mission_faqbody .switch_btn a img {
    width: 1.5rem;
  }
}
