/*body {*/
/*  margin: 0;*/
/*  text-rendering: optimizeLegibility;*/
/*  background-color: #eee;*/
/*  color: #00141E;*/
/*  font-size: 14px;*/
/*  line-height: 1.3;*/
/*  font-weight: 400;*/
/*  min-width: 1170px;*/
/*  min-height: 100vh;*/
/*  font-family: Arial;*/
/*}*/
/*body * {*/
/*  box-sizing: border-box;*/
/*}*/
/*body .container {*/
/*  margin: 60px auto 0;*/
/*  width: 1048px;*/
/*  display: flex;*/
/*}*/
/*body .container .left {*/
/*  width: 860px;*/
/*}*/

.coupon {
  width: 180px;
  margin-left: 8px;
  background-color: #fff;
  border-radius: 8px;

  box-sizing: border-box;
  line-height: 1.3;
  font-weight: 400;
  font-size: 14px;
  color: #00141E;
  text-rendering: optimizeLegibility;

}
.coupon .coupon-header {
  height: 45px;
  padding: 0 8px 0 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coupon .coupon-header .coupon-header_title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.coupon .coupon-header .coupon-header_buttons {
  display: flex;
}
.coupon .coupon-header .coupon-header_buttons a {
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 9px;
  background-color: #eee;
}
.coupon .coupon-header .coupon-header_buttons a svg {
  fill: #6A7275;
}
.coupon .coupon-header .coupon-header_buttons a:hover {
  background-color: #FF0046;
}
.coupon .coupon-header .coupon-header_buttons a:hover svg {
  fill: #FFFFFF;
}
.coupon .coupon-tabs {
  height: 33px;
  /*width: 100%;*/
  padding: 0 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.coupon .coupon-tabs .coupon-tabs_tab {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-items: center;
  justify-content: center;
  align-items: center;
  height: 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #555e61;
  text-transform: uppercase;
  cursor: pointer;
}
.coupon .coupon-tabs .coupon-tabs_tab:hover {
  color: #0f2d37;
}
.coupon .coupon-tabs .coupon-tabs_tab.active {
  color: #ff0046;
}
.coupon .coupon-tabs .coupon-tabs_tab.active:before {
  border-radius: 1.5px 1.5px 0 0;
  bottom: 0;
  left: 0;
  content: "";
  height: 3px;
  position: absolute;
  width: 100%;
  background-color: #ff0046;
}
.coupon .coupon-bets {
  padding: 0 8px;
}
.coupon .coupon-bets .coupon-bet {
  position: relative;
  padding: 10px 4px;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_title {
  font-weight: 400;
  color: #001E2F;
  margin-bottom: 10px;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_content {
  display: flex;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_content .coupon-bet_content_choice {
  flex: 1;
  color: #999;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_content .coupon-bet_content_choice span {
  margin-left: 8px;
  font-weight: 600;
  color: #FF0046;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_content .coupon-bet_content_rate {
  display: flex;
  align-items: end;
  font-weight: 700;
  color: #FF0046;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_close {
  position: absolute;
  right: 4px;
  top: 10px;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_close a svg {
  fill: #C8CDCD;
}
.coupon .coupon-bets .coupon-bet .coupon-bet_close a:hover svg {
  fill: #FF0046;
}
.coupon .coupon-minmax {
  margin-top: 8px;
  font-size: 12px;
  color: #999999;
  padding: 0 8px;
}
.coupon .coupon-rate {
  padding: 0 8px;
  margin: 12px 0 8px;
  display: flex;
  align-items: center;
}
.coupon .coupon-rate .coupon-rate_title {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  margin-right: 6px;
}
.coupon .coupon-rate .coupon-rate_input {
  flex: 1;
}
.coupon .coupon-rate .coupon-rate_input input {
  width: 100%;
  border: 1px solid #C8CDCD;
  padding: 0 10px;
  height: 30px;
  background-color: #fff;
  font-size: 12px;
  color: #757575;
  border-radius: 8px;
  outline: 0;
}
.coupon .coupon-rate .coupon-rate_input input:hover {
  border: 1px solid #FF0046;
}
.coupon .coupon-rate .coupon-rate_input input:focus {
  border: 1px solid #FF0046;
}
.coupon .coupon-win {
  margin: 0 8px 12px;
  padding: 8px 0;
  background-color: #EEEEEE;
  border-radius: 8px;
  font-size: 10px;
  text-transform: uppercase;
  color: #999999;
  text-align: center;
  font-weight: 700;
}
.coupon .coupon-win .bet_success {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #30a73b;
}
.coupon .coupon-win div:last-child {
  color: #FF0046;
  font-size: 13px;
  padding: 4px 0;
}
.coupon .coupon-make {
  padding: 0 8px;
}
.coupon .coupon-make a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #0F2D37;
  color: #FFFFFF;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  height: 32px;
}
.coupon .coupon-make a.disabled {
  background-color: var(--color-support-2);
  color: #606060;
    cursor: default;
}
.coupon .coupon-make a:not(.disabled):hover {
  background-color: #FF0046;
}
.coupon .coupon-history {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coupon .coupon-history a {
  font-size: 12px;
  color: #757575;
}
.coupon .coupon-history a:hover {
  color: #0F2D37;
}

.account-menu {
  width: 156px;
  margin-right: 8px;
}
.account-menu a {
  display: flex;
  padding: 0 12px;
  height: 32px;
  border-radius: 4px;
  align-items: center;
  margin-bottom: 4px;
  font-size: 12px;
  color: #00141E;
  text-decoration: none;
}
.account-menu a.active {
  background-color: #fff;
  font-weight: 700;
  color: #000;
}
.account-menu a:hover {
  background-color: #fff;
}

.account-content {
  flex: 1;
}
.account-content .account-content_block {
  border-radius: 8px;
  background-color: #fff;
  padding: 20px 16px 12px;
  margin-bottom: 8px;
}
.account-content .account-content_block.center {
  padding: 40px 170px;
}
.account-content .account-content_header {
  font-size: 14px;
  font-weight: 700;
  color: #00141E;
  letter-spacing: 0.4px;
  margin-bottom: 30px;
}
.account-content .account-content_tabs-block {
  display: flex;
}
.account-content .account-content_tabs-block .account-content_tabs {
  flex: 1;
  display: flex;
}
.account-content .account-content_tabs-block .account-content_tabs .account-content_tab {
  margin-right: 8px;
}
.account-content .account-content_tabs-block .account-content_tabs .account-content_tab a {
  display: flex;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 8px;
  background-color: #EEEEEE;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555E61;
  text-decoration: none;
}
.account-content .account-content_tabs-block .account-content_tabs .account-content_tab a:hover {
  color: #00141E;
}
.account-content .account-content_tabs-block .account-content_tabs .account-content_tab.active a {
  background-color: #FF0046;
  color: #FFFFFF;
}
.account-content .account-content_tabs-block .account-content_filter {
  display: flex;
  align-items: center;
}
.account-content .account-content_tabs-block .account-content_filter label {
  margin-right: 8px;
  font-size: 12px;
  color: #757575;
  font-weight: 700;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input {
  position: relative;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input .account-content_filter_icon {
  position: absolute;
  display: flex;
  align-items: center;
  height: 30px;
  top: 0;
  left: 12px;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input .account-content_filter_icon svg {
  fill: #808689;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input input {
  width: 200px;
  border: 1px solid #C8CDCD;
  padding: 0 10px 0 34px;
  height: 30px;
  background-color: #fff;
  font-size: 12px;
  font-weight: 700;
  color: #00141E;
  border-radius: 8px;
  outline: 0;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input input:hover {
  border: 1px solid #FF0046;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input input:hover + .account-content_filter_icon svg {
  fill: #FF0046;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input input:focus {
  border: 1px solid #FF0046;
}
.account-content .account-content_tabs-block .account-content_filter .account-content_filter_input input:focus + .account-content_filter_icon svg {
  fill: #FF0046;
}
.account-content .account-table {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
}
.account-content .account-table .account-table_row {
  display: flex;
  padding: 0 4px;
  align-items: center;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.account-content .account-table .account-table_row:nth-child(odd) {
  background-color: #F7F7F7;
}
.account-content .account-table .account-table_row:nth-child(even) {
  background-color: #EDEDED;
}
.account-content .account-table .account-table_row:hover:nth-child(odd) {
  background-color: #eaeaea;
}
.account-content .account-table .account-table_row:hover:nth-child(even) {
  background-color: #e0e0e0;
}
.account-content .account-table .account-table_col {
  padding: 0 4px;
  font-size: 12px;
  color: #00141E;
}
.account-content .account-table .account-table_col:nth-child(1) {
  width: 12%;
}
.account-content .account-table .account-table_col:nth-child(2) {
  width: 18%;
}
.account-content .account-table .account-table_col:nth-child(3) {
  width: 34%;
}
.account-content .account-table .account-table_col:nth-child(4) {
  width: 12%;
}
.account-content .account-table .account-table_col:nth-child(5) {
  width: 12%;
}
.account-content .account-table .account-table_col:nth-child(6) {
  width: 12%;
}
.account-content .account-table .account-table_col span.account-table_date {
  margin-left: 8px;
}
.account-content .account-table .account-table_info {
  display: flex;
  padding: 12px 4px;
  min-height: 40px;
  border-radius: 8px;
  margin-bottom: 4px;
  background-color: #fff;
}
.account-content .account-table .account-table_info .account-table_col {
  padding: 0 4px;
  color: #555E61;
}
.account-content .account-table .account-table_info .account-table_col:nth-child(1) {
  width: 12%;
}
.account-content .account-table .account-table_info .account-table_col:nth-child(2) {
  width: 76%;
}
.account-content .account-table .account-table_info .account-table_col:nth-child(3) {
  width: 12%;
}
.account-content .account-table .account-table_info .account-table_col.win {
  opacity: 0.5;
}
.account-content .account-table .account-table_info .account-table_col.lose {
  opacity: 0.5;
}
.account-content .account-table .account-table_info .account-table_col.return {
  opacity: 0.5;
}
.account-content .account-table .account-table_header {
  border-bottom: 1px solid #eee;
  padding: 0 8px;
}
.account-content .account-table .account-table_header .account-table_row {
  background-color: #fff;
  margin-bottom: 0;
}
.account-content .account-table .account-table_header .account-table_row:hover {
  background-color: #fff;
}
.account-content .account-table .account-table_header .account-table_row .account-table_col {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555E61;
}
.account-content .account-table .account-table_body {
  padding: 4px 8px;
}
.account-content .account-table .account-table_body .account-table_col.rate {
  color: #DDAE2E;
  font-weight: 700;
}
.account-content .account-table .account-table_body .account-table_col.sum {
  font-weight: 700;
}
.account-content .account-table .account-table_body .account-table_col.win {
  color: #0F9B60;
  font-weight: 700;
}
.account-content .account-table .account-table_body .account-table_col.return {
  color: #004682;
  font-weight: 700;
}
.account-content .account-table .account-table_body .account-table_col.lose {
  color: #B61212;
  font-weight: 700;
}
.account-content .account-content_fields {
  margin: 24px 0;
}
.account-content .account-content_fields .account-content_field {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.account-content .account-content_fields .account-content_field label, .account-content .account-content_fields .account-content_field div.label {
  width: 100px;
  font-size: 12px;
  color: #757575;
}
.account-content .account-content_fields .account-content_field input {
  flex: 1;
  border: 1px solid #C8CDCD;
  padding: 0 10px;
  height: 30px;
  background-color: #fff;
  font-size: 12px;
  color: #00141E;
  border-radius: 8px;
  outline: 0;
}
.account-content .account-content_fields .account-content_field input:hover {
  border: 1px solid #000;
}
.account-content .account-content_fields .account-content_field input:focus {
  border: 1px solid #000;
}
.account-content .account-content_fields .account-content_field input:disabled {
  border: 1px solid #C8CDCD;
  background-color: #EEEEEE;
}
.account-content .account-content_fields .account-content_button input:disabled {
  background-color: #a0a0a0;
}
.account-content .account-content_fields .account-content_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.account-content .account-content_fields .account-content_button input {
  border: 0;
  width: 162px;
  border-radius: 8px;
  background-color: #0F2D37;
  color: #FFFFFF;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  height: 36px;
}
.account-content .account-content_fields .account-content_button input:hover {
  background-color: #FF0046;
}
.account-content .account-content_payments .account-content_payment {
  background-color: #EEEEEE;
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_logo {
  width: 184px;
  height: 84px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_logo img {
  max-width: 150px;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_info {
  flex: 1;
  margin: 0 24px;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_info .account-content_payment_title {
  margin: 4px 0 10px 0;
  font-size: 14px;
  color: #00141E;
  font-weight: 700;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_info .account-content_payment_description {
  font-size: 12px;
  color: #757575;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_info .account-content_payment_description span {
  font-weight: 700;
  color: #FF0046;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_button {
  display: flex;
  align-items: center;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  border-radius: 8px;
  background-color: #0F2D37;
  color: #FFFFFF;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  height: 36px;
}
.account-content .account-content_payments .account-content_payment .account-content_payment_button a:hover {
  background-color: #FF0046;
}
.coupon-button-menu {
  width: 100px;
}
.coupon-button-menu .header__text--user {
    display: grid;
}
@media only screen and (min-width: 640px) {
  .lmc__template {
    font-size: 12px;
  }
  .lmc__templateHref {
    white-space: normal;
  }
  .leftMenu__text {
    white-space: normal;

  }
  .selfPromo__mainGroup {
    grid-template: " project social apps" minmax(100px, auto) /434px 259px auto;
    padding: 50px 16px 35px;
  }
}
@media only screen and (max-width: 639px) {
  .footerContainer {
    /*display: none;*/
  }
  .container__mainInner {
    padding-bottom: 0px !important;
  }
  .container__fsbody {
    border-radius: 0;
    padding: 0 0 0px !important;
  }
  .modal__dimmer--seoBarAbove.modal__dimmer--lsid {
    --range-modal: 50px;
  }
  .account-content .account-content_block.center {
    padding: 40px 30px;
  }
  .coupon {
    position: fixed;
    top: 55px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    margin: 0 !important;
  }
  .coupon-bets {
    max-height: calc(100vw - 90px);
    overflow-y: scroll;
  }
  .container__bannerZone.coupon-active {
    background: rgba(0, 0, 0, .35);
    border-radius: 12px;
    bottom: 0;
    display: flex;
    margin: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: var(--zIndex-modalWindow);
  }
  .modal__dimmer--seoBarAbove.modal__dimmer--search {
    --range-modal: 45px;
  }
  .modal__window--search .modal__header {
    display: flex !important;
  }
  .modal__window--search .modal__closeButton {
    display: block;
  }
  .modal__window--search {
    height: 100px;
    border-radius: 12px;
  }
  .account-menu {
    display: none;
  }
  .account-content .account-table .account-table_info .account-table_col:nth-child(1) {
    width: 75px;
  }
  .account-content .account-table .account-table_info .account-table_col:nth-child(3) {
    width: 30px;
  }
  .account-content .account-table .account-table_info .account-table_col:nth-child(2) {
    width: auto;
  }
  .account-content_fields label {
    display: none;
  }
  .selectBox {
    width: 100%;
  }
}
.betslip-button_Button__1rymI {
  align-items: center;
  border-radius: 36px;
  bottom: 24px;
  color: #fff;
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: env(safe-area-inset-bottom);
  padding: 0 15px;
  position: fixed;
  right: 24px;
  z-index: 5;

  background: linear-gradient(171deg, #FF0046, #C90038);
  box-shadow: 0 1px 4px #FF0245, 0 4px 14px rgb(255 2 69);
}
.svg-icon {
  fill: currentColor;
  display: block;
  font-size: inherit;
  height: 1em;
  position: relative;
  top: 0;
  width: 1em;
}
.betslip-button_Ticket__2R0MJ {
    font-size: 28px!important;
}
.betslip-button_Outcomes__3KxxE {
  margin-left: 10px;
}
.betslip-button_Coefficient__QQZ59 {
  font-size: 16px;
  font-weight: 700;
}
.betslip-button_OutcomesAmount__24FaY {
    color: #e2e8ee;
    font-size: 12px;
    text-transform: lowercase;
}
.back-detail {
  padding: 0px 20px;
  color: #fff;
  text-decoration: underline;
  line-height: 40px;
}
.hidden {
  display: none;
}
.userControls__item {
  grid-template: " icon text action . " 52px/20px 1fr max-content 16px;
}
.footer__content {
  grid-template: " legal advert ." auto " view view ." auto " alternatives copyright ." auto ". 1fr 340px";
}
.footer__copyright {
  display: block;
  text-align: center;
}

.action-rules p {
    color: var(--color-secondary-2);
    counter-reset: terms-counter-3;
    font-size: 13px;
    line-height: 18px;
}
.action-rules .account-menu a {
    padding: 5px 12px;
   height: auto;
}
.useTerms {
   margin: 0 !important;
}
.container__mainInner {
  padding-bottom: 24px;
}
.calendar.select {
  border-color : var(--color-primary);
}
@media only screen and (max-width: 799px) {
  .calendar.select {
    color: var(--color-primary);
  }
}
.controller-index.action-index .container__livetable{
  min-height: 100%;
}
.modal__window {
  max-height: calc(100vh - 90px);
}
