:root {
  --primary-color: #F05B84;
  --primary-hover-color: #F27B9C;
}

@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 300;
  src: url('GothamLight.otf') format('opentype');
}

@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 400;
  src: url('GothamBook.otf') format('opentype');
}

@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 400;
  src: url('GothamBookItalic.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 700;
  src: url('GothamBold.otf') format('opentype');
}

@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 700;
  src: url('GothamBoldItalic.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 600;
  src: url('GothamMediumRegular.ttf') format('truetype');
}

@import url('normalize.min.css');

html {
  font-family: 'Gotham', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-size: 14px;
  line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: 600;
}
abbr[title] {
  border-bottom: 1px dotted var(--primary-color);
}
b,
strong,
.strong {
  font-weight: 600;
}
pre {
  white-space: pre-wrap;
}
a {
  text-decoration: none;
}
a:hover,
a:active {
  outline: 0;
}
a:focus {
  outline: none;
}
small, .small, sup {
  font-size: 60%;
}
sup {
  line-height: .6;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
  max-width: 550px;
  margin-right: 45px;
  margin-left: auto;
}
.bottle-labeling {
  font-weight: 300;
  font-size: 11px;
}
.inline-block {
  display: inline-block;
}

.app {
  width: 100%;
  height: 100%;
  min-width: 768px;
  min-height: 768px;
  max-width: 1600px;
  max-height: 1200px;
  overflow: hidden;
  position: relative;
}

.app .overlay {
  display: none;
  z-index: 10;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 64, 65, 0.52);
}

.app .modal-overlay {
  z-index: 101;
  top: 0;
  position: absolute;
  background-color: rgba(62, 64, 65, 0.35);
  width: 100%;
  height: 100%;
}

.app main {
  height: 100%;
}

.global-nav {
  background-color: var(--primary-color);
  height: 68px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  position: relative;
  font-size: 12px;
  box-sizing: border-box;
}
.global-nav a {
  width: 100%;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white !important;
  padding: 0 15px;
}
.global-nav a:hover,
.global-nav a:focus {
  background-color: var(--primary-hover-color);
}
.global-nav a.active {
  background-color: white;
  color: var(--primary-color) !important;
}
.global-nav a.active:hover,
.global-nav a.active:focus {
  color: var(--primary-hover-color) !important;
}

.icon-sm {
  width: 30px;
}

@media screen and (min-width: 1366px) {
  .global-nav {
    font-size: 14px;
    height: 86px;
  }

  .global-nav a {
    padding: 0 25px;
  }

  .icon-sm {
    width: 40px;
  }
  .bottle-labeling {
    font-size: 14px;
  }
}

.toggle-nav {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.toggle-nav.reversed {
  flex-direction: row-reverse;
}

.next-button, .prev-button {
  z-index: 100;
  position: relative;
  height: 75px;
  width: 125px;
  pointer-events: all;
}

.prev-button {
  background-image: url('prev-3.png');
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  outline: 0;
  text-indent: -9999px;
  white-space: nowrap;
}

.next-button {
  background-image: url('next-2.png');
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  outline: 0;
  text-indent: -9999px;
  white-space: nowrap;
}

.next-1-lg.next-button {
  background-image: url('next-1-lg.png');
  height: 77px;
  width: 153px;
}

@media screen and (min-width: 1366px) {
  .next-button, .prev-button {
    width: 150px;
  }
}

.next-1 { background-image: url('next-1.png'); }
.next-2 { background-image: url('next-2.png'); }
.next-3 { background-image: url('next-3.png'); }
.next-4 { background-image: url('next-4.png'); }

.prev-1 { background-image: url('prev-1.png'); }
.prev-2 { background-image: url('prev-2.png'); }
.prev-3 { background-image: url('prev-3.png'); }
.prev-4 { background-image: url('prev-4.png'); }

.global-footer {
  width: 100%;
  height: 68px;
  position: absolute;
  bottom: 0;
  z-index: 15;
  pointer-events: none;
}
.footer-nav {
  position: absolute;
  bottom: 0;
  right: 160px;
  pointer-events: all;
}

.footer-nav a,
.footer-nav button {
  color: black;
  background-color: #f0f0f0;
  padding: 10px 15px;
  border-left: 1px solid #959695;
  border-top: 1px solid #959695;
  border-right: 1px solid #959695;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}

.footer-nav a:hover,
.footer-nav button:hover,
.footer-nav a:focus,
.footer-nav button:focus {
  background-color: #f9f9f9;
}

.scroll {
  overflow: hidden scroll;
  overflow-y: scroll !important;
  overflow: -moz-scrollbars-vertical;
}
.scroll::-webkit-scrollbar-track {
  border-radius: 10px;
}
.scroll::-webkit-scrollbar {
  width: 7px;
  margin-top: 34px;
  border-radius: 10px;
  -webkit-appearance: none;
  -webkit-overflow-scrolling: auto;
}
.scroll::-webkit-scrollbar-thumb {
  margin-top: 34px;
  border-radius: 10px;
  background-color: #9a9c9e;
}
.scroll::-webkit-scrollbar-track-piece:start {
  background-color: #d6d7d7;
  margin-top: 34px;
  border-radius: 10px;
}
.scroll::-webkit-scrollbar-track-piece:end {
  background-color: #d6d7d7;
  margin-bottom: 34px;
  border-radius: 10px;
}

.primary-scroll {
  padding-right: 15px;
  overflow: hidden scroll;
  overflow-y: scroll !important;
  overflow: -moz-scrollbars-vertical;
}

.primary-scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.primary-scroll::-webkit-scrollbar {
	width: 8px;
	background-color: #F5F5F5;
}

.primary-scroll::-webkit-scrollbar-thumb {
	border-radius: 8px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color);
}

a.text-primary {
  text-decoration: underline;
}

a.text-primary:hover,
a.text-primary:focus {
  color: var(--primary-hover-color);
}

.scan-block a.text-primary {
  text-decoration: none;
}

.qr-code {
  width: 63px;
}

@media screen and (min-width: 1366px) {
  .footer-nav {
    right: 255px;
  }
  .footer-nav a,
  .footer-nav button {
    padding: 15px 40px;
  }
}

.home-image {
  width: 500px;
  min-height: 700px;
}

.main-image {
  width: 500px;
}

.home-text {
  min-width: 524px;
  padding: 35px;
  padding-bottom: 0;
  box-sizing: border-box;
}

.home-text h1 {
  font-weight: 300;
  font-size: 47px;
  line-height: 1;
  margin: 15px 0;
}

.home-text h2 {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}

.home-text h3 {
  font-weight: 400;
  font-size: 9px;
}

.home-text h1 .text-primary {
  font-weight: 500;
}

.home-text ul {
  font-size: 12px;
  padding-left: 15px;
  font-weight: 300;
}

.home-text li {
  margin-bottom: 5px;
}

.lead {
  font-weight: 600;
}

.home-text .lead {
  font-size: 20px;
  max-width: 450px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 25px;
}

.disclaimer {
  font-size: 9px;
  margin-top: 25px;
}

.banner {
  padding: 6px 10px;
  background-color: var(--primary-color);
  color: white !important;
  position: relative;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.banner::after {
  content: " ";
  position: absolute;
  background-color: var(--primary-color);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  width: 30px;
  height: 100%;
  right: -29.5px;
  top: 0;
}

.banner strong,
.banner span {
  background-color: var(--primary-color);
  color: white;
  padding-right: 5px;
}

@media screen and (min-width: 1366px) {
  .main-image, .home-image {
    width: 650px;
  }

  .home-text {
    padding-top: 57px;
  }

  .home-text h1 {
    font-size: 72px;
    margin: 25px 0;
  }

  .home-text h2 {
    font-size: 18px;
  }

  .home-text p, .copyright, .home-text h3 {
    font-size: 11px;
  }

  .home-text .lead {
    font-size: 30px;
    max-width: none;
  }

  .home-text .disclaimer-title {
    margin-top: 35px;
  }

  .banner {
    font-size: 18px;
  }

  .banner strong {
    font-size: 22px;
  }

  .home-text ul {
    font-size: 14px;
  }

  .home .disclaimer {
    margin-top: 35px;
  }

  .copyright {
    bottom: 15px;
  }

  .logo-section {
    width: 389px;
    bottom: 65px;
  }

  .logo-section, .copyright {
    left: 167px;
  }
}

.modal {
  z-index: 101;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  border: black 12px solid;
  margin: 25px;
  padding: 15px;
  display: none;
  flex-direction: column;
  height: calc(100vh - 100px);
  width: calc(100vw - 100px);
}

.modal-content {
  height: 100%;
}

.modal-content h1,
.modal-content h2 {
  font-size: 1.5em;
  margin-top: 5px;
}

.modal-content .spaced-list {
  max-width: 550px;
  font-weight: 300;
}

.modal-content object {
  width: 100%;
  height: 100%;
}

.restrictions .spaced-list {
  max-width: 100%;
  font-weight: 400;
}

.restrictions .spaced-list ul {
  margin-top: 10px;
}

.restrictions .spaced-list ul li {
  list-style-type: "- ";
}

.modal.show {
  display: flex;
}

.modal.inset {
  margin: 100px;
  height: calc(100% - 250px);
  width: calc(100% - 250px);
}

.modal iframe,
.modal embed,
.modal object {
  display: block;
  width: 100%;
  height: 100%;
}

.close {
  background: transparent;
  border: 0;
  font-weight: 700;
  text-align: right;
  align-self: flex-end;
}

.close-x {
  color: #666;
  background: url('./close.svg') no-repeat;
  background-size: contain;
  border: 0;
  font-size: 42px;
  font-weight: 400;
  text-align: right;
  font-size: 0;
  width: 23px;
  height: 23px;
  align-self: flex-end;
  margin-bottom: 5px;
}

.icon-list {
  list-style-type: none;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  margin: 30px 0;
}

.icon-list p {
  margin-top: 4px;
  margin-bottom: 0;
}

.icon-list li img, .icon-list li p {
  display: block;
}

.icon-list li img {
  margin-right: 20px;
}

.reliability .icon-list,
.considerations .icon-list {
  font-size: 16px;
}

.dosing {
  padding: 15px 25px;
}

.coverage, .support, .considerations, .reliability, .treatment {
  display: flex;
}

.considerations .page-title {
  margin-bottom: 50px;
}

.support .factoid h2 {
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.support .factoid p {
  width: 195px;
}

.support .right-pane .disclaimer p,
.coverage .right-pane .disclaimer p {
  margin-top: 50px;
  font-size: 11px;
}

.disclaimer-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.disclaimer {
  padding-right: 60px;
  position: absolute;
  bottom: 50px;
}

.disclaimer h3 {
  font-weight: 600;
}

.copay {
  font-size: 25px;
}

.treatment {
  width: 100%;
  flex-direction: column;
  font-weight: 300;
}

.reliability h1 {
  font-weight: 600;
  max-width: 515px;
}
.reliability .disclaimer {
  margin-top: 200px;
}

.icon-list li ul > li:before {
  content: "-";
  color: var(--primary-color);
  position: absolute;
  margin-left: -1.1em; 
}

.icon-list li ul li div {
  display: inline;
}
.icon-list li ul li  {
  display: block;
}

.icon-sublist {
  flex-direction: column;
}

.icon-sublist li {
  margin: 15px 0;
}

.icon-sublist li:last-of-type {
  margin-bottom: 0;
}

.right-pane .small-disclaimer {
  font-size: 9px;
  margin-left: 60px;
}

.treatment-list {
  padding-top: 50px;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  font-weight: 300;
}

.treatment-list li {
  width: 50%;
  padding: 25px 0;
  font-size: 20px;
}

.treatment-list li a {
  display: flex;
  align-items: center;
  color: black;
}

.treatment-list li a:hover,
.treatment-list li a:focus {
  color: var(--primary-color);
}

.treatment-icon {
  width: 45px;
  margin-right: 15px;
}

.treatment-banner {
  color: white;
  background-color: #393425;
  background-image: url('../shared/treatment-decisions-main.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 375px;
  padding-left: 45px;
  border-top: 4px solid white;
  position: relative;
}

.treatment-banner:after {
  content: "Actor portrayal";
  position: absolute;
  bottom: 15px;
  right: 50px;
  font-size: 10px;
  color: white;
}

.treatment-banner h1 {
  margin-top: 125px;
  max-width: 470px;
  font-weight: 300;
}

.tab-disclaimer .disclaimer-title {
  font-size: 11px;
}

.tab-disclaimer p {
  font-size: 9px;
}

@media screen and (min-width: 1366px) {
  .reliability .icon-list,
  .considerations .icon-list {
    font-size: 24px;
  }

  .modal.inset {
    padding: 35px;
    height: calc(100% - 280px);
    width: calc(100% - 280px);
  }

  .modal-content {
    font-size: 18px;
  }

  .modal-content .spaced-list {
    max-width: 725px;
  }

  .restrictions .spaced-list {
    max-width: 100%;
  }

  .reliability .page-title {
    max-width: none;
  }

  .support .factoid p {
    width: 275px;
  }

  .copay {
    font-size: 41px;
    margin-top: -5px;
  }

  .dosing {
    box-sizing: border-box;
    padding: 60px 50px;
  }

  .dosing .lead {
    font-size: 24px;
    max-width: 1100px;
  }

  .tab-content {
    font-size: 18px;
  }

  .tab-disclaimer .disclaimer-title {
    font-size: 13px;
  }

  .tab-disclaimer p {
    font-size: 11px;
  }

  .gray-bg {
    margin: 5px 0;
    font-size: 18px;
  }

  .tabs button {
    font-size: 20px;
  }

  .treatment-banner {
    height: 500px;
    padding-left: 75px;
  }

  .treatment-banner h1 {
    margin-top: 194px;
    font-size: 36px;
    max-width: 637px;
    font-weight: 400;
  }

  .treatment-list {
    padding-top: 62px;
    max-width: 900px;
    font-weight: 400;
  }

  .treatment-list li {
    font-size: 30px;
  }

  .treatment-icon {
    width: 60px;
    margin-right: 25px;
  }
}

.dyk-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 125px auto 0;
}

.dyk-block p {
  font-size: 27px;
}

.factoid {
  padding-top: 150px;
  max-width: 275px;
  margin: 0 auto;
}

.factoid h2 {
  font-size: 52px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.factoid p {
  font-size: 16px;
  margin: 5px auto;
}

.factoid small {
  margin-top: 45px;
  display: block;
  font-weight: 300;
  font-size: 9px;
}

.left-pane {
  background: url('../shared/left-pane.jpg'), rgb(255,171,194);
  background: url('../shared/left-pane.jpg'), -moz-linear-gradient(90deg, rgba(255,147,178,1) 0%, rgba(254,164,189,1) 30%, rgba(255,168,192,1) 50%, rgba(255,165,190,1) 70%, rgba(255,147,178,1) 100%);
  background: url('../shared/left-pane.jpg'), -webkit-linear-gradient(90deg, rgba(255,147,178,1) 0%, rgba(254,164,189,1) 30%, rgba(255,168,192,1) 50%, rgba(255,165,190,1) 70%, rgba(255,147,178,1) 100%);
  background: url('../shared/left-pane.jpg'), linear-gradient(90deg, rgba(255,147,178,1) 0%, rgba(254,164,189,1) 30%, rgba(255,168,192,1) 50%, rgba(255,165,190,1) 70%, rgba(255,147,178,1) 100%);
  min-width: 330px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.left-pane.alt {
  background: url('../shared/left-pane-alt.jpg'), rgb(255,171,194);
  background: url('../shared/left-pane-alt.jpg'), -moz-linear-gradient(90deg, rgba(255,171,194,1) 0%, rgba(255,178,200,1) 30%, rgba(255,176,198,1) 50%, rgba(255,171,194,1) 70%, rgba(255,153,182,1) 100%);
  background: url('../shared/left-pane-alt.jpg'), -webkit-linear-gradient(90deg, rgba(255,171,194,1) 0%, rgba(255,178,200,1) 30%, rgba(255,176,198,1) 50%, rgba(255,171,194,1) 70%, rgba(255,153,182,1) 100%);
  background: url('../shared/left-pane-alt.jpg'), linear-gradient(90deg, rgba(255,171,194,1) 0%, rgba(255,178,200,1) 30%, rgba(255,176,198,1) 50%, rgba(255,171,194,1) 70%, rgba(255,153,182,1) 100%);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.right-pane {
  padding: 20px 30px;
  padding-left: 40px;
  box-sizing: border-box;
}

.right-pane h1 {
  margin-top: 15px;
  margin-bottom : 0;
}

.right-pane .subhead {
  margin-top: 10px;
  line-height: 1.4;
}

.coverage .right-pane .subhead {
  margin-top: 40px;
}

.isi {
  padding: 45px 35px 35px 125px;
}

.isi .primary-scroll {
  max-height: calc(100vh - 200px);
  box-sizing: border-box;
}

.isi .primary-scroll,
.modal-isi .primary-scroll {
  padding-right: 30px;
}

.isi .lead {
  margin-top: 10px;
}

.isi ul:not(.isi-list) li {
  margin-bottom: 15px;
}

.isi-list {
  column-count: 2;
  padding: 15px 35px;
}

.isi-list li {
  padding-bottom: 10px;
}

.isi-subtitle {
  font-size: 16px;
  font-weight: 700;
}

.flex {
  display: flex;
}

.w-100 {
  width: 100%;
}

.icon-lg {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  min-width: 80px;
  width: 90px;
  height: 98px;
  font-size: 11px;
  font-weight: 600;
  background-image: url('../shared/icon-blank-lg.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.large-icon-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.large-icon-list ul {
  padding-bottom: 10px;
  padding-left: 0;
  margin-left: 25px;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  list-style-type: none;
}

.large-icon-list li {
  margin-top: 10px;
  margin-bottom: 15px;
  display: flex;
}

.large-icon-list ul li::before {
  content: " ";
  background-image: url('../shared/list-icon-check.svg');
  background-repeat: no-repeat;
  min-width: 20px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}

.list-container .large-icon-list:not(:last-child) ul {
  border-bottom: 1px solid black;
}

.scan-block {
  display: flex;
  align-items: center;
  margin-left: 45px;
  padding: 5px 10px 5px 75px;
  border: 2px solid var(--primary-color);
  position: relative;
  margin-top: 35px;
  margin-bottom: 35px;
  max-width: 500px;
}

.scan-block .callout {
  position: absolute;
  left: -60px;
  top: -20px;
  height: 119px;
  width: 111px;
}

.scan-block p {
  margin: 0;
  font-size: 12px;
  margin-bottom: 5px;
  width: 100%;
}

.scan-block .flex {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.azurity-logo {
  width: 160px;
}

.qr-code {
  width: 63px;
}

@media screen and (min-width: 1366px) {
  .left-pane {
    min-width: 430px;
  }

  .right-pane {
    padding: 60px 50px 0 80px;
  }

  .right-pane p, .right-pane {
    font-size: 24px;
  }

  .dyk-block {
    margin-top: 219px;
  }

  .dyk-block p {
    font-size: 36px;
    margin: 0;
  }

  .factoid {
    padding-top: 190px;
    max-width: 355px;
  }

  .factoid h2 {
    font-size: 72px;
  }

  .factoid p {
    font-size: 24px;
  }

  .factoid small {
    margin-top: 80px;
    font-size: 11px;
  }

  .reliability .disclaimer {
    margin-top: 125px;
  }

  .isi .lead, .isi-subtitle  {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
  }

  .isi .page-subtitle {
    font-weight: 600;
  }

  .coverage .right-pane p, .coverage .right-pane ul li,
  .support .right-pane p, .support .right-pane ul li {
    font-size: 18px;
  }

  .large-icon-list li {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .icon-lg {
    font-size: 14px;
    width: 135px;
    height: 135px;
    min-width: 110px;
  }
  .scan-block {
    max-width: 600px;
    padding-left: 100px;
  }

  .scan-block .callout {
    left: -63px;
    top: -21px;
    height: 154px;
    width: 142px;
  }

  .qr-code {
    width: 102px;
  }

  .azurity-logo {
    width: 202px;
  }
}

.eprontia .warning {
  font-size: 11px;
  display: block;
  grid-area: 3 / 6 / 4 / 8;
}
.eprontia {
  box-sizing: border-box;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.eprontia-main { width: 100%; grid-area: 2 / 1 / 6 / 6; }
.eprontia-main img {
  margin: 0 auto;
  display: block;
  transform: translateY(-25px);
  width: 600px;
}
.eprontia h1 {
  grid-area: 1 / 1 / 2 / 6;
  max-width: 575px;
}
.eprontia-logo {
  grid-area: 1 / 6 / 2 / 8;
  justify-self: end;
}
.eprontia-logo img {
  transform: translateY(-25px);
  width: 175px;
}
.eprontia .disclaimer {
  grid-area: 4 / 6 / 5 / 8;
  padding-right: 0;
  position: static;
}

@media screen and (min-width: 1366px) {
  .eprontia {
    padding-top: 60px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .eprontia h1 {
    max-width: 805px;
  }
  .eprontia-logo img {
    width: 250px;
  }
  .eprontia-main img {
    width: 748px;
    transform: translateY(-50px);
  }
}

.logo-section, .copyright {
  position: absolute;
  left: 90px;
}

.logo-section {
  display: flex;
  width: 330px;
  bottom: 55px;
}

.logo-section img {
  width: 100%;
}

.copyright {
  font-weight: 300;
  font-size: 9px;
  display: block;
  margin-left: 10px;
  max-width: 365px;
  bottom: 5px;
}

.page-title {
  color: var(--primary-color);
  font-size: 26px;
  margin: 0 !important;
  line-height: 32px;
}

.page-subtitle {
  color: var(--primary-color);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

@media screen and (min-width: 1366px) {
  .copyright {
    font-size: 11px;
    max-width: 420px;
    bottom: 5px;
  }

  .logo-section {
    width: 389px;
  }

  .page-title, .page-subtitle {
    font-size: 36px;
    line-height: 46px;
  }

  .modal .lead {
    font-size: 24px;
  }
}

.tabs-gutter {
  width: 250px;
  min-width: 250px;
  padding-top: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.tabs-gutter img {
  width: 265px;
}

.tabs-container {
  width: 100%;
}

.tabs {
  border-bottom: 1px solid gray;
  width: calc(100% - 50px);
}

.tabs button {
  background: transparent;
  border: 0;
  border-bottom: 4px solid var(--primary-color);
  padding: 15px 10px;
  margin-right: 5px;
  color: var(--primary-color);
  font-weight: 600;
}

.tabs button.inactive {
  border-bottom: 4px solid transparent;
  color: black;
}

.tab-content {
  height: 350px;
  overflow-y: scroll;
  padding-top: 5px;
  padding-right: 50px;
  margin-top: 10px;
  display: none;
}

.tab-disclaimer {
  display: none;
  margin-bottom: 50px;
  padding-right: 85px;
  position: absolute;
  bottom: 0;
}

.tab-disclaimer:not(.shrink) {
  margin-top: 50px;
}

.table-title {
  text-align: center;
  font-weight: 600;
}

.table-footnote {
  margin-right: 25px;
}

table {
  width: calc(100% - 100px);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: 0 50px;
}

table thead {
  background: var(--primary-color);
  color: #FFFFFF;
}

table thead tr th {
  padding: 14px;
}

table tr:nth-child(even) {
  background-color: #FCFBFB;
}

table tr th,
table tr td {
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 7px;
}

table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid var(--primary-color);
}

table th {
  font-weight: 500;
}

table tbody th {
  text-align: left;
  padding: 7px 14px;
}

table  td {
  text-align: center;
  font-weight: 400;
}

/* bottom-left border-radius */
table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 6px;
}

/* bottom-right border-radius */
table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}

.gray-bg {
  padding: 20px 15px;
  background-color: #F7F7F7;
  font-weight: 500;
}

.spaced-list li {
  padding: 5px 0;
  margin-right: 35px;
}

.references p {
  margin: 0;
  margin-left: 5px;
}

.references a {
  color: black !important;
  text-decoration: underline;
}

@media screen and (min-width: 1366px) {
  .tabs-gutter {
    min-width: 370px;
    width: 370px;
  }

  .tabs-gutter img {
    width: 363px;
  }

  .tab-content {
    height: 420px;
  }

  .tab-content hr {
    margin-top: 50px;
  }

  .tab-content .text-right {
    margin-bottom: 35px;
    display: block;
    margin-right: 35px;
    max-width: 650px;
  }

  .spaced-list li {
    padding: 10px 0;
  }

  .disclaimer p, .disclaimer h3  {
    font-size: 11px;
  }

  .disclaimer .disclaimer-title {
    font-size: 13px;
  }
}
