@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans.ttf);
}
@font-face {
  font-family: "Gagalin";
  src: url(../fonts/Gagalin.otf);
}
html, body {
  width: 100vw;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
}

#app {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.auth_page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/background.jpg);
  background-size: cover;
}

.auth_page_row {
  position: relative;
  background-color: #F5F5F7;
  border-radius: 8px;
  padding: 30px 20px;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  max-width: 400px;
}
.auth_page_row h1 {
  font-weight: 500;
  padding: 0;
  margin: 0;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.auth_page_row_input {
  width: 100%;
  margin-bottom: 30px;
}
.auth_page_row_input span {
  margin-bottom: 10px;
  display: block;
  color: #7F7C89;
  font-weight: 500;
}
.auth_page_row_input input {
  width: calc(100% - 60px);
  border: 0;
  height: 40px;
  border-radius: 7px;
  padding: 0 20px 0 40px;
}
.auth_page_row_input input:active, .auth_page_row_input input:hover, .auth_page_row_input input:focus {
  outline: 0;
  outline-offset: 0;
}
.auth_page_row_input input:focus {
  border: 2.5px solid #A3F267;
  height: 36px;
}

.input_danger input {
  border: 2.5px solid #dd6a47;
}

.auth_page_row_input_row {
  width: 100%;
  position: relative;
}
.auth_page_row_input_row input {
  color: #7F7C89;
  padding-top: 1.5px;
}
.auth_page_row_input_row svg {
  position: absolute;
  left: 13px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  stroke: white;
}
.auth_page_row_input_row svg:hover {
  stroke: rgb(255, 0, 0);
}

.auth_page_row_button {
  width: 100%;
}
.auth_page_row_button ab {
  color: #7F7C89;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: right;
  margin-top: 30px;
}
.auth_page_row_button ab a {
  color: black;
  cursor: pointer;
  font-weight: 500;
}

.auth_page_row_button_row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 41.5px;
  background-color: white;
  font-weight: 500;
  font-size: 14px;
  color: #7F7C89;
  cursor: pointer;
}
.auth_page_row_button_row.selected {
  background-color: #A3F267;
  color: white;
}

.index_page {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #F6F6F6;
}

.index_page_header {
  height: 80px;
  width: 100%;
  background-color: white;
}

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

.index_page_header_row_logo {
  font-family: "Gagalin";
  font-size: 40px;
  color: #78BA52;
}

.index_page_header_row_menu {
  display: flex;
  align-items: center;
}

.index_page_header_row_menu_block {
  color: #838383;
  font-weight: 500;
  font-size: 15px;
  margin-left: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.index_page_header_row_menu_block svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.index_page_header_row_menu_block svg path {
  stroke: #838383;
}
.index_page_header_row_menu_block.selected {
  color: #78BA52;
}
.index_page_header_row_menu_block.selected svg path {
  stroke: #78BA52;
}

.index_page_body {
  width: 100%;
  display: flex;
  justify-content: center;
  height: calc(100vh - 80px);
  overflow-y: scroll;
}

.index_page_body_row {
  width: calc(100% - 40px);
  max-width: 1200px;
  padding: 0 20px;
  padding-top: 40px;
  color: #34373B;
}

.index_page_body_row_home_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
}
.index_page_body_row_home_header span {
  font-size: 16px;
  font-weight: 600;
}

.index_page_body_row_home_body {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 30px;
  gap: 20px;
}

.index_page_body_row_home_block {
  padding: 20px 35px;
  border-radius: 20px;
  background-color: white;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 20px;
}

.index_page_body_row_home_block_header {
  width: 100%;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_page_body_row_home_block_header svg {
  width: 30px;
  height: 30px;
}
.index_page_body_row_home_block_header svg path {
  stroke: #34373B;
}

.index_page_body_row_home_block_balance {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #78BA52;
}
.index_page_body_row_home_block_balance a {
  color: #34373B;
}

.index_page_body_row_home_block_header_button {
  background-color: #78BA52;
  color: white;
  padding: 5px 20px;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.index_page_body_row_home_block_addBalance {
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.index_page_body_row_home_block_addBalance span {
  color: #8D94B5;
  font-weight: 500;
  font-size: 14px;
}
.index_page_body_row_home_block_addBalance input {
  width: calc(100% - 40px);
  height: 40px;
  border: 0;
  padding-left: 40px;
  font-size: 17px;
  font-weight: 500;
  border-left: 2.5px solid #A3F267;
  cursor: pointer;
}
.index_page_body_row_home_block_addBalance input::-moz-placeholder {
  font-weight: 500;
  font-size: 15px;
}
.index_page_body_row_home_block_addBalance input::placeholder {
  font-weight: 500;
  font-size: 15px;
}
.index_page_body_row_home_block_addBalance input:active, .index_page_body_row_home_block_addBalance input:hover, .index_page_body_row_home_block_addBalance input:focus {
  outline: 0;
  outline-offset: 0;
}
.index_page_body_row_home_block_addBalance_block {
  position: absolute;
  left: 15px;
  top: 3px;
}
.index_page_body_row_home_block_addBalance_block span {
  font-size: 26px;
}

.index_page_body_row_home_block_button {
  width: 100%;
  height: 45px;
  border-radius: 16px;
  background-color: #78BA52;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  margin-top: 30px;
  cursor: pointer;
}

.index_page_body_row_payment_body {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-top: 30px;
  gap: 20px;
}

.index_page_body_row_shops_body_new {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-top: 30px;
  gap: 20px;
}

.index_page_body_row_payment_body_history_more {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 200px;
  position: relative;
}

.index_page_body_row_payment_body_history_more_button {
  position: absolute;
  top: calc(100% + 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  width: 100%;
}

.index_page_body_row_payment_body_history_more_button_block {
  padding: 7px 25px;
  border-radius: 12px;
  background-color: white;
  cursor: pointer;
  color: #78BA52;
}

.index_page_body_row_shops_body_new_more {
  grid-template-columns: 1fr;
}

.index_page_body_row_shops_body_new_more {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
  gap: 20px;
}

.index_page_body_row_payment_body_menu_block_body {
  width: 100%;
}

.index_page_body_row_payment_body_menu_block_body_input_line {
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.index_page_body_row_payment_body_menu_block_body_input_line input {
  width: calc(100% - 40px);
  height: 40px;
  border: 0;
  padding-left: 40px;
  font-size: 17px;
  font-weight: 500;
  border-left: 3.5px solid #A3F267;
  cursor: pointer;
}
.index_page_body_row_payment_body_menu_block_body_input_line input::-moz-placeholder {
  font-weight: 500;
  font-size: 15px;
  color: black;
}
.index_page_body_row_payment_body_menu_block_body_input_line input::placeholder {
  font-weight: 500;
  font-size: 15px;
  color: black;
}
.index_page_body_row_payment_body_menu_block_body_input_line input:active, .index_page_body_row_payment_body_menu_block_body_input_line input:hover, .index_page_body_row_payment_body_menu_block_body_input_line input:focus {
  outline: 0;
  outline-offset: 0;
}
.index_page_body_row_payment_body_menu_block_body_input_line span {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.index_page_body_row_payment_body_menu_block_body_input_line_dropDown {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #F6F6F6;
  border-radius: 7px;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}

.index_page_body_row_payment_body_menu_block_body_input_line_dropDown_line {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.index_page_body_row_payment_body_menu_block_body_input_line_dropDown_line span {
  position: relative;
  top: 4px;
}

.userSelectNone {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.index_page_body_row_payment_body_menu_block_body_block {
  width: 100%;
}

.index_page_body_row_payment_body_menu_block_body_infoLine {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  margin-top: 20px;
}
.index_page_body_row_payment_body_menu_block_body_infoLine a {
  font-weight: 600;
  color: #78BA52;
  font-size: 19px;
}

.index_page_body_row_payment_body_menu_block_body_small {
  margin-top: 20px;
}
.index_page_body_row_payment_body_menu_block_body_small .index_page_body_row_payment_body_menu_block_body_infoLine {
  font-size: 14px;
  height: 20px;
}
.index_page_body_row_payment_body_menu_block_body_small .index_page_body_row_payment_body_menu_block_body_infoLine a {
  font-size: 14px;
}

.index_page_body_row_settings_body {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  gap: 20px;
}

.index_page_body_row_settings_body_block {
  width: calc(100% - 70px);
  padding: 20px 35px;
  border-radius: 20px;
  background-color: white;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 20px;
  margin-top: 20px;
}

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

.globalMenu {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  background-color: white;
  z-index: 10;
}

.globalMenu_button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  cursor: pointer;
}
.globalMenu_button svg {
  margin-right: 20px;
  width: 30px;
  height: 30px;
}

.globalMenu_body {
  width: 100%;
}
.globalMenu_body .index_page_header_row_menu_block {
  height: 60px;
}

.globalMenu_body_button {
  display: none;
}
.globalMenu_body_button svg {
  width: 30px;
  height: 30px;
}

.index_page_body_row_shops_body {
  width: 100%;
}

.index_page_body_row_shops_body_new {
  width: 100%;
}
.index_page_body_row_shops_body_new .index_page_body_row_home_block {
  margin-top: 40px;
  margin-bottom: 40px;
}

.index_page_body_row_home_block_addBalance_shops_http .index_page_body_row_home_block_addBalance_block span {
  font-size: 14px;
  top: 6px;
  position: relative;
}
.index_page_body_row_home_block_addBalance_shops_http .index_page_body_row_home_block_addBalance_block input {
  padding-left: 70px;
}

.index_page_body_row_home_block_addBalance_shops_http_input {
  padding-left: 70px !important;
}

.index_page_body_row_admins_shops_body {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 40px;
}

.index_page_body_row_home_block_admin_buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  color: #78BA52;
  cursor: pointer;
}

.index_page_body_row_home_block_admin_buttons_button_cencel {
  color: #dd6a47;
}

.index_page_authHost {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index_page_body_row_admins_shops_header {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-around;
}

.index_page_body_row_admins_shops_header_selected {
  color: #78BA52;
}

.index_page_body_row_payment_body_menu_block_body_reactingPay {
  width: 100%;
  margin-top: 20px;
}
.index_page_body_row_payment_body_menu_block_body_reactingPay input {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
.index_page_body_row_payment_body_menu_block_body_reactingPay .index_page_body_row_payment_body_menu_block_body_reactingPay_button {
  background-color: #A3F267;
  padding: 5px 20px;
  border-radius: 999px;
  color: white;
  text-align: center;
  cursor: pointer;
}

.index_page_body_row_home_block_new {
  width: calc(100% - 40px);
  padding: 20px;
  display: flex;
  border-radius: 2px;
  background-color: white;
}

.index_page_body_row_home_block_new_line {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}

.index_page_body_row_home_block_new_header {
  width: calc(100% - 40px);
  padding: 20px;
  display: flex;
  border-radius: 2px;
  background-color: white;
}

.index_page_body_row_home_block_new_header_line {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #D24C8C;
}

.index_page_body_row_home_block_new_line_button {
  background-color: #00BEFF;
  padding: 2px 7px;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  margin: 0 5px;
}

.flex-s5 {
  flex: 0.5;
}

.index_page_body_row_home_block_new_line_button_red {
  background-color: #D24C8C;
}

.index_page_body_row_home_block_new_line_grid {
  display: grid;
  grid-gap: 10px;
}

.app_modal {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.app_modal_row {
  padding: 20px;
  border-radius: 12px;
  background-color: white;
  width: 100%;
  margin: 0 20px;
  max-width: 300px;
  position: relative;
}
.app_modal_row a {
  font-weight: 600;
  color: #D24C8C;
}
.app_modal_row input {
  width: calc(100% - 24px);
  margin-top: 1dvb;
  border: 0;
  height: 35px;
  padding: 0 10px;
  border-left: 4px solid #78BA52;
}

.app_modal_row_button {
  padding: 5px 20px;
  border-radius: 999px;
  color: white;
  background-color: #78BA52;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
}

.app_modal_row_close {
  position: absolute;
  right: 10%;
  top: 10%;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.index_page_body_row_admins_settings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.index_page_body_row_transfers {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.index_page_body_row_transfers_menu {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}

.index_page_body_row_transfers_history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.index_page_body_row_payment_body_history_border {
  border-bottom: 1px solid black;
}

.index_page_body_row_home_block_bigNumber {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.getClassTransfer_from {
  border-right: 4px solid #dd6a47;
}

.getClassTransfer_to {
  border-right: 4px solid #78BA52;
}

.index_page_body_row_payment_body_history_alert {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  background-color: white;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #78BA52;
  margin-top: 40px;
  text-align: center;
}

.index_page_body_row_payment_body_menu_block_body_bigButton {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.index_page_body_row_payment_body_menu_block_body_bigButton_row {
  padding: 7px 30px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  background-color: #78BA52;
  cursor: pointer;
}

.auth_page_row_input ab {
  font-size: 13px;
  text-align: right;
  display: block;
  width: 100%;
  cursor: pointer;
  margin-top: 5px;
}

.index_page_body_row_home_header_copy {
  display: flex;
  align-items: center;
}
.index_page_body_row_home_header_copy bb {
  font-weight: 600;
  margin-left: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.index_page_body_row_home_header_copy bb:active {
  font-size: 20px;
}
.index_page_body_row_home_header_copy svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  stroke: #78BA52;
  fill: #78BA52;
}

.index_page_body_row_home_block_shopAccept_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index_page_body_row_home_block_shopAccept_header_icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #78BA52;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_page_body_row_home_block_shopAccept_header_icon svg {
  width: 30px;
  height: 30px;
}

.index_page_body_row_home_block_shopAccept_description {
  margin-top: 12px;
}

.index_page_body_row_home_block_shopAccept_balance .index_page_body_row_home_block_balance {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 40px;
}

.index_page_body_row_home_block_shopAccept_header_name {
  display: flex;
  align-items: center;
}
.index_page_body_row_home_block_shopAccept_header_name span {
  font-size: 23px;
  margin-left: 20px;
  font-weight: 500;
}

.index_page_body_row_home_block_shopAccept_header_buttons {
  display: flex;
  align-items: center;
}

.index_page_body_row_home_block_shopAccept_header_buttons_open {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #78BA52;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.index_page_body_row_home_block_shopAccept_info {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.index_page_body_row_home_block_shopAccept_info_block {
  margin-right: 20px;
}
.index_page_body_row_home_block_shopAccept_info_block .index_page_body_row_home_block_shopAccept_header_icon {
  border-radius: 50%;
  margin: 0 auto;
}
.index_page_body_row_home_block_shopAccept_info_block .index_page_body_row_home_block_shopAccept_header_icon svg {
  width: 25px;
}
.index_page_body_row_home_block_shopAccept_info_block span {
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 5px;
  font-weight: 600;
}

.index_page_body_row_shops_body_alertUrl {
  width: calc(100% - 40px);
  padding: 20px;
  border-radius: 12px;
  background-color: white;
}
.index_page_body_row_shops_body_alertUrl span {
  font-size: 22px;
  font-weight: 600;
}
.index_page_body_row_shops_body_alertUrl a {
  color: #78BA52;
  font-size: 16px;
  font-weight: 600;
}

.index_page_body_row_shops_body_alertUrl_line {
  width: 100%;
  margin-bottom: 20px;
}
.index_page_body_row_shops_body_alertUrl_line p {
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.index_page_body_row_shops_body_alertUrl_line ad {
  font-size: 15px;
}
.index_page_body_row_shops_body_alertUrl_line input {
  width: 100%;
  max-width: 400px;
  border: 1px solid #BBBBBB;
  border-radius: 12px;
  padding: 0 10px;
  height: 35px;
  margin-top: 5px;
}

.index_page_body_row_shops_body_alertUrl_line_telegram {
  padding: 7px 25px;
  border-radius: 12px;
  border: 1px solid #78BA52;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  cursor: pointer;
}
.index_page_body_row_shops_body_alertUrl_line_telegram span {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 1160px) {
  .index_page_body_row_payment_body {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .index_page_body_row_home_body {
    grid-template-columns: 1fr;
  }
  .index_page_body_row_settings_body {
    grid-template-columns: 1fr;
  }
  .index_page_header_row_menu {
    display: none;
  }
  .globalMenu_body_button {
    display: block;
  }
  .index_page_body_row_transfers_menu {
    grid-template-columns: 1fr;
  }
  .index_page_body_row_transfers_history {
    grid-template-columns: 1fr;
  }
  .index_page_body_row_transfers {
    grid-template-columns: 1fr;
  }
  .index_page_body_row_admins_shops {
    min-width: 1200px;
  }
  .index_page_body_settings {
    display: block;
  }
  .index_page_body_row_shops_body_new {
    grid-template-columns: 1fr;
  }
  .index_page_body_row_home_header {
    display: grid;
    grid-gap: 20px;
  }
}/*# sourceMappingURL=index.css.map */