* {
  padding: 0;
  margin: 0;
  font-family: "Mulish", sans-serif;
  box-sizing: border-box;
}

body {
  background: linear-gradient(180deg, #010719 0%, #2b4a74 80.34%);
}

.opening-section {
  background: #29384c;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening-wrapper {
  background: #000;
  max-width: 1109px;
  margin: 0 auto;
  width: calc(100% - 32px);
  height: 690px;
}

/* footer */
footer {
  background-color: #002352;
  padding: 0 16px;
  padding-bottom: 80px;
}

.footer {
  display: flex;
  flex-direction: column;
}

.footer__logos-first {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  height: 77px;
}

.footer__logos-first a img {
  width: 56px;
  height: 40px;
  object-fit: contain;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__link span {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.035rem;
  color: #fff;
  font-family: "Archivo Narrow", sans-serif;
}

.footer__link div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__link a {
  color: #adb5bd;
  font-size: 0.75rem;
  line-height: 1rem;
  font-family: "Archivo Narrow", sans-serif;
  letter-spacing: 0.035rem;
}

.footer__logos-second {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
  height: 77px;
}

.footer__logos-second a img {
  width: 55px;
  height: 37px;
  object-fit: contain;
}
.footer__links-mobile {
  display: none;
}
.footer__lang {
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  font-family: "Archivo Narrow", sans-serif;
}
.footer__lang span {
  font-family: "Archivo Narrow", sans-serif;
}

.footer__lang div {
  padding: 6px 12px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0.25rem;
  width: 128px;
  height: 38px;
}

.footer__logos-fourth {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  height: 92px;
}

.footer__logos-fourth p {
  color: #adb5bd;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.035rem;
  font-family: "Archivo Narrow", sans-serif;
}

.footer__logos-fourth a img {
  height: 40px;
  object-fit: contain;
  padding-right: 8px;
}

.footer-detail {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-detail p {
  color: #adb5bd;
  font-size: 0.75rem;
  line-height: 1rem;
  font-family: "Archivo Narrow", sans-serif;
}

.footer-detail p a {
  color: #adb5bd;
  font-size: 0.75rem;
  line-height: 1rem;
  font-family: "Archivo Narrow", sans-serif;
}

.footer__logos-third {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logos-third div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__logos-third span {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.035rem;
  color: #fff;
  font-family: "Archivo Narrow", sans-serif;
}

.footer__logos-third a {
  width: 25px;
  height: 25px;
  font-family: "Archivo Narrow", sans-serif;
}

.footer__logos-third a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .6;
}

.footer__logos-third a img:hover{
  opacity: 1;
}

header {
  background: #002352;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

main {
  min-height: calc(100dvh - 820px);
}

.navbar__logo {
  width: 205px;
  height: 40px;
}

.navbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login {
  border-radius: 30px;
  background: #334f75;
  display: flex;
  width: 140px;
  padding: 5px 24px;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 187.5% */
  text-decoration: none;
}

.register {
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #fffca0 100%);
  display: flex;
  width: 140px;
  padding: 5px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 40px;
  color: #000;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 187.5% */
  text-decoration: none;
}

.menu-bar {
  display: none;
}

body.no-scroll {
  overflow: hidden;
}

.intro__section {
  display: flex;
  height: 375px;
  position: relative;
}

.intro-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.intro__image {
  /* position: absolute;
  bottom: 0;
  right: 145px; */
  max-width: 350px;
  width: 100%;
  height: 337px;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__section-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 145px 0 80px;
}

.intro__left {
  max-width: 749px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}

.intro-games {
  align-items: center;
  padding-top: 0;
}

.intro-content .intro__left {
  max-width: 100%;
  text-align: center;
}

.intro-content {
  padding: 0;
  display: flex;
  align-items: center;
}

.intro__section-wrapper h1 {
  color: #fff;
  font-family: Mulish;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  /* 140.909% */
}

.intro__section-wrapper h2 {
  color: #fff;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
}

.cards__section {
  padding: 64px 0;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1125px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

.card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(9, 38, 40, 0) 0%,
    rgba(9, 40, 37, 0) 50.14%,
    rgba(9, 39, 40, 0) 100%
  );
  display: flex;
  width: 343px;
  height: 343px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  outline: 1px solid #fff;
}

.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 23, 39, 0.5) 0%,
    rgba(9, 11, 23, 0.9) 50.14%,
    rgba(11, 23, 39, 0.5) 100%
  );
  z-index: 2;
  opacity: 1%;
}

.card-overlay-second {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 35, 82, 0) 0%, #000f1f 100%);
  z-index: 2;
}

.card__top {
  border-radius: 10px;
  width: 100%;
  display: flex;
  padding: 0 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.card__logo {
  width: 131px;
  height: 87px;
  opacity: 1%;
}

.card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__main {
  z-index: 2;
  width: 100%;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 100%;
}

.rating img {
  width: 40px;
  height: 40px;
}

.rating span {
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.72px;
}

.card__bonus-text {
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  opacity: 1%;
}

.card__bonus-text p {
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  letter-spacing: -0.4px;
}

.card__promocode-wrapper {
  margin-bottom: 16px;
  opacity: 1%;
}

.card__promocode {
  border-radius: 30px;
  outline: 1px dashed #fff;
  background: rgba(24, 30, 46, 0.6);
  display: flex;
  width: 100%;
  padding: 4px 4px 4px 10px;
  justify-content: space-between;
  align-items: center;
}

.card__promocode.hide {
  display: none;
}

.promo__code {
  color: #fff;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: -0.28px;
}

.card__btn--promocode {
  width: 32px;
  height: 32px;
  border-radius: 30px;
  background: #00bf0a;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
}

.card__btn--promocode img {
  width: 16px;
  height: 16px;
}

.card__promocode-copied.show {
  display: flex;
}

.card__promocode-copied {
  outline: 1px dashed #fff;
  background: linear-gradient(
    90deg,
    rgba(65, 119, 42, 0.24) 0%,
    rgba(216, 255, 187, 0.24) 100%
  );
  border-radius: 30px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 4px 4px 4px 10px;
  align-items: center;
  height: 40px;
  display: none;
}

.card__promocode-copied span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: -0.28px;
}

.card__promocode-copied div {
  width: 32px;
  height: 32px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
}

.card__promocode-copied div img {
  width: 16px;
  height: 16px;
}

.card-with-promocode {
  justify-content: space-between;
}

.card__operations {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.games-section .card__main {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: flex-end; */
}
.games-section .card__main {
  justify-content: flex-end;
}
.games-section .card__operations {
  justify-content: space-between;
}
.game__name {
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  /* 150% */
  letter-spacing: -0.4px;
}

.card__button-wrapper {
  cursor: pointer;
  text-decoration: none;
}

.card__button-left {
  background-image: url("../svgs/button-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 256px;
  height: 64px;
  display: flex;
  justify-content: center;
}

.card__button-left span {
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  margin-top: 17px;
}

.card__button-wrapper {
  display: flex;
  align-items: center;
}

.card__button-right {
  width: 86.177px;
  height: 63.064px;
  background-image: url("../svgs/button-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -27px;
  display: flex;
  justify-content: flex-end;
}

.card__button-right img {
  margin-right: 26px;
  width: 17.144px;
  height: 27.388px;
  margin-top: 15px;
}

.logout-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  position: relative;
}

.logout-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logout-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.logout-wrapper div img {
  width: 31px;
  height: 32px;
}

.logout-wrapper span {
  color: #fffdcd;
  text-align: right;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

.logout-button {
  top: 33px;
  right: 0;
  position: absolute;
  border-radius: 30px;
  background: #334f75;
  z-index: 3;
  display: none;
  width: 140px;
  padding: 5px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 40px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
  /* 187.5% */
}

.logout-open {
  display: flex;
  width: 20px;
  height: 20px;
}

.logout-close {
  display: none;
  width: 20px;
  height: 20px;
}

.show {
  display: flex !important;
}

.hidden {
  display: none !important;
}

.hide-logout .navbar__links {
  display: flex;
}

.hide-logout .logout-section {
  display: none;
}

.show-logout .navbar__links {
  display: none;
}

.show-logout .logout-section {
  display: flex;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  background: rgba(24, 33, 48, 0.9);
  backdrop-filter: blur(7px);
  display: flex;

  padding: 72px 0;
  flex-direction: column;
  align-items: center;
  display: none;
  z-index: 10;
}

.nav-menu.show {
  display: flex;
}

.menu-bar--close {
  position: absolute;
  width: 23px;
  height: 22px;
  cursor: pointer;
  top: 15px;
  right: 21px;
}

.nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.show-logout ul {
  display: none;
}

.show-logout .logout-section-menu {
  display: flex;
}

.hide-logout .logout-section-menu {
  display: none;
}

.hide-logout ul {
  display: flex;
}

.logout-section-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logout-section-menu div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logout-section-menu img {
  width: 21.5px;
  height: 21.5px;
}

.logout-section-menu div span {
  color: #fffdcd;
  text-align: right;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

.logout-button-menu {
  border-radius: 30px;
  background: #334f75;
  display: flex;
  width: 140px;
  height: 40px;
  padding: 5px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
  /* 187.5% */
}

.content__page {
  padding: 64px 0;
}

.content__section {
  max-width: 1216px;
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content__section p,
.content__section ul li {
  color: #fff;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

.content__section span {
  color: #fff;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 162.5% */
}

.content__section ul {
  list-style-position: outside;
  padding-left: 20px;
}

.registrate__form--error {
  color: #ff5656;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  margin-top: 4px;
  display: none;
}

.registrate__form--error::after {
  content: attr(data-error-message);
}

.register-page {
  padding: 64px 0;
}

.registrate__form {
  max-width: 452px;
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.registrate__input--wrapper {
  display: flex;
  flex-direction: column;
}

.registrate__label-required {
  color: #ecf7ff;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  margin-bottom: 4px;
}

.registrate__label-required span {
  color: #ff5656;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.registrate__input--wrapper input {
  border: none;
  border-radius: 8px;
  outline: 1px solid #a3ceff;
  background: var(--Base-White, #fff);
  height: 54px;
  display: flex;
  padding: 15px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: #000;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.registrate__input--wrapper input::placeholder {
  color: #9a9a9a;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.registrate__input--wrapper input.error__input {
  border-radius: 8px;
  outline: 2px solid #ff5656;
  background: #ffe4e4;
}

.registrate__error-message {
  position: fixed;
  border-radius: 8px;
  border-bottom: 4px solid #eb7878;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(242, 133, 133, 0.4);
  display: flex;
  width: 366px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  z-index: 5;
  top: 10px;
  right: 10px;
  display: none;
}

.registrate__error-message div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.registrate__error-message p {
  color: #000;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.registrate__error-message span {
  color: #000;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}

.registrate__error-message div img {
  width: 24px;
  height: 24px;
}

.registrate__submit-message {
  position: fixed;
  border-radius: 8px;
  border-bottom: 4px solid #78eb7b;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(133, 186, 242, 0.4);
  display: flex;
  width: 366px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  z-index: 5;
  top: 10px;
  right: 10px;
  display: none;
}

.message-close {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
}

.registrate__submit-message div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.registrate__submit-message.hide {
  display: none;
}

.registrate__submit-message.show {
  display: flex;
}

.show {
  display: flex;
}

.registrate__submit-message p {
  color: #000;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.registrate__submit-message span {
  color: #000;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}

.registrate__submit-message div img {
  width: 24px;
  height: 24px;
}

.registrate__submit-btn {
  border-radius: 30px;
  background: var(
    --Gradient-39,
    linear-gradient(90deg, #e83fa3 0%, #d30f47 100%)
  );
  display: flex;
  max-width: 311px;
  width: 100%;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  height: 54px;
  cursor: pointer;
  border: none;
  margin: 12px auto 0;
}

.registrate__submit-btn span {
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  /* 150% */
}

.for-navigation {
  color: #fff;
  text-align: center;
  font-family: Mulish;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 160% */
  margin-top: 32px;
}

.for-navigation a {
  color: #a3caff;
  text-align: center;
  font-family: Mulish;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 160% */
  text-decoration: none;
}

/* cookie*/
.cookie {
  position: fixed;
  right: 10px;
  bottom: 10px;
  padding: 12px;
  max-width: 375px;
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #dae7ff;
  z-index: 10;
  display: none;
}

.cookie.show {
  display: flex;
}

.cookie h3 {
  color: #000;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  margin-bottom: 4px;
}

.cookie p {
  color: #000;
  text-align: center;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.cookie_btns {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cookie_btn--reject {
  cursor: pointer;
  border-radius: 30px;
  background: #929fb4;
  display: flex;
  padding: 6px 24px;
  justify-content: center;
  align-items: center;
  width: 169.5px;
  border: none;
  height: 40px;
}

.cookie_btn--reject span {
  color: #fff;

  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 160% */
}

.cookie_btn--accept {
  cursor: pointer;
  border-radius: 30px;
  background: var(
    --Gradient-39,
    linear-gradient(90deg, #e83fa3 0%, #d30f47 100%)
  );

  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 169.5px;

  height: 40px;
  border: none;
}

.cookie_btn--accept span {
color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 160% */
}
