body {
    background-color: #e8e8e8;
    margin: 0px;
    text-align: -webkit-center;
}

.wrapper {
    height: 61px;
    background: white;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
  }
  
  header #mobile-header .wrapper .burger {
    width: 33px;
    height: 33px;
    overflow: hidden;
    transition: 0.3s width ease;
  }
  
  header#mobile-header .wrapper .brand img {
    height: 32px;
  }
  
  .burger-line {
    width: 100%;
      height: 2px;
      background: #294754;
      display: block;
      position: sticky;
      top: 20%;
      transform: translateY(-50%);
  }
  
  header#mobile-header .wrapper .burger .burger-line:nth-child(3) {
    top: 80%;
  }
  
  header#mobile-header .wrapper .burger .burger-line:nth-child(2) {
    top: 50%;
  }
  
  header#header {
    height: 110px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }
  
  header#header ul.menu {
    list-style: none;
    display: flex;
    gap: 44px;
    margin: 0;
    justify-content: center;
    padding: 0;
  }
  
  header#header ul.menu a {
    font-weight: 700;
    transition: 0.3s color ease;
    color: #294754;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-decoration: none;
  }
  
  header#header ul.menu a:hover {
    color: #6fbf6b;
  }
  
  .buttonh {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    width: 100%;
    background: #6fbf6b;
    border-radius: 27px;
    color: #294754;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.3s all ease;
    text-decoration: none;
  }
  
  .pa-10 {
    padding: 20px !important;
  }
  
  .flag {
    width: 39px;
      height: 24px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    background-image: url(/application/img/russia.svg);
  }
  
  header#mobile-header .menu-wrapper .menu li {
    margin: 0;
    padding: 20px;
    list-style: none;
    border-bottom: 1px solid white;
  }
  
  header#header .lang .flag {
    width: 39px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .lang span {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
  }
  
  .lang {
    grid-gap: 5px;
    display: flex;
    align-items: center;
  }
  
  .burger.active {
    width: 0px;
  }
  
  header#header ul.menu a.active {
    color: #6fbf6b;
    text-decoration: underline;
    list-style-type: none;
  }
  
  .hidden { 
    opacity: 0;
  }
  
  .burger {
    width: 33px;
    height: 33px;
    overflow: hidden;
    transition: 0.3s width ease;
  }
  
  .menu-wrapper {
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #294754;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 10;
    transition: 0.5s transform ease, 0.5s opacity ease;
    transform: translateX(-100%);
    opacity: 0;
    /*
    pointer-events: none;
    */
  }
  
  .menu-wrapper.active {
    opacity: 1;
    transform: translateX(0%);
  
  }
  
  .wrapper.active {
    gap: 0px;
  }
  
  
  header#mobile-header .menu-wrapper .lang {
    padding: 20px;
    font-size: 14px;
    border-bottom: 1px solid white;
  }
  
  .close {
    opacity: 0;
    transition: 0.3s opacity ease;
  }
  
  .close.active {
    opacity: 1;
  }
  
  
  .text-style-t-2 {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    text-decoration: none;
    text-transform: none;
  }
  
  .gap-10 {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .ml-auto {
    margin-left: auto;
  }
  
  .navbar {
    width: 100%;
  }
  
  .menu li a {
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
  }
  
  header#mobile-header .menu-wrapper .menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  header#mobile-header .menu-wrapper .menu li a.active {
    color:#6fbf6b;
    text-decoration: underline;
  }
  
  @media (min-width: 1200px) {
    .d-lg-none {
        display: none;
    }
  }
  
  @media (max-width: 1200px) {
    header#header {
      display: none;
    }
  }
/*Auth, register, error*/

.main {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 20px 25px  20px  25px;
    transition: transform 0.2s;
    width: 500px;
    margin-top: 100px;
    border-radius: 15px;
    margin-bottom: 100px;
}

.main h1 {
    color: #294754;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 15px;
}

label {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #555;
    font-weight: bold;
}



input {
    border-radius: 5px;
    display: block;
    width: 80%;
    margin-bottom: 15px;
    padding: 17px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap button {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 80%;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #294754;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.wrap button:hover {
    color:#294754;
    background-color: #6fbf6b;
}


.auth-block-form h2 {
    font-size: 16px;
    color: #294754;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.auth-block-form h3 {
    font-size: 16px;
    color: #294754;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 60%;
    margin-top: -10px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #294754;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.auth-block-form h2:hover {
    text-decoration: underline;
}

.auth-block-form h3:hover {
    color:#294754;
    background-color: #6fbf6b;
}

.auth-block-form__or {
    text-decoration: none;
}


.main p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}


.footer {
    margin-bottom: -100px;
    width: -webkit-fill-available;
    bottom: 0;
    height: 100px;
    background: #294754;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    align-items: center;
  }
  
  .footer span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  }
  
  .social {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 25px;
  height: 25px;
  background: #6fbf6b;
  color: #294754;
  font-size: 14px;
  border-radius: 50%;
  text-decoration: none;
  }
  

@media (max-width: 600px) {
    .main {
    padding: 30px 0px  30px  0px;
    width: 360px;
    }

    .wrap button {
        padding: 25px 60px 25px 60px;
    }
    
    input {
        margin-bottom: 10px;
    }
}

/*lk page*/

table {
    padding: 20px 30px 50px 30px;
}

.create button {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 260px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #294754;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

table h1 {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

table p {
    margin: 8px 0;
    font-size: 16px;
    color: #000000;
    font-family: "Inter", sans-serif;
}

.pay button {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 50px;
    margin-bottom: 15px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border: 1px solid #ffffff;
    font-size: 16px;
    border-radius: 15px;
    background-color: #6fbf6b;

}

.pay button:hover {
    color: #ffffff;
    border: 1px solid #d4d4d4;
    background-color: #294754;

}

.create button:hover {
    color:#294754;
    background-color: #6fbf6b;
}


.payed {
    margin-bottom: 15px;
}

.create {
    display: flex;
    grid-gap: 8px;
    flex-direction: column;
}

.icon_exit {
    width: 42px;
}

@media (max-width: 800px) {
    .pay button {
        width: 50px;
    }

    table h1 {
        font-size: 16px;
    }
    
    table p {
        font-size: 14px;
    }

    
}
