* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #606060;
  font-size: 13px;
}
input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  height: 40px;
  outline: none;
}
select {
  height: 42px;
}
textarea {
  height: auto;
  padding: 15px;
  left: 50%;
}
.notices {
  position: fixed;
  z-index: 2;
  bottom: 15px;
  width: 100%;
  width: 1170px;
  transform: translateX(-50%);
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.notices .wrap {
  padding: 0;
}
.notices .spec-message {
  padding: 15px;
}
@media screen and (max-width: 460px) {
  .notices {
    max-width: calc(100% - 30px);
    padding: 15px;
  }
}
.spec-message {
  background-color: #ffcc00;
  padding: 15px 30px;
  border-radius: 10px;
}
.spec-message .wrap {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.spec-message span {
  font-size: 20px;
  font-weight: bold;
}
.spec-message button {
  align-self: flex-end;
}
.btn {
  cursor: pointer;
  height: 40px;
  padding: 0 15px;
  border: none;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn svg {
  fill: #606060;
  height: 18px;
  width: 18px;
  margin-right: 5px;
}
.btn i {
  margin-right: 5px;
}
.btn:hover {
  background-color: #e1e1e1;
}
.btn.v1 {
  background-color: #3399FF;
  color: white;
}
.btn.v1:hover {
  background-color: #298ff5;
}
.btn.v2 {
  height: auto;
  padding: 0;
  background: none;
}
.btn.payment {
  background-color: #8CC63F;
  color: white;
}
.btn.logout {
  height: 30px;
  padding: 0 20px;
  background-color: #FFCC00;
  border-radius: 0;
}
.wrap {
  max-width: 1170px;
  padding: 15px;
  margin: auto;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
h1,
h2 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
h2 {
  font-size: 20px;
  text-align: left;
}
.pagination {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
}
.pagination ul {
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  border-right: 1px solid #f5f5f5;
}
.pagination ul li:last-child {
  border: none;
}
.pagination ul li a {
  height: 25px;
  min-width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li.active {
  background-color: #f5f5f5;
}
.menu-btn {
  border: none;
  background: none;
  font-size: 30px;
}
.menu-btn svg {
  height: 25px;
  width: 25px;
  fill: #606060;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 5;
}
.mobile-menu .menu {
  padding: 30px;
  position: fixed;
  background-color: white;
  right: 0;
  left: 80px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu .menu button {
  position: absolute;
  top: 15px;
  right: 15px;
}
.mobile-menu .menu hr {
  margin: 30px 0;
}
.mobile-menu .menu a i {
  margin-right: 5px;
  width: 20px;
}
.mobile-menu .menu ul li {
  margin-bottom: 30px;
}
.mobile-menu .menu ul li:last-child {
  margin: 0;
}
.mobile-menu .menu ul li a {
  display: inline-flex;
  align-items: center;
}
.mobile-menu .menu ul li a svg {
  height: 25px;
  fill: #606060;
  margin-right: 5px;
}
.mobile-menu.active {
  display: block;
  animation: activeBackground 0.3s ease;
}
@keyframes activeBackground {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mobile-menu.active .menu {
  animation: active 0.3s ease;
}
@keyframes active {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F7F8FB;
}
body .container {
  flex: 1;
}
body header {
  background-color: #E6E6E6;
}
@media screen and (max-width: 460px) {
  body header {
    display: none;
  }
}
body header .wrap {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .wrap ul {
  list-style-type: none;
  display: flex;
  align-items: center;
}
body header .wrap ul li {
  margin-right: 30px;
  display: flex;
  align-items: center;
}
body header .wrap ul li i {
  margin-right: 5px;
}
body header .wrap a {
  text-decoration: none;
  height: 30px;
  display: flex;
  align-items: center;
  margin: 0 10px 0 5px;
}
body header .wrap a i {
  margin-right: 5px;
}
body footer {
  padding: 15px 15px;
  text-align: center;
}
body footer p {
  font-size: 12px;
}
body .page {
  flex: 1;
}
body .page .container {
  position: relative;
}
body .page .tabs {
  position: relative;
  display: flex;
  list-style-type: none;
  z-index: 2;
}
@media screen and (max-width: 460px) {
  body .page .tabs {
    display: none;
  }
}
body .page .tabs li {
  position: relative;
  margin-right: 5px;
  background-color: white;
  border-top: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
body .page .tabs li a {
  text-decoration: none;
  white-space: nowrap;
  padding: 0 15px;
  height: 40px;
  display: flex;
  align-items: center;
}
body .page .tabs li a svg {
  fill: #606060;
  height: 18px;
  width: 18px;
  margin-right: 5px;
}
body .page .tabs li.active {
  z-index: 1;
}
body .page .tabs li.active:before {
  content: '';
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: white;
  bottom: -1px;
}
hr {
  margin: 15px 0;
  height: 1px;
  border: none;
  background-color: #ebebeb;
}
.title {
  margin-bottom: 30px;
}
.title button {
  display: none;
}
@media screen and (max-width: 460px) {
  .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .title button {
    display: block;
  }
}
.flash {
  margin-bottom: 15px;
}
.flash .success {
  background-color: rgba(149, 198, 63, 0.3);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  border: 1px solid rgba(149, 198, 63, 0.4);
}
.flash .success button {
  background: none;
  border: none;
}
.flash .success button i {
  color: #95c63f;
}
.flash .success p {
  color: #95c63f;
}
.flash .warning {
  background-color: #ffbb33;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #fdb931;
}
.flash .warning button {
  background: none;
  border: none;
}
.flash .warning button i {
  color: inherit;
}
.flash .warning p {
  color: inherit;
}
.page {
  display: flex;
}
@media screen and (max-width: 460px) {
  .page {
    flex-direction: column;
  }
}
.page .left-block {
  flex: 1;
}
.page .left-block table {
  border-collapse: collapse;
  width: 100%;
}
.page .left-block table tr td {
  padding-bottom: 10px;
}
.page .left-block table tr td:first-child {
  width: 40%;
  max-width: 50%;
}
.page .left-block table tr td:empty:before {
  content: "не вказано";
  font-style: italic;
  opacity: 0.5;
}
.page .left-block table tr:last-child td {
  padding: 0;
}
.page .right-block {
  flex: 2;
}
@media screen and (max-width: 460px) {
  .page .right-block {
    order: -1;
    margin-bottom: 15px;
  }
}
.page .right-block .b1 {
  margin: 0;
}
.page .b1 {
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 0 5px 5px 5px;
  margin-right: 15px;
  padding: 15px;
}
@media screen and (max-width: 460px) {
  .page .b1 {
    margin: 0;
  }
}
.page .b1 .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page .b1 .buttons a {
  margin-bottom: 15px;
}
.page .b1 .transaction-table {
  width: 100%;
  border-collapse: collapse;
}
.page .b1 .transaction-table thead {
  background-color: #ebebeb;
}
.page .b1 .transaction-table thead tr th {
  padding: 10px 15px;
  text-align: left;
  white-space: nowrap;
}
.page .b1 .transaction-table tbody tr:nth-child(2n) {
  background-color: #f5f5f5;
}
.page .b1 .transaction-table tbody tr td {
  padding: 10px 15px;
}
.page .b1 .transaction-table tbody tr [data-status] {
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 11px;
}
.page .b1 .transaction-table tbody tr [data-status="1"] {
  background-color: #5bc0de;
}
.page .b1 .transaction-table tbody tr [data-status="2"] {
  background-color: #f0ad4e;
}
.page .b1 .transaction-table tbody tr [data-status="4"] {
  background-color: #5cb85c;
}
.page .b1 .transaction-table tbody tr [data-status="5"] {
  background-color: #d9534f;
}
.page .container {
  display: flex;
}
@media screen and (max-width: 460px) {
  .page .container {
    flex-direction: column;
  }
}
.page.status .right-block .b1 {
  display: flex;
}
.page.status .right-block .b1 div:first-child {
  margin-right: 30px;
}
.page.status .right-block .b1 div:first-child svg {
  height: 100px;
  width: 100px;
}
.page.status .right-block .b1 h2.active {
  color: #8CC63F;
}
.page.status .right-block .b1 h2.no-active {
  color: #F15A24;
}
.page.status .right-block .b1 h2.need-payment {
  color: #FBB03B;
}
.page.status .right-block .b1 h2.to-anulation {
  color: #f15a24;
}
.page.status .right-block .b1 p {
  margin-top: 10px;
}
.page.support .right-block h2 {
  text-align: center;
  margin-bottom: 15px;
}
.page.support form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  background-color: #fdfdfd;
}
@media screen and (max-width: 460px) {
  .page.support form {
    padding: 15px;
  }
}
.page.support form div {
  display: flex;
  justify-content: flex-end;
}
.page.support .chats {
  display: flex;
  justify-content: center;
}
.page.support .chats a {
  margin-right: 50px;
}
.page.support .chats a:last-child {
  margin: 0;
}
.page.support .chats a svg {
  width: 50px;
  height: 50px;
}
.page.payment .no-payment-message {
  padding: 50px 0;
  display: block;
  text-align: center;
}
.page.payment .right-block h2 {
  margin-bottom: 15px;
  text-align: center;
}
.page.payment .method-block svg {
  height: 100%;
  fill: black;
}
.page.payment form {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  background-color: #fdfdfd;
}
.page.payment form button {
  align-self: flex-start;
}
.page.payment form button i {
  margin: 0 0 0 5px;
  color: inherit;
}
.page.payment form button i:first-child {
  margin-right: 5px;
  display: none;
}
.page.payment form button.active i:first-child {
  display: block;
}
.page.payment form input {
  margin-bottom: 15px;
}
.page.payment form .pay-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page.payment form .pay-btn .payment-methods {
  display: flex;
}
.page.payment form .pay-btn .payment-methods span {
  margin-right: 10px;
}
.page.payment form .pay-btn .payment-methods span svg {
  height: 18px;
}
@media screen and (max-width: 460px) {
  .page.payment form {
    padding: 15px;
  }
  .page.payment form .pay-btn {
    flex-direction: column;
  }
  .page.payment form .pay-btn .payment-methods {
    align-items: flex-start;
    margin-top: 30px;
  }
  .page.payment form .pay-btn .payment-methods span {
    margin-right: 10px;
  }
  .page.payment form .pay-btn .payment-methods span svg {
    height: 18px;
  }
}
.page.success-payment {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.page.success-payment .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page.success-payment .wrap h1 {
  color: #8CC63F;
}
.page.success-payment .wrap .btn {
  margin-top: 30px;
  background-color: #ebebeb;
}
.page.success-payment .wrap > svg {
  height: 60px;
  width: 60px;
  margin-bottom: 20px;
}
.left-block .b1 {
  position: sticky;
  top: 15px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group .form-error-message {
  margin-top: 5px;
  color: red;
  font-size: 12px;
}
.form-group label {
  margin-bottom: 5px;
}
.form-group.checkbox {
  flex-direction: row;
  align-items: center;
}
.form-group.checkbox label,
.form-group.checkbox input {
  cursor: pointer;
}
.form-group.checkbox label {
  margin: 0 0 0 5px;
}
.page.editing .container {
  display: block;
}
.page.editing .title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page.editing .title a {
  margin-top: 30px;
  background-color: #ebebeb;
}
.page.editing form {
  background-color: white;
  margin: auto;
  max-width: 300px;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}
.page.editing form .form-group {
  margin-bottom: 15px;
}
.page.signin {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page.signin .bottom-panel {
  text-align: center;
  margin-top: 30px;
}
.page.signin .bottom-panel a {
  color: #3399FF;
  position: relative;
}
.page.signin .bottom-panel a:before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -4px;
  border-top: 1px dotted #3399FF;
  height: 1px;
}
.page.signin .message {
  text-align: center;
  margin-bottom: 30px;
}
.page.signin h1 {
  color: #3399FF;
  margin-bottom: 30px;
}
.page.signin form {
  max-width: 300px;
  margin: auto;
  background-color: white;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.page.signin form .form-group {
  margin-bottom: 15px;
}
.page.signin form .form-group:last-child {
  margin: 0;
}
.page.signin form .logo {
  text-align: center;
  margin-bottom: 30px;
}
.page.signin form .logo svg {
  height: 60px;
}
.signin.remind-success .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.signin.remind-success .message {
  margin-bottom: 50px;
}
.page.operations .no-operations {
  padding: 30px 0;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .page.operations .b1 {
    overflow-x: auto;
  }
}
.page.operations [data-status="1"] {
  color: #8cc63f;
}
.page.operations [data-status="2"] {
  color: orange;
}
