* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%; /* Prevent font size adjustments in Safari/Chrome en iOS */
  -moz-text-size-adjust: 100%; /* Prevent font size adjustments in Firefox */
  -ms-text-size-adjust: 100%; /* Prevent font size adjustments in IE (no necesario en versiones modernas) */
  text-size-adjust: 100%; /* Standard property */
  scroll-behavior: smooth;
}

body {
  background-color: #F6F9FF;
  font-family: "Poppins Regular";
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Druk Wide Medium", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

body footer {
  width: 100%;
  padding: 0 16px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}
body footer .footer {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body footer .footer .logo {
  height: 14px;
  width: auto;
}
body footer .footer a {
  font-family: "Poppins SemiBold";
  text-decoration: none;
  color: #020041;
}
body footer .footer a img {
  display: inline-block;
  margin-left: 8px;
  width: 12px;
  height: 12px;
}
body footer .footer a:visited {
  color: #020041;
}
body .page-toolbar {
  background: linear-gradient(90deg, #0F0C5F 0%, #020041 100%);
  font-family: "Druk Wide Medium";
  padding-top: 60px;
  /* Page's header */
}
body .page-toolbar .page-header {
  font-family: "Poppins Bold";
  font-size: 14px;
  color: #F9FBFF;
  text-align: center;
  padding: 0 16px;
  margin: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #0F0C5F 0%, #020041 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  z-index: 1000;
  position: fixed;
}
body .page-toolbar .page-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .page-toolbar .page-header .adrenaline-logo-link {
  display: flex;
  align-items: center;
}
body .page-toolbar .page-header .adrenaline-logo-link .logo {
  height: 12px;
  width: auto;
  z-index: 100;
}
body .page-toolbar .page-header .menu-icon {
  width: 16px;
  height: 16px;
  margin-left: 16px;
  margin-right: auto;
  z-index: 100;
}
body .page-toolbar .page-header .login-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 128px;
  max-width: 128px;
  width: 128px;
  z-index: 100;
}
body .page-toolbar .page-header .login-wrapper .login {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 16px;
  padding-right: 0;
  color: #F9FBFF;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
body .page-toolbar .page-header .login-wrapper .login img {
  width: 12px;
  height: 12px;
  margin-left: 10px;
}
body .page-toolbar .page-title {
  padding: 0 16px;
}
body .page-toolbar .page-title h1 {
  font-size: 32px;
  color: #F9FBFF;
  margin-top: 32px;
}
body .page-toolbar .page-tabs {
  width: 100%;
  max-width: 100vw;
}
body .page-toolbar .page-tabs .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
  padding-top: 24px;
  padding-bottom: 16px;
}
body .page-toolbar .page-tabs .nav .nav-item {
  display: inline-block;
  padding: 0 24px;
  position: relative;
}
body .page-toolbar .page-tabs .nav .nav-item h2 {
  white-space: nowrap;
  font-family: "Druk Wide Medium";
  font-size: 16px;
  color: #C3CBE5;
  cursor: pointer;
  user-select: none;
}
body .page-toolbar .page-tabs .nav .nav-item h2.selected {
  color: #F9FBFF;
}
body .page-toolbar .page-tabs .nav .nav-item:first-of-type::after, body .page-toolbar .page-tabs .nav .nav-item:last-of-type::after {
  content: "";
  width: 1px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #C3CBE5;
}
body .page-toolbar .page-tabs .nav .nav-item:first-of-type {
  padding-left: 16px;
}
body .page-toolbar .page-tabs .nav .nav-item:last-of-type {
  padding-right: 16px;
}
body .page-toolbar .page-tabs .nav .nav-item:last-of-type::after {
  right: initial;
  left: 0;
}
body .page-toolbar .page-tabs .nav .horizontal-separator {
  width: 3px;
  height: 16px;
  background-color: #C3CBE5;
}
body .page-toolbar .page-tabs .nav::-webkit-scrollbar {
  display: none;
}
body .content {
  padding: 16px;
  padding-bottom: 0;
  font-family: "Poppins", "Poppins Regular";
  font-size: 14px;
}
body .content .aside {
  border-top: 1px solid #D9E1FE;
  border-bottom: 1px solid #D9E1FE;
  padding: 16px 0;
  color: #020041;
  display: none;
}
body .content .aside .page-info .info-title {
  font-family: "Poppins Bold";
  font-size: 16px;
  margin-bottom: 8px;
}
body .content .aside .page-info .info-text {
  font-style: italic;
  margin-bottom: 32px;
}
body .content .aside .side-btns .side-btn {
  width: 100%;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #ECF0FE;
  font-family: "Poppins Bold";
  text-transform: uppercase;
  margin-bottom: 16px;
  list-style-type: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
body .content .aside .side-btns .side-btn.selected-btn {
  color: #F9FBFF;
  background-color: #4169F8;
}
body .content .aside .side-btns .side-btn.selected-btn:hover {
  color: #F9FBFF;
  background-color: #4169F8;
}
body .content .aside .side-btns .side-btn:last-of-type {
  margin-bottom: 0;
}
body .content .aside .side-btns .side-btn:hover {
  background-color: #D9E1FE;
}
body .content .aside.show {
  display: block;
}
body .content .main-content {
  color: #020041;
  text-align: justify;
  width: 100%;
}
body .content .main-content .tab-content {
  display: none;
}
body .content .main-content .tab-content.show {
  display: block;
}
body .content .main-content a,
body .content .main-content a:visited {
  color: #020041;
  font-family: "Poppins SemiBold";
}
body .content .main-content .mailto-link {
  color: #0A58CA;
}
body .content .main-content .mailto-link:hover {
  color: #0a58ca;
}
body .content .main-content .last-updated {
  margin: 32px 0;
}
body .content .main-content .section {
  padding-top: 32px;
}
body .content .main-content .section .section-title {
  font-family: "Druk Wide Heavy";
  font-size: 24px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 16px;
}
body .content .main-content .section .section-content ul,
body .content .main-content .section .section-content ol {
  padding-left: 32px;
  margin-bottom: 16px;
}
body .content .main-content .section .section-content ul li {
  list-style-type: disc;
}
body .content .main-content .section .section-content .section-subtitle {
  font-family: "Poppins Bold";
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
body .content .main-content .paragraph {
  margin-bottom: 16px;
}
body .content .main-content .paragraph:last-of-type {
  margin-bottom: 0;
}

/* ####### MEDIA QUERIES ####### */
/* XS smartphone */
@media screen and (max-width: 359px) {
  .page-header .login-wrapper {
    min-width: auto;
  }
}
/* Tablet */
@media screen and (min-width: 431px) {
  body footer {
    padding: 0 20px;
  }
  body .content {
    max-width: 696px;
    margin: 0 auto;
    padding-top: 36px;
  }
  .page-title .page-tabs {
    padding: 0 20px;
  }
  .page-title .page-tabs .nav {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .page-title .page-tabs .nav li {
    white-space: nowrap;
  }
  .page-title .page-tabs .nav li.rectangle-569 {
    padding: 0 0.5px;
  }
  .page-title .page-tabs ::-webkit-scrollbar {
    display: none;
  }
}
/* Desktop */
@media screen and (min-width: 1240px) {
  body footer {
    max-width: 1240px;
  }
  body .content {
    max-width: 1240px;
    display: flex;
    gap: 32px;
  }
  body .content .aside {
    width: 100%;
    max-width: 286px;
    height: 100%;
    position: sticky;
    top: 96px;
  }
}

/*# sourceMappingURL=legal.css.map */
