@import url("./components/TheSidebar/sidebar-menu.css");
@import url("./components/TheDashboard/dashboard.css");
@import url("./components/UI/Pagination/pagination-list.css");
@import url("./components/Offers/offers-list.css");

/* Убираем стрелки в браузерах на движке WebKit (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Убираем стрелки в Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Убираем стрелки в IE и Edge Legacy */
input[type="number"] {
    -ms-appearance: none;
}


.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.main-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    align-self: center;
    flex: 1 1 auto;
    padding: 0 20px; 
    margin: 0 auto;
 }
 .container {
    display: flex;
    margin-bottom: 112px;
    flex: 1 1 auto;
    /* background-color: black; */
    width: 100%;
 }
.main-page-container{
    width: 100%;
  
}

@media(max-width: 768px){
  .main-container{
    padding: 0;
  }
}








/* STORE PAGE */

.general-settings-form {
  width: 100%;
  padding-left: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.general-settings-form__title {
  margin-bottom: 24px;
}

.general-settings-form__input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 22px;
}

.general-settings-form__input-container_last {
  margin-bottom: 34px;
}

.general-settings-form__input-label {
  margin-bottom: 8px;
}

.general-settings-form__input {
  width: 100%;
  max-width: 650px;
}

.general-settings-form__store-link-input {
  position: relative;
}

.general-settings-form__store-link-input input {
  padding-left: 197px;
}

.general-settings-form__start-gaming-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-weight: 400;
  font-size: 14px;
  color: #828282;
}

.general-settings-form__start-gaming-url::after {
  content: '';
  display: block;
  width: 2px;
  height: 16px;
  background-color: #E8E8E8;
  margin-left: 10px;
}

.general-settings-form__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr;
      grid-template-columns: 200px 1fr;
}

.general-settings-form__description-textarea {
  max-width: 565px;
}

@media (max-width: 992px) {
  .general-settings-form__container {
    -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  }
  .general-settings-form .form-min-title {
    margin-bottom: 20px;
  }
  .form-input-container{
    max-width: none ;
  }
}

@media (max-width: 768px) {
  .general-settings-form {
    padding-left: 0;
  }
}

.input-error-msg {
  margin-top: 6px;
}

.form-btn-primary {
  margin-left: auto;
  margin-top: 20px;
}

  

/* ///////////////////////////////// */
.general-settings-form{
  .form-input-container{
    width: 100%;
    max-width: 300px;
  }
}
.form-input-container{
  width: 100%;

}
.form-custom-input{
  width: 100%;
}
.form-flex-container{
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
}
.seller-registration-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop-need-verification {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-top: 68px;
}

.shop-need-verification__image {
}


.shop-need-verification__content {
}



.shop-need-verification__title {
  color: var(--black-800, #2B2E35);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 125% */
  margin-bottom: 16px;
}



.shop-need-verification__text {
  color: var(--black-800, #2B2E35);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 44px;
  span{
    color: var(--blue-600, #2570ED);
    font-weight: 600;
  }
}
@media(max-width: 992px){
  .general-settings-form{
    .form-input-container{
      width: 100%;
      max-width: none;
    }
  }
}
@media(max-width: 768px){
  .shop-need-verification {
    flex-direction: column;
  }
 
  .shop-need-verification__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* STORE PAGE */













.create-offer-popup {
  /* Add popup styling here */
}

.create-offer-popup-header {
  /* Add header styling here */
}

.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.form-btn-primary {
  /* Add button styling here */
}
.popover{
  background: #0C1416;
  background-color: rgba(12, 20, 22, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999;
  padding: 10px;
}
.create-offer-popup {
  max-height: calc(100svh - 20px);
  max-width: 500px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  .create-offer-popup__btn{
    width: 100%;
  }

}

.create-offer-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.create-offer-popup-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group.flex {
  display: flex;
  justify-content: space-between;
}

.form-group.flex > * {
  flex: 1;
  margin-right: 10px;
}

.form-group.flex > *:last-child {
  margin-right: 0;
}

.form-btn-primary {
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}

.form-btn-primary:hover {
  background-color: #0056b3;
}

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

.btn-js {
  transition: background-color 0.3s ease;
}

@media(max-width: 576px){
  .form-group {
      flex-direction: column;
      margin-bottom: 8px;
      gap: 10px;
  }
}









.seller-panel-orders-page {
  padding-left: 20px;
  padding-top: 20px;
}

.seller-panel-orders-page__title{
  color: var(--black-800, #2B2E35);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 125% */
}

.seller-panel-orders-page__container{
  display: flex;
  gap: 38px;
}

.seller-panel-orders-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1 1 auto;
}

.seller-panel-orders-list__body{
  display: flex;
  flex-direction: column;
  gap: 36px;
}


.seller-panel-orders-list-head {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;

}

.seller-panel-orders-list-head::after{
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-50, #E8E8E8);
  position: absolute;
  left: 0;
  bottom: 0;
}



.seller-panel-orders-list-head-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.seller-panel-orders-list-head-item::after, .seller-panel-orders-list-head-item--active::after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0);
  display: block;
  height: 2px;
  background: var(--blue-600, #2570ED);
  transition: width 0.4s ease;
  z-index: 10;
}
.seller-panel-orders-list-head-item::after{
  width: 0;
}
.seller-panel-orders-list-head-item--active::after{
  width: 100%;
}

.seller-panel-orders-list-head-item__title{
  color: #6A7898;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
 
}

.seller-panel-orders-list-head-item__quantity{
  border-radius: 6px;
  background: var(--white-200-hover, #ECF3FB);
  padding: 0px 6px;
  color: var(--blue-700, #6A83A8);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
  text-transform: uppercase;
}

.seller-panel-orders-list-head-item__mark{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f6b2d1;
  position: relative;
}

.seller-panel-orders-list-head-item__mark::after{
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #e83e8c;
}

.seller-panel-order-item {
  display: flex;
  align-items: center;
  width: 100%;
}

.seller-panel-order-item__status{
  border-radius: 8px;
  background: linear-gradient(270deg, #E6FF5A 0%, #BBFF4D 100%);
  color: #547314;
  text-align: justify;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 145.455% */
  text-transform: uppercase;
  width: 94px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg) translate(0, 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: bottom left;
}
.seller-panel-order-item__status.seller-panel-order-item__status--client{
  background: #EDF6FF;
}
.seller-panel-order-item__status-wrapper{
  height: 100%;
  width: 20px;
  position: relative;
  margin-right: 8px;
  flex: 0 0 auto;
}


.seller-panel-order-item__image{
  border-radius: 8px;
  width: 94px;
  height: 94px;
  margin-right: 12px;
}



.seller-panel-order-item__info{
  display: flex;
  flex-direction: column;
  margin-right: 24px;
  min-width: 0;
  flex: 1;
}



.seller-panel-order-item__id-and-date{
  color: var(--gray-500, #828282);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
  text-transform: uppercase;
  margin-bottom: 6px;
}


.seller-panel-order-item__title {
 
  position: relative;
  height: 20px;
  width: 100%;
  margin-bottom: 18px;
  div{
    overflow: hidden;
    color: var(--black-800, #2B2E35);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
   
    white-space: nowrap;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);

  }
}



.seller-panel-order-item__tags-list{
  display: flex;
  align-items: center;
  gap: 20px;
}



.seller-panel-order-item__tag{
  color: var(--UI-blue-1, #426878);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 37px;
  background: var(--white-200-hover, #ECF3FB);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.seller-panel-order-item__controls{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  margin-left: auto;
  .form-btn-primary{
    text-transform: none;
    min-width: auto;
    margin-top: 0;
  }
}


.seller-panel-order-item__price-container{
  display: flex;
  align-items: center;
  gap: 10px;
}


.seller-panel-order-item__quantity{
  color: var(--gray-500, #828282);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
}



.seller-panel-order-item__price{
  color: var(--black-800, #2B2E35);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}



.seller-panel-orders-chat {
  max-height: 850px;
  position: relative;
  min-width: 370px;
}

.seller-panel-order-item__mobile-container{
  display: contents;
}
.seller-panel-order-item__mobile-title{
  display: none;
  overflow: hidden;
  color: var(--black-800, #2B2E35);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
  max-width: 100%;
}

@media(max-width: 992px){
  .seller-panel-order-item{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .seller-panel-order-item__mobile-container{
    display: flex;
    
    
  }
  .seller-panel-order-item__mobile-title{
    display: flex;
    white-space:initial
  }
  .seller-panel-order-item__title{
    display: none;
  }
  .seller-panel-order-item__info{
    gap: 8px;
  }
  .seller-panel-order-item__controls{
    margin-left: 0;
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    gap: 18px;
    .form-btn-primary{
      width: 100%;
    }
  }
}







.seller-panel-orders-chat {
  border-radius: 0px;
  border: 1px solid var(--white-200-hover, #ECF3FB);
  background: var(--white-100, #F9FBFD);
  max-width: 384px;
  display: flex;
  flex-direction: column;
  min-height: 750px;
}

.seller-panel-orders-chat__header{
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, #DDEAF9 0%, #E9F3FF 150.89%);
  padding-right: 42px;
  position: relative;
}

.seller-panel-orders-chat__header-title{
  color: var(--blue-700, #6A83A8);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  display: flex;
  align-items: center;
  gap: 6px;
}

.seller-panel-orders-chat__client-avatar{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: wheat;
  margin-right: 20px;
}

.seller-panel-orders-chat__order-title{
  overflow: hidden;
  color: var(--black-800, #2B2E35);
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  background: linear-gradient(0deg, #DDEAF9 -96.59%, #E9F3FF 150.89%);
  height: 44px;
  white-space: nowrap;
  position: relative;
  width: 100%;
  div{
    text-overflow: ellipsis;
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
    left: 0;
    top: 50%;
    width: 100%;
    max-width: 100%;
    padding: 12px 22px;
    transform: translate(0, -50%);
  }
}

.seller-panel-orders-chat__body{
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 0;
  flex: 1 0 auto;
  max-height: calc(100% - 52px - 44px);
}
.seller-panel-orders-chat__messages-list{
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  max-height: calc(100%  - 104px - 24px);
  margin-bottom: 24px;
  padding-right: 21px;
  margin-right: -21px;
}

.seller-panel-orders-chat__marked-as-sent-btn{
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--white-200-hover, #ECF3FB);
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-700, #6A83A8);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  margin-top: auto;
}

.seller-panel-orders-chat__send-form{
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid var(--blue-150, #CDE2F3);
  width: 100%;
  height: 150px;
  position: relative;
}

.seller-panel-orders-chat__text-field{
  width: 100%;
  height: 100%;
  padding: 12px;
}

.seller-panel-orders-chat__send-btn{
  min-width: auto;
  padding: 6px;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.seller-panel-orders-chat__message-length{
  background: var(--white-0, #FFF);
  position: absolute;
  left: 8px;
  bottom: 8px;
}

.seller-panel-chat-message {

}

.seller-panel-chat-message__time{
  color: var(--white-400, #B6C0CF);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 145.455% */
  text-transform: uppercase;
  margin-bottom: 4px;
}

.seller-panel-chat-message__user-avatar{
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  background-color: rgb(161, 161, 200);
  flex: 0 0 auto !important;
}

.seller-panel-chat-message__body{
  border-radius: 8px;
  background: #ECF2F9;
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
}


.seller-panel-chat-message__body-head{
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.seller-panel-chat-message__text{
  color: var(--black-800, #2B2E35);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 153.846% */
}

.seller-panel-chat-message__username{
  color: var(--blue-700, #6A83A8);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 153.846% */
  span{
    color: #2570ED;
  }
}
.seller-panel-chat-message__container{
  display: flex;
  gap: 6px;
}
.seller-panel-orders-chat__close-btn{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 1160px){
  .seller-panel-orders-chat{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999999999999;
    max-height: none;
    max-width: none;
  }
}
.seller-panel-chat-message.seller-panel-chat-message--self{
  .seller-panel-chat-message__body{
    background: #CDE0FF;
  }
  .seller-panel-chat-message__user-avatar{
    margin-left: auto;
  }
  
}
/* FINANCE */

.withdrawal-page-container {
  width: 100%;
  padding-left: 20px;
  padding-top: 20px;
  position: relative;
}

.withdrawal-page-container input::-webkit-outer-spin-button,
.withdrawal-page-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.withdrawal-page-container__successfully-message {
  margin-top: 14px;
}

.withdrawal-page-container__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.withdrawal-page-container__content {
  margin-top: 25px;
}

.withdrawal-page-container__label {
  margin-bottom: 6px;
}

.withdrawal-page-container__demarcation-line {
  margin: 20px 0;
}

.withdrawal-page-container__info-msg {
  font-weight: 400;
  font-size: 12px;
  color: #2A6071;
  background: #C5E5FE;
  border-radius: 5px;
  padding: 6px 8px;
  margin-bottom: 14px;
}

.withdrawal-page-container__request-btn {
  margin-left: auto;
  margin-top: 30px;
}

.withdrawal-page-container__change-payment-method {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.withdrawal-page-container__input {
  width: 315px;
  max-width: 315px;
}

.withdrawal-page-container__change-paiment-msg {
  font-weight: 400;
  font-size: 12px;
  margin-left: 20px;
  margin-bottom: 18px;
}

.withdrawal-page-container__change-paiment-msg a {
  color: #4FA9EE;
}

.add-product-currency-input {
  width: 100%;
  position: relative;
  margin-bottom: 38px;
}

.add-product-currency-input__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 13px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-weight: 500;
  font-size: 18px;
  color: #828282;
}

.add-product-currency-input__icon::after {
  content: '';
  display: block;
  width: 2px;
  height: 16px;
  background-color: #E8E8E8;
  margin-left: 10px;
}

.add-product-currency-input input {
  margin-bottom: 0;
  width: 100%;
}

.withdrawal-detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.withdrawal-detail__title {
  font-weight: 400;
  font-size: 14px;
  color: #828282;
}

.withdrawal-detail__sum {
  -ms-grid-column-align: end;
      justify-self: end;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}

.withdrawal-detail__total {
  -ms-grid-column-align: end;
      justify-self: end;
  font-weight: 700;
  font-size: 24px;
  color: #2570ED;
}

@media (max-width: 992px) {
  .withdrawal-page-container__change-payment-method {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .withdrawal-page-container__input {
    width: 315px;
    max-width: 315px;
  }
  .withdrawal-page-container__change-paiment-msg {
    margin-left: 0;
    margin-top: 10px;
  }
  .stats-bar {
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
    -ms-grid-columns: 1;
        grid-template-columns: 1;
  }
  .stats-bar__item:not(:last-child) {
    margin: 0;
  }
}

.withdrawal-popup-form__msg {
  margin-top: 14px;
}

.withdrawal-popup-form__withdrawal-method {
  font-weight: 600;
  font-size: 14px;
  color: #2B2E35;
}

.withdrawal-popup-form__link {
  margin-left: auto;
}

.withdrawal-popup-form__btn {
  height: 40px;
  padding: 12px 16px;
  min-width: 0;
  line-height: 0;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .withdrawal-page-container {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .withdrawal-page-container__change-payment-method {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .withdrawal-page-container__header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1;
        grid-template-columns: 1;
    grid-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .withdrawal-page-container__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .withdrawal-page-container__input-container {
    max-width: 315px;
  }
  .withdrawal-page-container__successfully-message {
    width: 315px;
    margin: 0 auto;
    margin-top: 15px;
  }
  .withdrawal-detail {
    width: 100%;
  }
  .stats-bar__item {
    width: 315px;
  }
  .withdrawal-popup-form__btn {
    padding: 10px;
    font-size: 12px;
    height: 32px;
  }
  .withdrawal-popup-form__link {
    max-width: 120px;
  }
}
.withdrawal-page-container__wallet-address-input{
  max-width: 500px;
}

/* FINANCE */


/* TRANSACTIONS */
.payments-page-container {
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
}

.payments-page-container__btn {
  margin-left: auto;
}

.form-table {
  -ms-grid-columns: (auto)[7];
      grid-template-columns: repeat(7, auto);
  margin-top: 20px;
}

.form-table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.form-table__text-id {
  color: #4FA9EE;
  font-weight: 400;
  font-size: 12px;
}

.form-table__methods-detail {
  font-weight: 400;
  font-size: 12px;
  color: #676767;
  margin-left: 4px;
}

@media (max-width: 992px) {
  .form-table {
    -ms-grid-columns: (auto)[4];
        grid-template-columns: repeat(4, auto);
    padding: 0;
  }
  .form-table__head-cell {
    display: none;
  }
  .form-table__cell {
    border: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
  }
  .form-table__adtaptive-header {
    display: block;
  }
  .form-table__cell {
    padding-top: 15px;
  }
   .form-table__cell:nth-child(7n+7), .form-table__cell:nth-child(7n+6), .form-table__cell:nth-child(7n+5) {
    border-bottom: 3px solid #EFEEEF;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .form-table__cell:nth-last-child(-n+4) {
    border-bottom: 1px solid #EFEEEF;
  }
  .form-table__date-cell{
    grid-column-start: 3;
    grid-column-end: 5;
  }
 
}

@media (max-width: 768px) {
  .payments-page-container {
    padding-left: 0;
  }
  .seller-panel-orders-page {
    padding-left: 0px;
    padding-top: 0px;
  }
  
}

@media (max-width: 576px) {
  .form-table {
    -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
  }
  .form-table__date-cell {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .form-table__cell {
    padding: 0 15px;
    padding-bottom: 15px;
  }
  .form-table__cell:nth-child(7n+6), .form-table__cell:nth-child(7n+5), .form-table__cell:nth-child(7n+4) {
    border: none;
    padding: 0 15px;
  }
   .form-table__cell:nth-child(7n+7) {
    border-bottom: 3px solid #EFEEEF;
    padding: 0 15px;
    padding-bottom: 15px;
  }
  .form-table__cell:nth-child(7n+1), .form-table__cell:nth-child(7n+2), .form-table__cell:nth-child(7n+3) {
    padding-top: 15px;
  }
  .form-table__cell:nth-child(7n+1), .form-table__cell:nth-child(7n+2), .form-table__cell:nth-child(7n+3), .form-table__cell:nth-child(7n+4), .form-table__cell:nth-child(7n+5), .form-table__cell:nth-child(7n+6) {
    padding-bottom: 15px;
  }
  .form-table__cell:nth-last-child(-n+2) {
    border-bottom: 1px solid #EFEEEF;
  }
}


/* TRANSACTIONS */



/* REVIEWS */
.reviews-container {
  width: 100%;
  padding: 20px 0 0 20px;
}

.review-table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[5];
      grid-template-columns: repeat(5, auto);
  justify-items: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #EFEEEF;
  border-bottom: none;
  border-radius: 4px 4px 0px 0px;
  font-weight: 400;
  font-size: 12px;
  color: #2B2E35;
}

.review-table__head-cell {
  height: 40px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid #EFEEEF;
}

.review-table__adaprive-head {
  display: none;
}

.review-table__cell {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  border-bottom: 1px solid #EFEEEF;
}

.review-table__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-table__user-avatar {
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  margin-right: 8px;
}

.review-table__review {
  max-width: 230px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-table__control-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-table__control-btns button {
  margin-left: auto;
}

.report-to-review__form {
  width: 690px;
}

.report-to-review__select {
  margin-top: 15px;
}

.report-to-review__textarea {
  height: 75px;
}

.replay-to-review__form {
  width: 690px;
}

.replay-to-review__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0 10px 0px;
}

.replay-to-review__report-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  font-weight: 600;
  font-size: 11px;
  color: #B81111;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
}

.replay-to-review__report-btn::before {
  content: url(/img/icons/reviews/warning.svg);
  margin-right: 5px;
}

.replay-to-review__user {
  margin-right: 10px;
}

.replay-to-review__rating {
  margin-right: 10px;
}

.replay-to-review__text {
  font-weight: 400;
  font-size: 14px;
  height: 150px;
  overflow: hidden;
  color: #2A6071;
  background: #F0F5FB;
  border-radius: 5px;
  line-height: 20px;
  padding: 5px 10px 0 10px;
  margin-bottom: 15px;
  overflow-y: auto;
}

.replay-to-review__text::-webkit-scrollbar {
  width: 5px;
  padding-right: 20px;
}

.replay-to-review__text::-webkit-scrollbar-track {
  width: 4px;
  padding-right: 2px;
}

.replay-to-review__text::-webkit-scrollbar-thumb {
  background: #D4E1ED;
  width: 4px;
  border-radius: 5px;
}

@-moz-document url-prefix() {
  .replay-to-review__text {
    scrollbar-width: thin;
    scrollbar-color: #d4e1ed rgba(212, 225, 237, 0);
  }
}

@media (max-width: 992px) {
  .review-table {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0px;
    /* border: 1px solid #EFEEEF; */
    border: none;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
  .review-table__head-cell {
    display: none;
  }
  .review-table__adaprive-head {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 12px;
    color: #828282;
  }
  .review-table__cell {
    padding: 0;
    border: none;
    height: auto;
    height: 100%;
  }
  .review-table__control-btns-cell {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
    border-bottom: 1px solid #EFEEEF;
    border-right: 1px solid #EFEEEF;
    border-left: 1px solid #EFEEEF;
    padding: 8px 16px;
    padding-top: 20px;
    border-radius: 0px 0px 4px 4px;
    margin-bottom: 40px;
  }
  .review-table__user-cell {
    padding-top: 16px;
    padding-left: 16px;
    padding-bottom: 20px;
    border-top: 1px solid #EFEEEF;
    border-left: 1px solid #EFEEEF;
    border-radius: 4px 0px 0px 0px;
  }
  .review-table__review-cell {
    padding-left: 16px;
    border-left: 1px solid #EFEEEF;
  }
  .review-table__rating-cell {
    border-radius: 0px 4px 0px 0px;
    padding-top: 16px;
    padding-bottom: 20px;
    padding-right: 16px;
    border-right: 1px solid #EFEEEF;
    border-top: 1px solid #EFEEEF;
  }
  .review-table__date-cell {
    padding-right: 16px;
    border-right: 1px solid #EFEEEF;
  }
  .review-table__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .reviews-container {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .review-table__review {
    max-width: 150px;
  }
  .replay-to-review__info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
    grid-gap: 10px;
  }
  .replay-to-review__report-btn {
    -ms-grid-column: 3;
        grid-column-start: 3;
    margin-left: 0;
  }
}

/* REVIEWS */


/* PAYMENTS SETTINGS */

.payment-settings-form {
  width: 100%;
  padding-left: 20px;
  padding-top: 20px;
  position: relative;
}

.payment-settings-form__min-title {
  margin-bottom: 20px;
}

.payment-settings-form__demarcation-line {
  margin: 20px 0;
}

.payment-settings-form__payment-method-select {
  max-width: 315px;
}

.payment-settings-form__add-new-block_hidden {
  display: none;
}

.payment-settings-form__added-method-msg_hidden {
  display: none;
}

.payment-method-list {
  width: 100%;
  padding-bottom: 16px;
}

.payment-method-list__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
}

.payment-method-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 74px;
  padding: 0 24px;
  background: #F9FBFD;
  border-radius: 5px;
}

.payment-method-list__item:not(:last-child) {
  margin-bottom: 8px;
}

.payment-method-list__item_preffered {
  border: 1px solid #2570ED;
}

.payment-method-list__method-name {
  font-weight: 600;
  font-size: 16px;
  color: #2B2E35;
}

.payment-method-list__method-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  justify-self: center;
}

.payment-method-list__method-status {
  font-weight: 600;
  font-size: 12px;
  color: #2570ED;
  margin-bottom: 6px;
}

.payment-method-list__method-account {
  font-weight: 600;
  font-size: 12px;
  color: #828282;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 16px;
}

.payment-method-list__method-account_not-added {
  font-weight: 400;
  font-size: 12px;
  color: #2B2E35;
}

.payment-method-list__delete-item-btn {
  justify-self: flex-end;
}

.add-payment-form {
  padding-top: 32px;
}

.add-payment-form__input-label {
  margin-bottom: 8px;
}

.add-payment-form__input-container_short {
  max-width: 315px;
}

.add-payment-form__input-container_avg {
  max-width: 540px;
}

.add-payment-form__add-btn {
  margin-top: 20px;
  margin-left: auto;
}

.add-payment-form_hidden {
  display: none;
}

.add-bank-transfer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 16px;
}

.add-bank-transfer__add-btn {
  -ms-grid-column: 2;
      grid-column-start: 2;
  margin-top: 4px;
}

.add-payment-form_hidden {
  display: none;
}

@media (max-width: 768px) {
  .payment-settings-form {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .add-bank-transfer {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-column-gap: 0px;
  }
  .add-bank-transfer__add-btn {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .payment-method-list__method-info {
    max-width: 200px;
  }
}

@media (max-width: 470px) {
  .payment-method-list__method-info {
    max-width: 150px;
  }
}

@media (max-width: 400px) {
  .payment-method-list__method-info {
    max-width: 100px;
  }
}

.form-btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hidden {
  opacity: 0;
}

.form-successfully-message {
  -webkit-transition: opacity 1.0s ease;
  transition: opacity 1.0s ease;
}

.form-input-error-msg {
  margin-top: 6px;
}

/* PAYMENTS SETTINGS */


.chat-system-message {
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed var(--white-400, #B6C0CF);

  .chat-system-message__head{
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--blue-700, #6A83A8);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 145.455% */
    text-transform: uppercase;
  }

  .chat-system-message__review-rating{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }

  .chat-system-message__text{
    color: var(--black-800, #2B2E35);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 153.846% */
    span{
      color: var(--blue-600, #2570ED);
    }
  }
  .chat-system-message__marked-sent{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
    margin-top: 8px;
    color: var(--white-400, #B6C0CF);
    border-top: 1px dashed var(--white-400, #B6C0CF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    width: 100%;
    transition: color 0.4s, background-color 0.4s ease;
    svg{
      stroke: currentColor;
      transition: stroke 0.4s ease;
    }
  }
  .chat-system-message__marked-sent--active{
    color: #2570ED;
    
  }
}
.chat-system-message__marked-sent:hover{
  color: #B6C0CF
 
}
.chat-system-message__marked-sent--active:hover{
  color: #6A83A8;
}


.form-scroll-y {
  overflow: hidden;
  overflow-y: auto;
}

.form-scroll-y::-webkit-scrollbar {
  width: 5px;
  padding-right: 20px;
}

.form-scroll-y::-webkit-scrollbar-track {
  width: 4px;
  padding-right: 2px;
}

.form-scroll-y::-webkit-scrollbar-thumb {
  background: #D4E1ED;
  width: 4px;
  border-radius: 5px;
}

@-moz-document url-prefix() {
  .form-scroll-y {
    scrollbar-width: thin;
    scrollbar-color: #d4e1ed rgba(212, 225, 237, 0);
  }
}


.chat-send-form {
 
  border-radius: 8px;
  border: 1px solid var(--blue-150, #CDE2F3);
  display: flex;
  border-radius: 8px;

  .chat-send-form__container{
      display: flex;
      background: var(--white-0, #FFF);
      border-radius: 8px;
      width: 100%;
      padding: 12px;
  }
  .chat-send-form__input {
      color: var(--neutral-0, #2B2E35);
      border-radius: 8px;
      flex: 1 0 auto;
      height: 62px;
      resize: none;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: 0.1px;
      padding-right: 8px;
      margin-right: 8px;
      
     
      
  }
  .chat-send-form__input::placeholder{
    color: var(--blue-700, #6A83A8);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.1px;
}
.chat-send-form__send-btn{
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      min-width: auto;
      
  }
  .chat-send-form__msg-length{
      font-style: normal;
      font-weight: 400;
      font-size: 10px;
      line-height: 16px;
      color: #4A5383;
  }
  .chat-send-form__right{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 16px;
  }
  .chat-send-form__left{
      display: flex;
      flex-direction: column;
      flex: 1 0 auto;
  }
 
}
.seller-panel-order-item__chat-btn{
  display: flex;
  align-items: center;
  gap: 10px;
}


/* HTML: <div class="loader"></div> */
.seller-panel-loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  color: #2570ED;
  background: radial-gradient(farthest-side, currentColor calc(100% - 6px),#0000 calc(100% - 5px) 0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 13px),#000 calc(100% - 12px));
  border-radius: 50%;
  animation: l19 2s infinite linear;
}
.seller-panel-loader::before,
.seller-panel-loader::after {    
  content: "";
  grid-area: 1/1;
  background:
    linear-gradient(currentColor 0 0) center,
    linear-gradient(currentColor 0 0) center;
  background-size: 100% 10px,10px 100%;
  background-repeat: no-repeat;
}
.seller-panel-loader::after {
   transform: rotate(45deg);
}

@keyframes l19 { 
  100%{transform: rotate(1turn)}
}
.seller-panel-loader-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}