/*===============================================
  Fade In
================================================= */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(0);
  }
}
@keyframes fade-in-down-xl {
  0% {
    opacity: 0;
    transform: translateY(-250%);
    -ms-transform: translateY(-250%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(0);
  }
}
@keyframes fade-in-scale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-up-xl {
  0% {
    opacity: 0;
    transform: translateY(250%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===============================================
  Slide In
================================================= */
@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*===============================================
  Timeline
================================================= */
@keyframes timeline-axis {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% + 8px);
  }
}
@keyframes timeline-content-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes timeline-content-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    opacity: 1;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes timeline-count-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes timeline-count-up {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  60% {
    opacity: 1;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes timeline-item-line {
  0% {
    height: 0;
  }
  100% {
    height: 20%;
  }
}
@keyframes timeline-item-line-norm {
  0% {
    height: 0;
  }
  100% {
    height: 26%;
  }
}
@keyframes timeline-item-line-xl {
  0% {
    height: 0;
  }
  100% {
    height: 30%;
  }
}
@keyframes timeline-item-line-xxl {
  0% {
    height: 0;
  }
  100% {
    height: 40%;
  }
}
@keyframes timeline-item-line-xxxl {
  0% {
    height: 0;
  }
  100% {
    height: 45%;
  }
}
@keyframes timeline-pips {
  0% {
    opacity: 0;
    transform: scale(0) translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
}
@keyframes timeline-title {
  0% {
    transform: translateY(-250%);
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes timeline-today {
  0% {
    opacity: 0;
    transform: translateY(-170px);
  }
  100% {
    opacity: 1;
    transform: translateY(-70px);
  }
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 100;
  src: url("../fonts/HelveticaNeueThin.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 300;
  src: url("../fonts/HelveticaNeueLight.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: normal;
  src: url("../fonts/HelveticaNeue.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 500;
  src: url("../fonts/HelveticaNeueMedium.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: bold;
  src: url("../fonts/HelveticaNeuBold.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Helvetica W04";
  src: url("../fonts/NeueHelveticaW04.ttf") format("truetype");
}
/*===============================================
  Mixins
================================================= */
/*===============================================
  Helpers
================================================= */
.bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.bg-primary {
  background-color: #003B33 !important;
}
.bg-primary-gradient {
  background: #00617f; /* Old browsers */
  background: -moz-linear-gradient(top, #0b465f 0%, #00617f 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #0b465f 0%, #00617f 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0b465f 0%, #00617f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$primary-gradient-bottom", endColorstr="$primary-gradient-top",GradientType=0 ); /* IE6-9 */
}
.bg-primary-gradient-top {
  background-color: #ffffff !important;
}
.bg-white {
  background-color: #ffffff !important;
}

.border-success {
  border-color: #89d329 !important;
}

.text-cardiorenal {
  color: #624963 !important;
}
.text-primary {
  color: #003B33 !important;
}
.text-stroke-prevention {
  color: #ff3162 !important;
}
.text-success {
  color: #89d329 !important;
}
.text-vascular-protection {
  color: #5db300 !important;
}
.text-venous-protection {
  color: #4fbbf9 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-size-30 {
  font-size: 1.875em !important;
}
.text-size-70 {
  font-size: 4.375em !important;
}
.text-weight-bold {
  font-weight: bold !important;
}
.text-weight-light {
  font-weight: 300 !important;
}
.text-weight-medium {
  font-weight: 500 !important;
}
.text-weight-regular {
  font-weight: normal !important;
}
.text-weight-thin {
  font-weight: 100 !important;
}

/*===============================================
  Layout
================================================= */
* {
  box-sizing: border-box;
}

*:not(input), *:focus:not(input) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline-style: none; /*IE*/
}

input, button, .config-button, .config-control-button {
  -webkit-touch-callout: auto;
  -webkit-user-select: auto;
  -khtml-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

html {
  position: fixed;
}

body {
  background-color: #81bf37;
  color: #10384F;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  overscroll-behavior: none;
}
@media (min-width: 1920px) {
  body {
    font-size: 1.4em;
  }
}

.container {
  height: 100%;
  max-width: none;
  padding: 64px 70px 110px;
}
@media (min-width: 1920px) {
  .container {
    padding: 64px 80px 150px;
  }
}
.container.h-100 {
  height: 100%;
}
.container.pt-sm {
  padding-top: 20px;
}

.navigator {
  background: url(../img/backgrounds/cover_swoosh.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  padding: 70px 43px 90px;
  margin-top: 20px;
  background-size: 100% 100%;
}

.navigator_row {
  margin: 0;
}

.banner .btn-success {
  background: #ffffff;
  color: #003B33;
}

.content-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

::-webkit-scrollbar {
  padding-bottom: 3px;
  padding-top: 3px;
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #d9d9d9;
}

::-webkit-scrollbar-thumb {
  background: #003B33;
  border-radius: 10px;
  opacity: 0.7;
}

.viewport-toggle {
  display: none;
  font-size: 1rem;
  list-style: none;
  margin-top: 0;
  padding: 0;
  padding: 1rem;
  width: 100%;
}
.viewport-toggle a {
  background-color: #ffffff;
  border-radius: 4px;
  color: #003b33 !important;
  display: inline-block;
  font-weight: bold;
  margin-right: 12px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
}
.viewport-toggle a.active {
  background-color: #003B33;
  color: #ffffff !important;
}

/*===============================================
  Back Button
================================================= */
.back-button {
  background-color: #003B33;
  height: 44px;
  position: absolute;
  text-decoration: none;
  top: 120px;
  width: 44px;
  z-index: 999;
  left: 30px;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.back-button:active {
  background-color: #002733;
}
.back-button .back-arrow {
  height: 21px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  cursor: pointer;
}

/*===============================================
  Buttons
================================================= */
.btn {
  border: none;
  border-radius: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 0.875em;
  font-weight: bold;
  height: 40px;
  line-height: 10px;
  padding: 14px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: none;
}
.btn.bg-white {
  color: #003B33;
}
.btn:active, .btn:focus, .btn:hover {
  box-shadow: none !important;
  outline: none !important;
}
.btn-chevron-right:after, .btn-plus:after {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1920px) {
  .btn-chevron-right:after, .btn-plus:after {
    height: 20px;
    right: 18px;
  }
}
.btn-chevron-right {
  padding-right: 60px;
}
.btn-chevron-right:after {
  background-image: url("../img/ui-elements/chevron-right-white.png");
  width: 9px;
}
.btn.btn-chevron-right-green:after {
  background-image: url("../img/ui-elements/chevron-right-vascular-protection.png");
}
.btn-plus {
  padding-right: 40px;
}
.btn-plus:after {
  background-image: url("../img/ui-elements/plus-primary.png");
  width: 14px;
}
.has-modal .btn-plus:after {
  background-image: url("../img/ui-elements/white-plus-primary.png");
}

@media (min-width: 1920px) {
  .btn-plus:after {
    right: unset;
    width: 11px;
    height: 11px;
  }
}
.btn-outline-primary {
  background-color: transparent !important;
  border: 1px solid #003B33 !important;
  color: #003B33 !important;
}
.btn-outline-primary:active {
  background-color: rgba(0, 59, 51, 0.25) !important;
}
.btn-primary {
  background-color: #003B33;
}
.btn-primary:active {
  background-color: black !important;
}
.btn-success {
  background-color: #89d329;
}
.btn-success:active {
  background-color: #5f931d !important;
}

/*===============================================
  Cards
================================================= */
.card {
  border-color: transparent;
  border-radius: 0;
  height: 100%;
}
.card-compass, .card-footer {
  border: none;
  border-radius: 0;
}
.card-compass.top_border, .card-footer.top_border {
  position: relative;
}
.card-compass.top_border::after, .card-footer.top_border::after {
  content: " ";
  position: absolute;
  width: 90%;
  height: 2px;
  background-color: #8DC63F;
  top: 0;
  left: 5%;
}
.card-logo-prepend {
  margin-top: 40px;
  margin-bottom: 10px;
  min-height: 0;
  color: #003B33;
  border-radius: 5px;
}
@media (min-width: 1920px) {
  .card-logo-prepend {
    margin-top: 10px;
  }
}
@media only screen and (max-width:1366px){
  .card-logo-prepend {
    margin-top: 0px;
  }

}
.card-logo-prepend .card-body,
.card-logo-prepend .card-footer {
  padding: 30px 80px 25px;
}
@media only screen and (min-width: 1920px) {
  .card-logo-prepend .card-body,
  .card-logo-prepend .card-footer {
    padding: 10px 120px 60px;
  }
}
.card-logo-prepend .card-body li,
.card-logo-prepend .card-body p,
.card-logo-prepend .card-footer li,
.card-logo-prepend .card-footer p {
  font-size: 1em;
  font-weight: 300;
  color: #003B33;
}
.card-logo-prepend .card-body p:last-child,
.card-logo-prepend .card-footer p:last-child {
  margin-bottom: 0;
}
.card-logo-prepend .card-body {
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px 10px 0 0;
}
.card-logo-prepend .card-body::-webkit-scrollbar {
  width: 10px;
}
.card-logo-prepend .card-body::-webkit-scrollbar-track {
  background:#ccc ;
}
.card-logo-prepend .card-body::-webkit-scrollbar-thumb {
  background: #003b33;
  border-radius: 11px;
}
@supports (-webkit-touch-callout: none) {
  .card-logo-prepend .card-body::-webkit-scrollbar {
    display: block; /* Forces the scrollbar to be visible, if possible */
  }
}
.card-logo-prepend .card-footer {
  padding-top: 15px;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 1920px) {
  .card-logo-prepend .card-footer {
    padding-bottom: 54px;
    padding-top: 45px;
  }
}
.card-logo-prepend .card-footer ul.list-unstyled {
  margin-bottom: 0;
}
.card-logo-prepend .card-footer ul.list-unstyled li:not(:last-child) {
  margin-bottom: 10px;
}
.card-logo-prepend img.card-logo {
  background-color: #ffffff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  display: block;
  height: 54px;
  left: 50%;
  padding: 15px 24px;
  position: absolute;
  transform: translate(-50%, -47%);
  width: auto;
  z-index: 1;
}
@media (min-width: 1920px) {
  .card-logo-prepend img.card-logo {
    height: 74px;
  }
}
.card-title {
  color: #003b33;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/*===============================================
  Empty State
================================================= ===*/
.empty-state {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.empty-state h2 {
  color: #003B33;
}

/*===============================================
  Footer
================================================= */
.footer-references {
  display: flex;
  justify-content: space-between;
  bottom: 0;
  color: #ffffff;
  font-weight: 300;
}
.footer-references > div {
  width: 100%;
}
.footer-references h4 {
  font-size: 0.813em;
  font-weight: bold;
  margin-bottom: 0;
  color: #003B33;
}
.footer-references p {
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 40px;
  color: #003B33;
}
.footer-references p a {
  color: #003b33;
  text-decoration: underline;
}
.footer-references td {
  vertical-align: top;
}
.footer-references td img {
  padding-left: 0.5em;
}

/*===============================================
  Forms
================================================= */
.custom-control-label::before,
.custom-control-input:checked ~ .custom-control-label::before,
.input-group input {
  background-color: transparent;
  border: 1px solid #003B33 !important;
}

.input-group + .custom-control {
  margin-top: 1rem;
}

.custom-control {
  line-height: 1.9;
  min-height: 30px;
  padding-left: 40px;
}
.custom-control.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}
.custom-control-input:checked ~ .custom-control-label::after {
  background-color: #003B33 !important;
  background-image: none !important;
  height: 18px;
  left: -34px;
  top: 6px;
  width: 18px;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
  border-color: inherit;
}
.custom-control-label {
  color: #708895;
  line-height: 30px;
}
.custom-control-label::before {
  height: 30px;
  left: -40px;
  top: 0;
  width: 30px;
}
.custom-control.custom-switch {
  padding-left: 60px;
}
.custom-control.custom-switch .custom-control-label::before {
  border-radius: 2rem;
  left: -60px;
  width: 46px;
}
.custom-control.custom-switch .custom-control-label::after {
  border-radius: 50%;
  height: 24px;
  left: -56px;
  top: 3px;
  width: 24px;
}
.custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  border-radius: 50%;
  height: 24px;
  left: -53px;
  top: 3px;
  width: 24px;
}

.form-inline .custom-control:not(:last-child) {
  margin-right: 50px;
}
.form-inline .input-group.search {
  margin-right: 10px;
  width: 56vw;
}

.input-group {
  position: relative;
}
.input-group.search .input-addon {
  background-image: url("../img/ui-elements/search-icon.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  height: 20px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.12s ease-in-out;
  width: 20px;
}
.input-group.search input {
  padding-right: 50px;
  border: 1px solid #fff !important;
  border-radius: 5px;
}
.input-group input {
  border-radius: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  padding: 10px 15px;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  width: 100%;
}
.input-group input:focus + .input-addon, .input-group input:not(:placeholder-shown) + .input-addon {
  background-image: url("../img/ui-elements/input-clear.png");
}
.input-group input:focus {
  border-color: #5496aa;
  box-shadow: none;
  outline: none;
}

.custom-select-box {
  border: 1px solid #003B33;
  height: 48px;
  margin-bottom: 0;
  position: relative;
}
.custom-select-box::after {
  background-image: url("../img/ui-elements/chevron-down-white.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: inline-block;
  height: 8px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
}
.custom-select-box.active ul {
  display: block;
}
.custom-select-box.active li:nth-child(1) {
  animation-delay: 0.275s;
}
.custom-select-box.active li:nth-child(2) {
  animation-delay: 0.3s;
}
.custom-select-box.active li:nth-child(3) {
  animation-delay: 0.325s;
}
.custom-select-box.active li:nth-child(4) {
  animation-delay: 0.35s;
}
.custom-select-box.active li:nth-child(5) {
  animation-delay: 0.375s;
}
.custom-select-box.active li:nth-child(6) {
  animation-delay: 0.4s;
}
.custom-select-box.active li:nth-child(7) {
  animation-delay: 0.425s;
}
.custom-select-box.active li:nth-child(8) {
  animation-delay: 0.45s;
}
.custom-select-box.active li:nth-child(9) {
  animation-delay: 0.475s;
}
.custom-select-box.active li:nth-child(10) {
  animation-delay: 0.5s;
}
.custom-select-box.active li:nth-child(11) {
  animation-delay: 0.525s;
}
.custom-select-box.active li:nth-child(12) {
  animation-delay: 0.55s;
}
.custom-select-box.active li:nth-child(13) {
  animation-delay: 0.575s;
}
.custom-select-box.active li:nth-child(14) {
  animation-delay: 0.6s;
}
.custom-select-box.active li:nth-child(15) {
  animation-delay: 0.625s;
}
.custom-select-box.active li:nth-child(16) {
  animation-delay: 0.65s;
}
.custom-select-box.active li:nth-child(17) {
  animation-delay: 0.675s;
}
.custom-select-box.active li:nth-child(18) {
  animation-delay: 0.7s;
}
.custom-select-box.active li:nth-child(19) {
  animation-delay: 0.725s;
}
.custom-select-box.active li:nth-child(20) {
  animation-delay: 0.75s;
}
.custom-select-box.active li:nth-child(21) {
  animation-delay: 0.775s;
}
.custom-select-box.active li:nth-child(22) {
  animation-delay: 0.8s;
}
.custom-select-box.active li:nth-child(23) {
  animation-delay: 0.825s;
}
.custom-select-box.active li:nth-child(24) {
  animation-delay: 0.85s;
}
.custom-select-box.active li:nth-child(25) {
  animation-delay: 0.875s;
}
.custom-select-box.active li:nth-child(26) {
  animation-delay: 0.9s;
}
.custom-select-box.active li:nth-child(27) {
  animation-delay: 0.925s;
}
.custom-select-box.active li:nth-child(28) {
  animation-delay: 0.95s;
}
.custom-select-box.active li:nth-child(29) {
  animation-delay: 0.975s;
}
.custom-select-box.active li:nth-child(30) {
  animation-delay: 1s;
}
.custom-select-box.active li:nth-child(31) {
  animation-delay: 1.025s;
}
.custom-select-box.active li:nth-child(32) {
  animation-delay: 1.05s;
}
.custom-select-box.active li:nth-child(33) {
  animation-delay: 1.075s;
}
.custom-select-box.active li:nth-child(34) {
  animation-delay: 1.1s;
}
.custom-select-box.active li:nth-child(35) {
  animation-delay: 1.125s;
}
.custom-select-box.active li:nth-child(36) {
  animation-delay: 1.15s;
}
.custom-select-box.active li:nth-child(37) {
  animation-delay: 1.175s;
}
.custom-select-box.active li:nth-child(38) {
  animation-delay: 1.2s;
}
.custom-select-box.active li:nth-child(39) {
  animation-delay: 1.225s;
}
.custom-select-box.active li:nth-child(40) {
  animation-delay: 1.25s;
}
.custom-select-box .label,
.custom-select-box li,
.custom-select-box .selected-option {
  font-size: 16px;
}
@media (min-width: 1920px) {
  .custom-select-box .label,
  .custom-select-box li,
  .custom-select-box .selected-option {
    font-size: 0.7em;
  }
}
.custom-select-box .label,
.custom-select-box ul {
  margin-bottom: 0;
}
.custom-select-box .label,
.custom-select-box .selected-option {
  color: #ffffff;
  font-weight: 500;
  left: 47%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.custom-select-box li {
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-duration: 0.25s;
  animation-name: fade-in;
  background-color: #003B33;
  color: #ffffff;
  font-weight: 300;
  opacity: 0;
  padding: 10px 8px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.custom-select-box li:hover, .custom-select-box li.selected {
  background-color: #001d1b;
  font-weight: 500;
}
.custom-select-box li:not(:last-child) {
  border-bottom: 1px solid #001d1b;
}
.custom-select-box.option-selected {
  background-color: #003b33;
}
.custom-select-box.option-selected .label {
  color: #ffffff;
  font-size: 0.75em;
  left: 16px;
  top: 0px;
  transform: none;
}
@media (min-width: 1920px) {
  .custom-select-box.option-selected .label {
    font-size: 11px;
  }
}
.custom-select-box.option-selected .selected-option {
  display: inline-block;
}
.custom-select-box .selected-option {
  display: none;
  width: 100%;
}
.custom-select-box ul {
  display: none;
  list-style: none;
  margin-top: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 999;
}

::placeholder {
  color: #708895 !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #708895 !important;
}

::-ms-input-placeholder {
  color: #708895 !important;
}

/*===============================================
  Grid
================================================= */
.grid-container {
  display: flex;
  flex-flow: row wrap;
  height: auto;
}
.grid-item {
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: fade-in-up-xl;
  display: flex;
  width: 31.25%;
  margin: 0 1% 1.75% 1%;
  background-color: #ffffff;
  border-style: solid;
  border-width: 2px;
  opacity: 0;
  transform: translateY(250%);
  z-index: 1;
  overflow: hidden;
}
.grid-item:nth-child(1) {
  animation-delay: 0.35s;
}
.grid-item:nth-child(2) {
  animation-delay: 0.4s;
}
.grid-item:nth-child(3) {
  animation-delay: 0.45s;
}
.grid-item:nth-child(4) {
  animation-delay: 0.5s;
}
.grid-item:nth-child(5) {
  animation-delay: 0.55s;
}
.grid-item:nth-child(6) {
  animation-delay: 0.6s;
}
.grid-item:nth-child(7) {
  animation-delay: 0.65s;
}
.grid-item:nth-child(8) {
  animation-delay: 0.7s;
}
.grid-item:nth-child(9) {
  animation-delay: 0.75s;
}
.grid-item:nth-child(10) {
  animation-delay: 0.8s;
}
.grid-item:nth-child(11) {
  animation-delay: 0.85s;
}
.grid-item:nth-child(12) {
  animation-delay: 0.9s;
}
.grid-item:nth-child(13) {
  animation-delay: 0.95s;
}
.grid-item:nth-child(14) {
  animation-delay: 1s;
}
.grid-item:nth-child(15) {
  animation-delay: 1.05s;
}
.grid-item:nth-child(16) {
  animation-delay: 1.1s;
}
.grid-item:nth-child(17) {
  animation-delay: 1.15s;
}
.grid-item:nth-child(18) {
  animation-delay: 1.2s;
}
.grid-item:nth-child(19) {
  animation-delay: 1.25s;
}
.grid-item:nth-child(20) {
  animation-delay: 1.3s;
}
.grid-item:last-of-type::after {
  content: "";
  flex: auto;
}
.grid-item.disease {
  padding: 15px 30px;
  position: relative;
  flex-direction: column;
}
.grid-item.disease:after {
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
.grid-item.disease .subtitle {
  font-size: 0.938em;
  margin-bottom: 7px;
}
.grid-item.disease .title {
  color: #003b33;
  font-size: 2em;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
}
.grid-item.disease .title.compact {
  font-size: 1.5em;
  line-height: 1em;
  padding-right: 1em;
}
@media (min-width: 1920px) {
  .grid-item.disease .title.compact {
    font-size: 1.25em;
    line-height: 1em;
  }
}
.grid-item.product {
  border-color: #061e2c;
  color: #003b33;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 8px;
  text-align: center;
}
.grid-item.product .product-img {
  flex: 1;
  margin: 0 auto;
  max-height: 80%;
  max-width: 68%;
  padding-bottom: 15px;
  padding-top: 15px;
}
.grid-item.product .subtitle,
.grid-item.product .title {
  font-weight: 300;
  margin: 0;
}
.grid-item.product .subtitle {
  font-size: 1em;
}
.grid-item.product .title {
  font-size: 1.313em;
}
.grid-item.cardiorenal {
  border-color: #624963;
}
.grid-item.cardiorenal:after {
  background-image: url("../img/disease-states/cardiorenal.jpg");
}
.grid-item.cardiorenal .subtitle {
  color: #624963;
}
.grid-item.stroke-prevention {
  border-color: #ff3162;
}
.grid-item.stroke-prevention:after {
  background-image: url("../img/disease-states/stroke-prevention.jpg");
}
.grid-item.stroke-prevention .subtitle {
  color: #ff3162;
}
.grid-item.vascular-protection {
  border-color: #5db300;
}
.grid-item.vascular-protection:after {
  background-image: url("../img/disease-states/vascular-protection.jpg");
}
.grid-item.vascular-protection .subtitle {
  color: #5db300;
}
.grid-item.venous-protection {
  border-color: #4fbbf9;
}
.grid-item.venous-protection:after {
  background-image: url("../img/disease-states/venous-protection.jpg");
}
.grid-item.venous-protection .subtitle {
  color: #4fbbf9;
}
.grid-item.womens-health {
  border-color: #944FDC;
}
.grid-item.womens-health:after {
  background-image: url("../img/disease-states/stroke-prevention.jpg");
}
.grid-item.womens-health .subtitle {
  color: #944FDC;
}

a.grid-item {
  text-decoration: none !important;
}

/*===============================================
  Home
================================================= */
.home-content h1,
.home-content h2,
.home-links li {
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

.home-content h1 {
  color: #ffffff;
  font-family: Neue Helvetica W04;
}

.home-links li div,
.home-links li a {
  font-size: 1em !important;
}

.home-content {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .home-content {
    padding-top: 2em !important;
  }
}
.home-content h1,
.home-content h2 {
  animation-delay: 0.75s;
  animation-name: fade-in-up;
  transform: translateY(100%);
}

.home-content .title {
  color: #003B33;
  font-size: 1.8em;
}

.home-links a.btn.bg-white.btn-chevron-right.btn-chevron-right-green:hover {
  background-color: #7fbd34 !important;
  color: #ffffff;
}
.home-links a.btn.bg-white.btn-chevron-right.btn-chevron-right-green:hover:after {
  background-image: url(../img/ui-elements/chevron-right-white.png);
  width: 9px;
  transition: ease-in-out;
}

.home-links .btn,
.modal-disclaimer .modal-close {
  display: inline-block;
  font-size: 20px !important;
  min-height: 50px;
  line-height: 21px;
  margin-bottom: 20px;
  padding: 0.8125rem 20px;
  border-radius: 4px;
  min-width: 300px;
}
@media (min-width: 1920px) {
  .home-links .btn,
  .modal-disclaimer .modal-close {
    margin-bottom: 20px;
  }
}

.home-links {
  list-style: none;
  margin-top: 0;
  padding: 0;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .home-links .home-links {
    margin-top: 10px;
  }
}
.home-links li {
  animation-name: fade-in-up-xl;
  transform: translateY(250%);
}
.home-links li:nth-child(1) {
  animation-delay: 0.85s;
}
.home-links li:nth-child(2) {
  animation-delay: 0.95s;
}
.home-links li:nth-child(3) {
  animation-delay: 1.05s;
}

/*===============================================
  Icons
================================================= */
.icon {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  margin-right: 5px;
}
.icon-home {
  background-image: url("../img/ui-elements/home-icon.png");
}

/*===============================================
  Images
================================================= */
img {
  max-width: 100%;
}

.center-img img {
  display: block;
  margin: auto;
}

.img-bg,
.overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  min-height: 700px;
}
@media (min-width: 1920px) {
  .img-bg,
  .overlay {
    min-height: 1000px;
  }
}

.img-bg,
.video-bg {
  z-index: -1;
}
.img-bg img,
.img-bg video,
.video-bg img,
.video-bg video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.img-bg {
  height: auto;
  width: auto;
}
.img-bg .bottom-center {
  object-position: bottom center;
}
.img-bg .bottom-left {
  object-position: bottom left;
}

.logo {
  height: 58px;
  width: 58px;
}
.logo.top-right {
  position: absolute;
  right: 36px;
  top: 36px;
}

/*===============================================
  Menu
================================================= */
.menu {
  background-color: #e0f3c9;
  bottom: 0;
  left: -340px;
  opacity: 0;
  position: absolute;
  top: 86px;
  transition: all 0.2s ease-in-out;
  width: 340px;
  z-index: 1000;
}
.menu.active {
  left: 0;
  opacity: 1;
}
.menu-header, .menu-item a {
  padding: 25px;
}
.menu-header {
  background-color: #003b33;
}
.menu-header .input-group {
  width: 100%;
}
.menu-header .input-group input {
  color: #ffffff;
}
.menu-item {
  border-bottom: 2px solid #89d329;
  font-size: 1.625em;
  font-weight: 300;
}
.menu-item a {
  color: #003b33;
  display: block;
  line-height: 1;
  text-decoration: none;
}
.menu-item a:active {
  background-color: #bce58a;
}
.menu-item .icon {
  height: 26px;
  margin-top: 1px;
  vertical-align: text-top;
  width: 26px;
}
@media (min-width: 1920px) {
  .menu-item .icon {
    vertical-align: baseline;
  }
}
.menu form {
  width: 100%;
}
.menu ul {
  list-style: none;
  margin-top: 0;
  padding: 0;
}

#menu-overlay {
  background-color: rgba(0, 0, 0, 0.85);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
#menu-overlay.active {
  opacity: 1;
  z-index: 999;
}

#menu-toggle {
  display: inline-block;
  height: 28px;
  margin-right: 30px;
  position: relative;
  width: 42px;
  z-index: 1000;
  cursor: pointer;
}
#menu-toggle span {
  background-color: #ffffff;
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
#menu-toggle span.bottom {
  top: 24px;
}
#menu-toggle span.middle {
  top: 12px;
}
#menu-toggle span.top {
  top: 0;
}
#menu-toggle.active span.bottom {
  transform: translateY(-12px) translateX(0) rotate(-45deg);
}
#menu-toggle.active span.middle {
  opacity: 0;
}
#menu-toggle.active span.top {
  transform: translateY(12px) translateX(0) rotate(45deg);
}

/*===============================================
  Modals
================================================= */
.modal-body {
  padding-left: 3rem;
  padding-right: 3rem;
}
.modal-content {
  border: 2px solid #003B33;
  border-radius: 0;
}
.modal-dialog {
  margin-top: 4.5rem;
}
.modal-disclaimer {
  background: #00617f; /* Old browsers */
  background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($primary-gradient-bottom, 0.9)", endColorstr="rgba($primary-gradient-top, 0.9)",GradientType=0 ); /* IE6-9 */
}
.modal-disclaimer .modal-body {
  color: #ffffff;
  font-size: 1em;
  font-weight: 100;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
}
@media (min-width: 1920px) {
  .modal-disclaimer .modal-body {
    font-size: 28px;
    padding-bottom: 50px;
  }
}
.modal-disclaimer .modal-close {
  left: 50%;
  position: absolute;
  top: calc(100% + 24px);
  transform: translateX(-50%);
  width: 240px;
}
@media (min-width: 1920px) {
  .modal-disclaimer .modal-close {
    height: 80px;
    width: 350px;
  }
}
.modal-disclaimer .modal-content {
  background-color: #003b33;
  border: none;
  margin-bottom: 24px;
  transform: translateY(-60px);
  max-width: 945px;
}
@media (max-width: 767px) {
  .modal-disclaimer .modal-content {
    max-width: 80vw;
  }
}
.modal-disclaimer .modal-dialog {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: auto;
  max-width: none;
}
.modal-disclaimer .modal-title {
  color: #ffffff;
  font-weight: bold;
}
@media (min-width: 1920px) {
  .modal-disclaimer .modal-title {
    font-size: 28px;
  }
}
.modal-disclaimer .modal-header {
  background: transparent;
}
.modal-fixed, .modal-fixed .modal-content {
  max-height: 590px;
  max-width: 1000px;
  min-height: 460px;
  min-width: 1000px;
}
@media (min-height: 834px) {
  .modal-fixed, .modal-fixed .modal-content {
    max-height: 650px;
  }
}
@media (min-height: 1024px) {
  .modal-fixed, .modal-fixed .modal-content {
    max-height: 840px;
  }
}
.modal-fixed {
  overflow: hidden;
}
.modal-fixed:after {
  background: rgba(255, 255, 255, 0.5); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($white, 0)", endColorstr="$white",GradientType=0 ); /* IE6-9 */
  bottom: 2px;
  content: "";
  display: block;
  height: 58px;
  left: 2px;
  position: absolute;
  right: 12px;
}
.modal-fixed .modal-body {
  max-height: 520px;
  overflow: hidden;
  overflow-y: auto;
}
.modal-header {
  border-bottom: none;
  text-align: center;
  padding-bottom: 0;
  padding-top: 2rem;
  min-height: 60px;
  max-height: 60px;
  background-color: #fff;
}
@media (min-width: 1920px) {
  .modal-header {
    min-height: 80px;
    max-height: 80px;
  }
}
.modal-header .close {
  font-size: 1rem;
  margin: 0;
  opacity: 1;
  padding-top: 20px;
  position: absolute;
  right: 0;
  top: 0;
}
.modal-header .close img {
  height: 24px;
  width: 24px;
}
.modal.show {
  display: flex !important;
  align-items: center;
  padding: 0 !important;
}
.modal-title {
  color: #003B33;
  font-size: 1em;
  width: 100%;
}
.modal-title img[alt=blacktriangle] {
  height: 0.75em;
}

/*===============================================
  Navs
================================================= */
.nav-block {
  background-color: #003B33;
}
.nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-item:not(:last-child) {
  border-right: 2px solid rgba(0, 0, 0, 0.18);
}
.nav-link {
  border-radius: 0 !important;
  font-size: 16px;
  padding-bottom: calc(0.5rem + 4px);
}
@media (min-width: 1920px) {
  .nav-link {
    font-size: 0.75em;
  }
}
.nav-link.active {
  background-color: #ffffff !important;
  box-shadow: inset 0 -4px 0 #003B33;
  color: #003b33 !important;
}
.nav a {
  color: #ffffff;
}
.nav a:active {
  background-color: black;
}

/*===============================================
  Navbar
================================================= */
.navbar {
  align-items: center;
  display: flex;
  min-height: 86px;
  justify-content: space-between;
  padding: 12px 33px;
  background: #003B33;
  width: 100vw;
  z-index: 9999;
}
.navbar-left {
  align-items: center;
  display: flex;
}
.navbar-title {
  color: #ffffff;
  display: inline-block;
  font-size: 1.75em;
  font-weight: 300;
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .navbar-title {
    font-size: 1.313em;
  }
}
@media (max-width: 767px) {
  .navbar-title {
    font-size: 20px;
  }
}
.navbar-title small {
  font-size: 0.75em;
  font-weight: 300;
}
@media (min-width: 1920px) {
  .navbar-title small {
    font-size: 0.813em;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar {
    padding: 12px 23px;
  }
}

/*===============================================
  Overlays
================================================= */
.overlay {
  animation-name: slide-in-left;
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-duration: 0.5s;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-100%);
  z-index: 2;
}
.overlay.container {
  padding: 40px 55px;
}
@media (min-width: 1920px) {
  .overlay.container {
    padding: 75px 172px;
  }
}
.overlay .custom-control-label::before,
.overlay .custom-control-input:checked ~ .custom-control-label::before,
.overlay .input-group input {
  border: 1px solid #49889c !important;
}
.overlay .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #49889c !important;
}
.overlay .input-group {
  animation-name: fade-in;
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 0.75s;
  animation-duration: 0.35s;
  opacity: 0;
}
.overlay .input-group input {
  color: #ffffff;
}

/*===============================================
  Search Results
================================================= */
.search-results {
  display: flex;
  flex-direction: column;
  margin-top: 10%;
}
.search-results .form-inline {
  margin-bottom: 30px;
  margin-top: 15px;
}
.search-results .grid-container {
  flex: 1 1 auto;
}
.search-results .product-img {
  max-width: 50%;
}
.search-results .product p {
  margin-bottom: 0;
}
.search-results button.btn.btn-primary.px-5:hover {
  background-color: #a6a6a6 !important;
}

.results-header {
  color: #003B33;
  margin-top: 30px;
}

.search-result-item {
  margin-bottom: 15px;
  border: 1px solid #003B33;
  padding: 15px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
}
.search-result-item__link {
  color: #10384F;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.search-result-item__link:hover {
  text-decoration: none;
  color: #10384F;
}
.search-result-item__link span {
  flex: 1;
}
.search-result-item img {
  max-height: 26px;
  flex: 0;
}

/*===============================================
  Tabs
================================================= */
ul.nav.nav-pills {
  width: 20%;
  float: left;
  margin-right: 10px;
}
@media only screen and (max-width:1366px){
  ul.nav.nav-pills{
    width: 20%;
  }
}
.tab-content {
  min-height: 50vh;
  overflow: hidden;
  background: #fff;
  padding: 0 30px;
  border-radius: 10px;
  height: unset;
  max-height: 80vh;
  overflow: auto;
  scroll-behavior: smooth;
}
@media only screen and (max-width:1366px){
  .tab-content {
    max-height: 75vh;
    min-height: 50vh;
  }
}
.tab-content .footer-references p{
  margin-bottom: 2vh;
}
.tab-content > .active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (max-width: 1910px) {
  .tab-content > .active {
    height: 90%;
  }
}
li.nav-item.card-logo {
  background: #fff;
  padding: 10px 5px;
  border-radius: 6px;
  text-align: center;
}
li.nav-item.card-logo img{
  max-width: 105px;
}
li.nav-item.has-modal a.nav-link {
  font-size: 0.7em;
  width: 100%;
  text-align: left;
}
.trial_logo{
  max-width: 150px;
  margin:10px auto 0;
}
@media only screen and (max-width:1366px){
  .trial_logo{
   
  }
}
/*===============================================
  Timeline
================================================= */
.timeline:after, .timeline-content,
.timeline .count, .timeline-item:after, .timeline-item:before, .timeline-legend, .timeline-title,
.timeline .today, .timeline-year:after {
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.timeline-container .nav-item {
  margin: 5px;
  width: 100%;
  text-align: left;
}
.timeline-container .nav-item:not(:last-child) {
  border-right: unset !important;
}
.timeline-container .nav-link {
  background-color: #003b33 !important;
  color: #ffffff;
  padding: 15px;
  border-radius: 6px !important;
  font-size: 1em;
  font-weight: 500;
  padding-left: 65px;
}
@media only screen and (max-width:1366px){
  .timeline-container .nav-link{
    padding-left: 20px;
  }
}
.timeline-container .nav-link.active {
  background-color: #ffffff !important;
  color: #003b33 !important;
  box-shadow: none;
}

.timeline {
  display: flex;
  height: calc(100% - 120px);
  margin-bottom: 16px;
  margin-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 15px 0;
  z-index: 5;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  overscroll-behavior: none;
  width: 100vw;
}
@media (max-width: 1919px) {
  .timeline {
    margin-top: 70px;
  }
}
@media (min-width: 1920px) {
  .timeline {
    height: calc(100% - 133px);
    margin-top: 0;
  }
}
.timeline-child {
  display: flex;
  position: relative;
  flex: 1 1 100%;
}
.timeline::-webkit-scrollbar {
  display: none;
}
.timeline-content {
  animation-delay: 0.65s;
  animation-duration: 0.65s;
  animation-name: timeline-content-down;
  background-color: #ffffff;
  border-style: solid;
  border-width: 4px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  opacity: 0;
  padding: 20px 26px 12px;
  position: relative;
  transform: translateY(-100%);
  z-index: 3;
  border: none;
  border-radius: 5px;
}
@media (min-width: 1920px) {
  .timeline-content {
    padding: 11px 13px 11px;
  }
}
.timeline-content:after {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: inline-block;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
}
@media (min-width: 1920px) {
  .timeline-content:after {
    height: 20px;
    width: 10px;
  }
}
.cardiorenal .timeline-content {
  border-color: #624963;
}
.cardiorenal .timeline-content:after {
  background-image: url("../img/ui-elements/chevron-right-cardiorenal.png");
}
.stroke-prevention .timeline-content {
  border-color: #ff3162;
}
.stroke-prevention .timeline-content:after {
  background-image: url("../img/ui-elements/chevron-right-stroke-prevention.png");
}
.vascular-protection .timeline-content {
  border-color: #5db300;
}
.vascular-protection .timeline-content:after {
  background-image: url("../img/ui-elements/chevron-right-vascular-protection.png");
}
.venous-protection .timeline-content {
  border-color: #4fbbf9;
}
.venous-protection .timeline-content:after {
  background-image: url("../img/ui-elements/chevron-right-venous-protection.png");
}
.timeline-content h2,
.timeline-content .phase {
  color: #003b33;
  margin-bottom: 0;
}
.timeline-content h2 {
  font-size: 18px;
  font-weight: 500;
}
.timeline-content .phase {
  font-size: 0.813em;
  font-weight: 300;
}
.timeline-filter {
  display: flex;
  position: relative;
  padding: 0 20px 0 0;
  z-index: 10;
}
@media (max-width: 1919px) {
  .timeline-filter {
    display: none;
  }
}
.timeline-filter .btn,
.timeline-filter .custom-select-box {
  width: 26%;
}
.timeline-filter .btn {
  height: 48px;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
  width: auto;
  background: #003b33;
}
.timeline-filter .btn:hover {
  background: #A6A6A6;
}
.timeline-filter .custom-select-box {
  margin-right: 20px;
  min-width: 350px;
  width: unset;
  max-width: unset;
  cursor: pointer;
}
.timeline-group {
  flex: 1 0 auto;
  height: 100%;
  min-width: 140px;
  position: relative;
}
.timeline-group:not(:last-child) {
  border-right: 1px solid #fff;
}
.timeline-item {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  position: relative;
  text-align: center;
  /*&:nth-child(even) {
      flex-direction: column-reverse;
      &:after {
          transform: translate(-50%, 0%);
      }
      .count {
          animation-name: timeline-count-down;
          transform: translateY(-50%);
      }
      .timeline-content {
          animation-name: timeline-content-up;
          transform: translateY(250%);
      }
  }*/
}
.timeline-item:nth-child(1) .timeline-content,
.timeline-item:nth-child(1) .timeline-count,
.timeline-item:nth-child(1) .timeline-item:after,
.timeline-item:nth-child(1) .timeline-item:before {
  animation-delay: 0.7s;
}
.timeline-item:nth-child(2) .timeline-content,
.timeline-item:nth-child(2) .timeline-count,
.timeline-item:nth-child(2) .timeline-item:after,
.timeline-item:nth-child(2) .timeline-item:before {
  animation-delay: 0.75s;
}
.timeline-item:nth-child(3) .timeline-content,
.timeline-item:nth-child(3) .timeline-count,
.timeline-item:nth-child(3) .timeline-item:after,
.timeline-item:nth-child(3) .timeline-item:before {
  animation-delay: 0.8s;
}
.timeline-item:nth-child(4) .timeline-content,
.timeline-item:nth-child(4) .timeline-count,
.timeline-item:nth-child(4) .timeline-item:after,
.timeline-item:nth-child(4) .timeline-item:before {
  animation-delay: 0.85s;
}
.timeline-item:nth-child(5) .timeline-content,
.timeline-item:nth-child(5) .timeline-count,
.timeline-item:nth-child(5) .timeline-item:after,
.timeline-item:nth-child(5) .timeline-item:before {
  animation-delay: 0.9s;
}
.timeline-item:nth-child(6) .timeline-content,
.timeline-item:nth-child(6) .timeline-count,
.timeline-item:nth-child(6) .timeline-item:after,
.timeline-item:nth-child(6) .timeline-item:before {
  animation-delay: 0.95s;
}
.timeline-item:nth-child(7) .timeline-content,
.timeline-item:nth-child(7) .timeline-count,
.timeline-item:nth-child(7) .timeline-item:after,
.timeline-item:nth-child(7) .timeline-item:before {
  animation-delay: 1s;
}
.timeline-item:nth-child(8) .timeline-content,
.timeline-item:nth-child(8) .timeline-count,
.timeline-item:nth-child(8) .timeline-item:after,
.timeline-item:nth-child(8) .timeline-item:before {
  animation-delay: 1.05s;
}
.timeline-item:nth-child(9) .timeline-content,
.timeline-item:nth-child(9) .timeline-count,
.timeline-item:nth-child(9) .timeline-item:after,
.timeline-item:nth-child(9) .timeline-item:before {
  animation-delay: 1.1s;
}
.timeline-item:nth-child(10) .timeline-content,
.timeline-item:nth-child(10) .timeline-count,
.timeline-item:nth-child(10) .timeline-item:after,
.timeline-item:nth-child(10) .timeline-item:before {
  animation-delay: 1.15s;
}
.timeline-item:nth-child(11) .timeline-content,
.timeline-item:nth-child(11) .timeline-count,
.timeline-item:nth-child(11) .timeline-item:after,
.timeline-item:nth-child(11) .timeline-item:before {
  animation-delay: 1.2s;
}
.timeline-item:nth-child(12) .timeline-content,
.timeline-item:nth-child(12) .timeline-count,
.timeline-item:nth-child(12) .timeline-item:after,
.timeline-item:nth-child(12) .timeline-item:before {
  animation-delay: 1.25s;
}
.timeline-item:nth-child(13) .timeline-content,
.timeline-item:nth-child(13) .timeline-count,
.timeline-item:nth-child(13) .timeline-item:after,
.timeline-item:nth-child(13) .timeline-item:before {
  animation-delay: 1.3s;
}
.timeline-item:nth-child(14) .timeline-content,
.timeline-item:nth-child(14) .timeline-count,
.timeline-item:nth-child(14) .timeline-item:after,
.timeline-item:nth-child(14) .timeline-item:before {
  animation-delay: 1.35s;
}
.timeline-item:nth-child(15) .timeline-content,
.timeline-item:nth-child(15) .timeline-count,
.timeline-item:nth-child(15) .timeline-item:after,
.timeline-item:nth-child(15) .timeline-item:before {
  animation-delay: 1.4s;
}
.timeline-item:nth-child(16) .timeline-content,
.timeline-item:nth-child(16) .timeline-count,
.timeline-item:nth-child(16) .timeline-item:after,
.timeline-item:nth-child(16) .timeline-item:before {
  animation-delay: 1.45s;
}
.timeline-item:nth-child(17) .timeline-content,
.timeline-item:nth-child(17) .timeline-count,
.timeline-item:nth-child(17) .timeline-item:after,
.timeline-item:nth-child(17) .timeline-item:before {
  animation-delay: 1.5s;
}
.timeline-item:nth-child(18) .timeline-content,
.timeline-item:nth-child(18) .timeline-count,
.timeline-item:nth-child(18) .timeline-item:after,
.timeline-item:nth-child(18) .timeline-item:before {
  animation-delay: 1.55s;
}
.timeline-item:nth-child(19) .timeline-content,
.timeline-item:nth-child(19) .timeline-count,
.timeline-item:nth-child(19) .timeline-item:after,
.timeline-item:nth-child(19) .timeline-item:before {
  animation-delay: 1.6s;
}
.timeline-item:nth-child(20) .timeline-content,
.timeline-item:nth-child(20) .timeline-count,
.timeline-item:nth-child(20) .timeline-item:after,
.timeline-item:nth-child(20) .timeline-item:before {
  animation-delay: 1.65s;
}
.timeline-item[data-reverseContent=reverseContent] {
  flex-direction: column-reverse;
}
.timeline-item[data-reverseContent=reverseContent]:after {
  transform: translate(-50%, 0%);
}
.timeline-item[data-reverseContent=reverseContent] .count {
  animation-name: timeline-count-down;
  transform: translateY(-50%);
}
.timeline-item[data-reverseContent=reverseContent] .timeline-content {
  animation-name: timeline-content-up;
  transform: translateY(250%);
}
.timeline-item:after, .timeline-item:before {
  background-color: #003B33;
  content: "";
  display: inline-block;
  left: 50%;
  position: absolute;
}
.timeline-item:after {
  animation-delay: 0.5s;
  animation-duration: 0.35s;
  animation-name: timeline-item-line;
  height: 0%;
  top: 50%;
  transform: translate(-50%, -100%);
  width: 4px;
}
@media (min-width: 1920px) and (max-width: 2400px) {
  .timeline-item:after {
    animation-name: timeline-item-line-norm;
  }
}
@media (min-width: 2401px) and (max-width: 3839px) {
  .timeline-item:after {
    animation-name: timeline-item-line-xl;
  }
}
@media (min-width: 3840px) {
  .timeline-item:after {
    animation-name: timeline-item-line-xxl;
  }
}
@media (min-width: 5759px) {
  .timeline-item:after {
    animation-name: timeline-item-line-xxxl;
  }
}
.timeline-item:before {
  animation-name: timeline-pips;
  border-radius: 50%;
  height: 14px;
  opacity: 0;
  top: 50%;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: center;
  width: 14px;
}
@media (min-width: 1920px) {
  .timeline-item:before {
    height: 20px;
    width: 20px;
  }
}
.timeline-item:not(:first-child) {
  /*margin-left: -4.5rem;
  @media (min-width: $touchscreen-1080-width) {
      margin-left: -5.5rem;
  }*/
}
.timeline-legend {
  animation-name: fade-in-up;
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 0;
  padding: 0;
  margin-bottom: 0;
  opacity: 0;
}
.timeline-legend li {
  color: #ffffff;
  display: inline-block;
  font-size: 1em;
  font-weight: 300;
  padding-left: 34px;
  position: relative;
}
@media (min-width: 1920px) {
  .timeline-legend li {
    font-size: 0.9em;
  }
}
.timeline-legend li:before {
  border-radius: 50%;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  content: "";
  display: inline-block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 22px;
}
@media (min-width: 1920px) {
  .timeline-legend li:before {
    top: 4px;
  }
}
.timeline-legend li:not(:last-child) {
  margin-right: 40px;
}
.timeline-legend li.cardiorenal:before {
  background-color: #624963;
}
.timeline-legend li.stroke-prevention:before {
  background-color: #ff3162;
}
.timeline-legend li.vascular-protection:before {
  background-color: #5db300;
}
.timeline-legend li.venous-protection:before {
  background-color: #4fbbf9;
}
.timeline-logo {
  display: block;
  height: 16px;
  margin: 0 auto 5px;
}
@media (min-width: 1920px) {
  .timeline-logo {
    height: 21px;
  }
}
.timeline-title {
  animation-duration: 0.65s;
  animation-name: timeline-title;
  color: #fff;
  font-size: 1.625em;
  font-weight: 300;
  height: 50px;
  line-height: 1;
  margin-bottom: 0;
  opacity: 0;
  text-align: center;
  transform: translateY(-250%);
}
@media (min-width: 1920px) {
  .timeline-title {
    font-size: 1.4em;
  }
}
.timeline-year {
  display: flex;
  flex-direction: row;
  height: calc(71% - 76px);
  justify-content: center;
  list-style: none;
  margin-top: 0;
  padding: 0;
  margin-bottom: 0;
  padding: 0 10px;
  position: relative;
}
@media (min-width: 1920px) {
  .timeline-year {
    height: calc(100% - 50px);
  }
}
.timeline-year:after {
  position: absolute;
  top: calc(50% - 3px);
  width: calc(100% + 8px);
  left: -4px;
  height: 6px;
  background: #003B33;
  content: "";
}
.timeline .count {
  animation-delay: 0.6s;
  animation-duration: 0.65s;
  animation-name: timeline-count-up;
  background-color: #003B33;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 1em;
  height: 64px;
  margin: 12px auto;
  opacity: 0;
  padding: 6px 0 12px;
  transform: translateY(50%);
  width: 64px;
  z-index: 2;
}
@media (min-width: 1920px) {
  .timeline .count {
    font-size: 0.9em;
    height: 76px;
    margin-bottom: 16px;
    margin-top: 16px;
    padding-top: 10px;
    width: 76px;
  }
}
.timeline .count .user-icon {
  display: block;
  height: 23px;
  margin: auto;
  width: 23px;
}
@media (min-width: 1920px) {
  .timeline .count .user-icon {
    height: 28px;
    width: 28px;
  }
}
@media (min-width: 1920px) {
  .timeline .count-lg {
    font-size: 1.1em;
    height: 90px;
    margin-bottom: 12px;
    margin-top: 12px;
    padding-top: 10px;
    width: 90px;
  }
  .timeline .count-lg .user-icon {
    height: 32px;
    width: 32px;
  }
}
.timeline .count-sm {
  font-size: 0.75em;
  height: 46px;
  padding: 5px 0 6px;
  width: 46px;
}
@media (min-width: 1920px) {
  .timeline .count-sm {
    font-size: 0.75em;
    height: 60px;
    margin-bottom: 26px;
    margin-top: 26px;
    padding-top: 8px;
    width: 60px;
  }
}
.timeline .count-sm .user-icon {
  height: 19px;
  width: 19px;
}
@media (min-width: 1920px) {
  .timeline .count-sm .user-icon {
    height: 24px;
    width: 24px;
  }
}
.timeline .today {
  animation-duration: 0.65s;
  animation-name: timeline-today;
  color: #ffffff;
  font-size: 0.875em;
  font-weight: bold;
  height: calc(100% + 106px);
  top: 25px;
  opacity: 0;
  padding: 0 5px;
  position: absolute;
  text-align: center;
  transform: translateY(-170px);
}
@media (min-width: 1920px) {
  .timeline .today {
    font-size: 0.813em;
  }
}
.timeline .today:after {
  border-right: 2px dashed #ffffff;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin-top: 3px;
  position: absolute;
  transform: translateX(-50%);
  width: 2px;
}
.timeline .today + .timeline-item {
  margin-left: 10px;
}

/* Moa Modal */
.filter-container {
  padding: 30px 0 30px 120px;
  display: flex;
  position: relative;
  z-index: 10;
}
@media (max-width: 1365px) {
  .filter-container {
    display: none !important;
  }
}
.filter-container .moaButton .button-span {
  padding: 0 8px;
  color: #fff;
}
.filter-container .moaButton .button-span svg path {
  fill: #fff;
}
.filter-container .moaButton .btn {
  display: none !important;
  height: 40px;
  font-size: 16px;
  padding: 0;
  width: auto;
  min-width: 100px;
  background: #003b33 !important;
  border: none !important;
}
@media screen and (min-width: 1920px) {
  .filter-container .moaButton .btn {
    height: 48px;
  }
}

@media (max-width: 1919px) {
  .timeline-back-button .back-button {
    top: 96px;
  }
}

.timeline-approval-text {
  color: #fff;
  z-index: 11;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
}
.timeline-approval-text p {
  margin-bottom: 0;
}
.timeline-approval-text.timeline-approval {
  bottom: 0px;
  left: 24px;
}
@media (min-width: 1920px) {
  .timeline-approval-text.timeline-approval {
    bottom: 10px;
  }
}

/*===============================================
  Typography
================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 15px;
}

.hint-block {
  color: #6f6f6f;
  font-size: 0.75em !important;
  font-weight: normal !important;
}

strong {
  font-weight: bold;
}

ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

/*===============================================
  Videos
================================================= */
.video-bg {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 9;
}

.video-overlay {
  position: absolute;
  right: 0;
  width: 120vw;
  bottom: 0;
  height: calc(100vh - 120px);
  top: 0;
}

@media only screen and (max-width: 1366px) {
  .video-overlay {
    position: absolute;
    right: 0;
    width: 120vw;
    bottom: 127px;
    height: calc(100vh - 37%);
    top: unset;
  }
}
/* ======================================================
Timeline Grid
 ================================*/
.month-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
}
.month-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.month-list__month {
  position: relative;
}
.month-list__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.month-list__grid {
  display: -ms-flexbox;
  display: grid;
  -ms-grid-columns: repeat(31, minmax(min-content, max-content));
  grid-template-columns: repeat(31, minmax(min-content, max-content));
  background: transparent;
  width: 100%;
  height: 100%;
  grid-gap: 1px;
}
.month-list__grid.days-28 {
  -ms-grid-columns: repeat(28, minmax(min-content, max-content));
  grid-template-columns: repeat(28, minmax(min-content, max-content));
}
.month-list__grid.days-30 {
  -ms-grid-columns: repeat(30, minmax(min-content, max-content));
  grid-template-columns: repeat(30, minmax(min-content, max-content));
}
.month-list .items-list {
  display: flex;
  justify-content: center;
  height: 100%;
}
.month-list .items-list li.align-start {
  align-self: flex-start;
}
.month-list .items-list li.align-end {
  align-self: flex-end;
}
.month-list .items-list li[data-reverseContent=reverseContent]:after {
  transform: translate(-50%, 0%);
}
.month-list .items-list li[data-reverseContent=reverseContent] .count {
  animation-name: timeline-count-down;
  transform: translateY(-50%);
}
.month-list .items-list li[data-reverseContent=reverseContent] .timeline-content {
  animation-name: timeline-content-up;
  transform: translateY(250%);
}
.month-list .items-list__container {
  padding: 1rem 3rem;
  border: 1px solid #888;
}
.month-list .grid-day {
  position: relative;
  height: 100%;
}
.month-list .grid-day-1 {
  grid-column: 1;
  -ms-grid-column: 1;
}
.month-list .grid-day-1.is-today:before {
  content: "Today";
  display: block;
  grid-column: 1;
  -ms-grid-column: 1;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-1.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-2 {
  grid-column: 2;
  -ms-grid-column: 2;
}
.month-list .grid-day-2.is-today:before {
  content: "Today";
  display: block;
  grid-column: 2;
  -ms-grid-column: 2;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-2.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-3 {
  grid-column: 3;
  -ms-grid-column: 3;
}
.month-list .grid-day-3.is-today:before {
  content: "Today";
  display: block;
  grid-column: 3;
  -ms-grid-column: 3;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-3.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-4 {
  grid-column: 4;
  -ms-grid-column: 4;
}
.month-list .grid-day-4.is-today:before {
  content: "Today";
  display: block;
  grid-column: 4;
  -ms-grid-column: 4;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-4.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-5 {
  grid-column: 5;
  -ms-grid-column: 5;
}
.month-list .grid-day-5.is-today:before {
  content: "Today";
  display: block;
  grid-column: 5;
  -ms-grid-column: 5;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-5.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-6 {
  grid-column: 6;
  -ms-grid-column: 6;
}
.month-list .grid-day-6.is-today:before {
  content: "Today";
  display: block;
  grid-column: 6;
  -ms-grid-column: 6;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-6.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-7 {
  grid-column: 7;
  -ms-grid-column: 7;
}
.month-list .grid-day-7.is-today:before {
  content: "Today";
  display: block;
  grid-column: 7;
  -ms-grid-column: 7;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-7.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-8 {
  grid-column: 8;
  -ms-grid-column: 8;
}
.month-list .grid-day-8.is-today:before {
  content: "Today";
  display: block;
  grid-column: 8;
  -ms-grid-column: 8;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-8.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-9 {
  grid-column: 9;
  -ms-grid-column: 9;
}
.month-list .grid-day-9.is-today:before {
  content: "Today";
  display: block;
  grid-column: 9;
  -ms-grid-column: 9;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-9.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-10 {
  grid-column: 10;
  -ms-grid-column: 10;
}
.month-list .grid-day-10.is-today:before {
  content: "Today";
  display: block;
  grid-column: 10;
  -ms-grid-column: 10;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-10.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-11 {
  grid-column: 11;
  -ms-grid-column: 11;
}
.month-list .grid-day-11.is-today:before {
  content: "Today";
  display: block;
  grid-column: 11;
  -ms-grid-column: 11;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-11.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-12 {
  grid-column: 12;
  -ms-grid-column: 12;
}
.month-list .grid-day-12.is-today:before {
  content: "Today";
  display: block;
  grid-column: 12;
  -ms-grid-column: 12;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-12.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-13 {
  grid-column: 13;
  -ms-grid-column: 13;
}
.month-list .grid-day-13.is-today:before {
  content: "Today";
  display: block;
  grid-column: 13;
  -ms-grid-column: 13;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-13.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-14 {
  grid-column: 14;
  -ms-grid-column: 14;
}
.month-list .grid-day-14.is-today:before {
  content: "Today";
  display: block;
  grid-column: 14;
  -ms-grid-column: 14;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-14.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-15 {
  grid-column: 15;
  -ms-grid-column: 15;
}
.month-list .grid-day-15.is-today:before {
  content: "Today";
  display: block;
  grid-column: 15;
  -ms-grid-column: 15;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-15.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-16 {
  grid-column: 16;
  -ms-grid-column: 16;
}
.month-list .grid-day-16.is-today:before {
  content: "Today";
  display: block;
  grid-column: 16;
  -ms-grid-column: 16;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-16.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-17 {
  grid-column: 17;
  -ms-grid-column: 17;
}
.month-list .grid-day-17.is-today:before {
  content: "Today";
  display: block;
  grid-column: 17;
  -ms-grid-column: 17;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-17.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-18 {
  grid-column: 18;
  -ms-grid-column: 18;
}
.month-list .grid-day-18.is-today:before {
  content: "Today";
  display: block;
  grid-column: 18;
  -ms-grid-column: 18;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-18.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-19 {
  grid-column: 19;
  -ms-grid-column: 19;
}
.month-list .grid-day-19.is-today:before {
  content: "Today";
  display: block;
  grid-column: 19;
  -ms-grid-column: 19;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-19.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-20 {
  grid-column: 20;
  -ms-grid-column: 20;
}
.month-list .grid-day-20.is-today:before {
  content: "Today";
  display: block;
  grid-column: 20;
  -ms-grid-column: 20;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-20.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-21 {
  grid-column: 21;
  -ms-grid-column: 21;
}
.month-list .grid-day-21.is-today:before {
  content: "Today";
  display: block;
  grid-column: 21;
  -ms-grid-column: 21;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-21.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-22 {
  grid-column: 22;
  -ms-grid-column: 22;
}
.month-list .grid-day-22.is-today:before {
  content: "Today";
  display: block;
  grid-column: 22;
  -ms-grid-column: 22;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-22.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-23 {
  grid-column: 23;
  -ms-grid-column: 23;
}
.month-list .grid-day-23.is-today:before {
  content: "Today";
  display: block;
  grid-column: 23;
  -ms-grid-column: 23;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-23.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-24 {
  grid-column: 24;
  -ms-grid-column: 24;
}
.month-list .grid-day-24.is-today:before {
  content: "Today";
  display: block;
  grid-column: 24;
  -ms-grid-column: 24;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-24.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-25 {
  grid-column: 25;
  -ms-grid-column: 25;
}
.month-list .grid-day-25.is-today:before {
  content: "Today";
  display: block;
  grid-column: 25;
  -ms-grid-column: 25;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-25.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-26 {
  grid-column: 26;
  -ms-grid-column: 26;
}
.month-list .grid-day-26.is-today:before {
  content: "Today";
  display: block;
  grid-column: 26;
  -ms-grid-column: 26;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-26.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-27 {
  grid-column: 27;
  -ms-grid-column: 27;
}
.month-list .grid-day-27.is-today:before {
  content: "Today";
  display: block;
  grid-column: 27;
  -ms-grid-column: 27;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-27.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-28 {
  grid-column: 28;
  -ms-grid-column: 28;
}
.month-list .grid-day-28.is-today:before {
  content: "Today";
  display: block;
  grid-column: 28;
  -ms-grid-column: 28;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-28.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-29 {
  grid-column: 29;
  -ms-grid-column: 29;
}
.month-list .grid-day-29.is-today:before {
  content: "Today";
  display: block;
  grid-column: 29;
  -ms-grid-column: 29;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-29.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-30 {
  grid-column: 30;
  -ms-grid-column: 30;
}
.month-list .grid-day-30.is-today:before {
  content: "Today";
  display: block;
  grid-column: 30;
  -ms-grid-column: 30;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-30.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .grid-day-31 {
  grid-column: 31;
  -ms-grid-column: 31;
}
.month-list .grid-day-31.is-today:before {
  content: "Today";
  display: block;
  grid-column: 31;
  -ms-grid-column: 31;
  color: white;
  position: absolute;
  height: 120%;
  top: -10%;
  width: 100%;
  text-align: center;
  opacity: 1;
}
.month-list .grid-day-31.is-today:after {
  content: "";
  height: 108%;
  width: 1px;
  position: absolute;
  background: white;
  display: block;
  top: 0%;
  left: calc(50% - 0.5px);
  opacity: 0.8;
}
.month-list .count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.is-today-marker {
  position: absolute;
  top: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.is-today-marker:before {
  content: "Today";
  display: block;
  color: #003b33;
  opacity: 1;
}
.is-today-marker:after {
  content: "";
  height: 93%;
  width: 1px;
  border-width: 0 2px 0 0;
  border-style: dashed;
  border-color: #003b33;
  display: block;
  opacity: 1;
}

.is-current-year {
  display: grid;
  -ms-grid-columns: repeat(12, minmax(10px, max-content));
  grid-template-columns: repeat(12, minmax(10px, max-content));
  width: 100%;
}
.is-current-year .month-list__grid {
  -ms-grid-columns: repeat(auto-fit, minmax(0, max-content));
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
}
.is-current-year .month-list__grid.days-28 {
  -ms-grid-columns: repeat(auto-fit, minmax(0, max-content));
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
}
.is-current-year .month-list__grid.days-30 {
  -ms-grid-columns: repeat(auto-fit, minmax(0, max-content));
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
}

.timeline-approval p {
  margin-bottom: 0.5em;
}

.content-container.desktop {
  padding-bottom: 2em !important;
}

.footer {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.5em 70px;
  color: #ffffff;
  background-color: #061e2c;
  z-index: 10;
}
@media (min-width: 1920px) {
  .footer {
    padding: 0.5em 50px;
  }
}
.footer a,
.footer div {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 0.8em;
  line-height: 1em;
  font-weight: normal;
  text-decoration: none;
  color: #ffffff !important;
  text-align: center;
}
.footer a:active, .footer a:visited,
.footer div:active,
.footer div:visited {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline !important;
}

.footer-content-box span {
  font-size: 0.8em;
}
.footer-content-box span:hover {
  text-decoration: underline;
}
.footer-content-box .footer-content-box {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .container.pt-sm {
    padding-top: 60px;
  }
  .navbar {
    padding: 12px 23px;
  }
  .input-group.search input {
    padding-right: 20px;
  }
  .back-button {
    top: 90px;
    left: 20px;
  }
  .disease-state-container {
    margin-top: 50px;
  }
  .card-logo-prepend .card-footer {
    padding-top: 10px;
  }
  .card-logo-prepend .card-body,
  .card-logo-prepend .card-footer {
    padding: 40px 15px 15px;
  }
  .video-bg video {
    height: 100%;
    object-fit: cover;
    margin: 0 0 0 40%;
    width: 60%;
    border: none;
    float: right;
  }
  .navigator {
    padding: 0;
  }
  .navigator_row {
    position: unset;
  }
  .content-container {
    height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .product-flex-box {
    margin-top: 20px;
  }
  .grid-item.disease {
    padding: 10px 10px;
    height: unset;
    width: 100%;
  }
  .footer {
    padding: 0.5em 10px;
    display: unset;
  }
  .timeline-approval-text {
    width: 100vw;
    float: left;
    margin: 0;
    padding: 5px 0;
  }
  .footer-content-box {
    width: 100%;
    text-align: center;
    float: left;
    margin: 5px 0;
    justify-content: center;
  }
}
@media only screen and (min-width: 768.1px) {
  .timeline-container {
    margin-left: 20px;
  }
  .timeline-approval-text {
    margin-left: 20px;
  }
  .disease-state-container {
    padding: 35px 73px 95px;
  }
}
.timeline-group.group-is-current-year {
  position: relative;
}

/*===================== ADDITIONAL CSS ==========================*/
a.btn.btn-primary.btn-chevron-right:hover,
button.btn.btn-primary.btn-chevron-right.modal-close:hover {
  background: #8dc63f;
}

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