@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
}

::-webkit-scrollbar {
  display: none;
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: none;
  }
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #e6e6e6;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .wrapper {
  width: 90%;
  border: 5px solid #b4b4b4;
}

body .wrapper .box {
  height: calc(100vh - 70px);
  border: 5px solid lightgray;
  background: #f0f0f0;
  font-size: 16px;
}

body .wrapper .box .top {
  padding-left: 30px;
  padding-right: 40px;
  height: 20%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .wrapper .box .top .logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .wrapper .box .top .logo-container .information {
  font-weight: 600;
}

body .wrapper .box .top .go-back {
  text-decoration: none;
  color: royalblue;
  font-weight: 600;
  cursor: pointer;
}

body .wrapper .box .top .go-back:visited {
  text-decoration: none;
  color: royalblue;
}

body .wrapper .box .bottom {
  height: 80%;
  padding: 0 25px 25px 25px;
}

body .wrapper .box .bottom section {
  overflow-y: auto;
  overflow-x: hidden;
  overflow-wrap: break-word;
  height: 100%;
  padding: 15px;
  border: 5px solid #b4b4b4;
}

body .wrapper .box .bottom section .main-line {
  font-weight: 500;
}

body .wrapper .box .bottom section .text-line {
  margin-bottom: 5px;
}

body .wrapper .box .bottom section .text-line .cookies {
  color: orange;
}

body .wrapper .box .bottom section .text-line ul {
  margin: 5px 20px;
}

body .wrapper .box .bottom section .text-line ul li p {
  display: inline;
}

body .wrapper .box .bottom section .text-line ul li a {
  text-decoration: none;
  color: royalblue;
  cursor: pointer;
}

body .wrapper .box .bottom section .text-line ul li a:visited {
  color: #7e41e1;
}

body .wrapper .box .bottom section .text-line .uokik {
  font-weight: 700;
  color: #00172e;
}

@media (max-width: 500px) {
  body {
    padding: 10px;
  }
  body .wrapper {
    width: 100%;
  }
  body .wrapper .box {
    font-size: 14px;
  }
  body .wrapper .box .top {
    padding: 0 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .wrapper .box .top .logo-container {
    margin-left: 10px;
  }
  body .wrapper .box .bottom {
    padding: 10px;
  }
  body .wrapper .box .bottom section {
    padding: 15px;
  }
}
/*# sourceMappingURL=cookies.css.map */