@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
:root {
  --primary-color: #250363;
  --border-color: #6C03D6;
  --text-color: #F8F8F9;
  --text-color-info: #00C4EE;
  --font: 'Ubuntu', sans-serif;
  --content-bg: #250D6D;
  --wrapperInput-bg: #1E0A50;
  --input-border-color: #1B0850;
  --bg-warning: rgb(255, 244, 229);
  --text-warning: rgb(102, 60, 0);
  --bg-error: rgb(253, 237, 237);
  --text-error: rgb(95, 33, 32);
  --bg-success: rgb(237, 247, 237);
  --text-success: rgb(30, 70, 32);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  text-decoration: none;
}

input:focus {
  outline: none;
}

body {
  width: 100vw;
  height: 100vh;
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.header {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary-color);
  border-bottom: 2px solid var(--border-color);
}

.header .menu {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu .nav-mobile {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
}

.header .menu .nav-mobile div {
  background-color: var(--border-color);
  border-radius: 20%;
  width: 30px;
  height: 3px;
  margin: 3px 0;
}

.header .menu .nav-mobile :nth-child(2) {
  width: 25px;
}

.header .menu .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu .nav .rotes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

.header .menu .nav .rotes .separator {
  width: 2px;
  height: 20px;
  background-color: var(--text-color);
  opacity: 0.5;
  margin: 0 10px;
}

.header .menu .nav .rotes a {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .menu .nav .rotes a:hover {
  opacity: 0.7;
}

.header .menu .nav .login-btn {
  width: 8.75rem;
  height: 2.5rem;
  background-image: url("../images/login-btn.svg");
  background-color: transparent;
  background-size: cover;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .nav {
    display: none !important;
    width: inherit !important;
  }
  .nav.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 13vh;
    width: 100vw;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav.active .separator {
    display: none !important;
  }
  .nav.active .rotes {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0 !important;
  }
  .nav.active .rotes a {
    margin-top: 1rem !important;
  }
  .nav.active button {
    margin-top: 1rem !important;
  }
  .nav-mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .menu-mobile-line.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--content-bg);
    width: 100vw;
    height: 140px;
  }
  .text {
    max-width: 250px !important;
  }
  .notify-icon {
    min-width: 24px !important;
    min-height: 24px !important;
  }
  .close {
    min-width: 24px !important;
    min-height: 24px !important;
  }
}

@media screen and (max-width: 360px) {
  .text {
    min-width: 180px !important;
  }
  .notify-icon {
    min-width: 24px !important;
    min-height: 24px !important;
  }
}
/*# sourceMappingURL=global.css.map */

.bg_modal.show-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  visibility: hidden;
}

.bg_modal.show-modal {
  visibility: show;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 650px;
  width: 100%;
  height: auto;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal_header {
  height: auto;
  width: 100%;
  background-color: #FFF;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #ACACAC;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.modal_header p {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.modal_header .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/close.svg");
  background-color: transparent;
  background-size: cover;
  border: none;
  cursor: pointer;
  margin: 20px;
}

.modal main {
  height: auto;
  max-width: 380px;
  width: 100%;
  border: 1px solid #ACACAC;
  border-radius: 20px;
  margin: 60px;
}

.modal .wallet {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 60px;
}

.modal img {
  width: 40px;
  height: 40px;
  margin-left: 20px;
}

.modal button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
}

.wallet:first-child {
  border-bottom: 1px solid #ACACAC;
}