/* example usage

// iPad Portrait Only
@include respond-above(ipad-p, portrait) {
  body {
    background: pink;
  }
}

// Mobile Landscape
@include respond-between(mobile-p, mobile-l, landscape) {
  .logo {
    display: none;
  }
}

// Laptop and Up - any orientation
@include respond-above(laptop) {
  .header {
    padding: 20px;
  }
}


*/
/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make images and videos responsive */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: unset;
  height: auto;
}

/* Remove built-in form styles */
input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Prevent text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Anchor reset */
a {
  color: inherit;
  text-decoration: none;
}

/* Button reset */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

@font-face {
  font-family: "GSKPrecision";
  src: url("./fonts/GSKPrecision-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "GSKPrecision";
  src: url("./fonts/GSKPrecision-Regular.woff") format("woff");
  font-weight: 400;
}
:root {
  --gsk-black: #000000;
  --gsk-space-gray: #959595;
  --gsk-product-gray: #e6e6e6;
  --gsk-warm-gray: #f0efed;
  --gsk-white: #ffffff;
  --gsk-orange: #f36633;
  --footer-height: 54px;
  --nav-height-mobile: 50px;
  --section-mobile-height: calc(100% - var(--nav-height-mobile));
  --font-family: "GSKPrecision", sans-serif;
  --font-light: 300;
  --font-regular: 400;
  /*font: [font-style] [font-variant] [font-weight] [font-size] / [line-height] [font-family];*/
  --text-h1: var(--font-light) 7rem / normal var(--font-family);
  --text-h2: var(--font-light) 7.5rem / normal var(--font-family);
  --text-h3: var(--font-light) 6.25rem / normal var(--font-family);
  --text-h4: var(--font-light) 5rem / normal var(--font-family);
  --text-h5: var(--font-light) 3.75rem / normal var(--font-family);
  --text-h6: var(--font-light) 3.5rem / normal var(--font-family);
  --text-h7: var(--font-light) 3.125rem / 3.75rem var(--font-family);
  --text-p0: var(--font-light) 1rem / normal var(--font-family);
  --text-p1: var(--font-light) 1rem / 1.375rem var(--font-family);
  --text-p2: var(--font-light) 1.125rem / 1.5rem var(--font-family);
  --text-p3: var(--font-light) 1.375rem / normal var(--font-family);
  --text-p4: var(--font-light) 1.5rem / 1.75rem var(--font-family);
  --text-p5: var(--font-light) 1.75rem / normal var(--font-family);
  --text-p5a: var(--font-light) 1.375rem var(--font-light);
  --text-p6: var(--font-light) 2rem / normal var(--font-family);
  --text-p7: var(--font-light) 2.25rem / 2.75rem var(--font-family);
  --text-p8: var(--font-light) 2.75rem / 3.5rem var(--font-family);
  --mob-padding: 70px 30px 30px 30px;
}

/* Ensure html and body stretch to full viewport */
html {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overscroll-behavior: none;
  scroll-behavior: initial;
  box-sizing: border-box;
}

/* Optional: Prevent scrollbars due to content overflow */
body {
  font: var(--text-p3);
  color: var(--gsk-black);
}

p {
  color: var(--gsk-black);
}
p b {
  font-weight: 400;
}

h1 {
  font: var(--text-h1);
}

h2 {
  font: var(--text-h1);
}

h3 {
  font: var(--text-h1);
}

h4 {
  font: var(--text-h1);
}

*:focus {
  outline: 2px solid #007bff; /* Blue outline */
  outline-offset: 2px;
}

#preloadImagesHolder {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: -10;
}

/* Make wrapper fill the full screen */
.wrapper,
#app {
  width: 100%;
  height: 100%;
  display: flex; /* Optional: helpful for layout */
  flex-direction: column;
}

#debugBtn {
  position: fixed;
  left: 100px;
  top: 20px;
  z-index: 1000;
  background-color: black;
  color: white;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: none;
}

#preloaderContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--gsk-white);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 200;
}
#preloaderContainer #preloadSpinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
#preloaderContainer #preloadSpinner::before, #preloaderContainer #preloadSpinner::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid var(--gsk-product-gray);
  animation: prixClipFix 2s linear infinite;
}
#preloaderContainer #preloadSpinner::after {
  transform: rotate3d(90, 90, 0, 180deg);
  border-color: var(--gsk-orange);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  75%, 100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  z-index: 9999;
}

#loader-text {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

#loader-bar {
  width: 60%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

#loader-progress {
  height: 100%;
  width: 0%;
  background: #f36633;
  transition: width 0.3s ease;
}

#pageInfo {
  position: fixed;
  top: 10px;
  right: 200px;
  color: black;
  background: yellowgreen;
  font: var(--text-p0);
  font-weight: 400;
  padding: 2px 10px;
  z-index: 100;
  display: none;
}

#shellWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#shellHeader {
  position: fixed;
  width: 100%;
  margin-top: 17px;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 110;
}
#shellHeader #gskLogo {
  position: relative;
  width: 96px;
  height: 29px;
  margin: 0 20px;
  opacity: 0;
}
#shellHeader #gskLogo img {
  width: 100%;
  height: auto;
  display: none;
}
#shellHeader #gskLogo img#orangeLogo {
  display: block;
}
#shellHeader #gskLogo.white img {
  display: block;
}
#shellHeader #gskLogo.white img#orangeLogo {
  display: none;
}
@media (min-width: 768px) and (orientation: portrait) {
  #shellHeader #gskLogo {
    width: 66px;
    height: 20px;
  }
}
#shellHeader #langDropDown {
  position: relative;
  letter-spacing: -0.5px;
  pointer-events: none;
  margin: 0 20px;
}
#shellHeader #langDropDown #langDropDownButton {
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgb(255, 255, 255);
  border-radius: 50px;
  font: inherit;
  letter-spacing: inherit;
  text-align: center;
  pointer-events: initial;
  gap: 3px;
  background-color: rgb(0, 0, 0);
  text-transform: uppercase;
}
#shellHeader #langDropDown #langDropDownButton #langCode {
  margin: 0px 5px;
  font: var(--text-p2);
}
#shellHeader #langDropDown #langDropDownButton #langArrow {
  position: relative;
  width: 12px;
  height: 12px;
}
#shellHeader #langDropDown #langDropDownButton #langArrow svg {
  position: relative;
  width: 100%;
  height: 100%;
  fill: white;
  top: -2px;
}
#shellHeader #langDropDown #langDropDownMenuContainer {
  position: absolute;
  top: 45px;
  right: 0px;
  border-radius: 10px;
  width: 280px;
  transition: 0.2s;
  opacity: 0;
  pointer-events: initial;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  padding: 10px;
  display: none;
  transition: opacity 0.5s;
}
#shellHeader #langDropDown #langDropDownMenuContainer #langDropDownMenu {
  height: 80dvh;
  font: inherit;
  letter-spacing: inherit;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
#shellHeader #langDropDown #langDropDownMenuContainer #langDropDownMenu .langDropDownItem {
  position: relative;
  width: 100%;
  padding: 8px 20px;
  display: block;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--gsk-black);
  font: var(--text-p2);
}
#shellHeader #langDropDown #langDropDownMenuContainer #langDropDownMenu .langDropDownItem:not(:disabled):hover, #shellHeader #langDropDown #langDropDownMenuContainer #langDropDownMenu .langDropDownItem:not(:disabled):focus {
  background-color: white;
}
#shellHeader #langDropDown #langDropDownMenuContainer #langDropDownMenu .langDropDownItem.selected {
  background-color: var(--gsk-black) !important;
  color: white;
  cursor: default;
}
#shellHeader #langDropDown.white #langDropDownButton {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
#shellHeader #langDropDown.white #langDropDownButton #langArrow svg {
  fill: white;
}
#shellHeader #langDropDown.white #langDropDownMenuContainer {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgb(0, 0, 0);
}
#shellHeader #langDropDown.white #langDropDownMenuContainer #langDropDownMenu .langDropDownItem {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gsk-white);
}
#shellHeader #langDropDown.white #langDropDownMenuContainer #langDropDownMenu .langDropDownItem:not(:disabled):hover, #shellHeader #langDropDown.white #langDropDownMenuContainer #langDropDownMenu .langDropDownItem:not(:disabled):focus {
  background-color: rgba(255, 255, 255, 0.08);
}
#shellHeader #langDropDown.white #langDropDownMenuContainer #langDropDownMenu .langDropDownItem.selected {
  background-color: var(--gsk-orange) !important;
}
#shellHeader #langDropDown.black #langDropDownButton {
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}
#shellHeader #langDropDown.black #langDropDownButton #langArrow svg {
  fill: black;
}

#shellFooter {
  position: fixed;
  width: 100%;
  height: var(--footer-height);
  left: 0;
  bottom: 0;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
#shellFooter #progressBarContainer {
  position: absolute;
  top: -1px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
#shellFooter #progressBarContainer #progressBar {
  width: 0%;
  height: 3px;
  background-color: rgb(255, 255, 255);
  transform: translateY(-1px);
  transition: width 0.1s ease;
}
@media (max-width: 767.98px) {
  #shellFooter #progressBarContainer #progressBar {
    height: 2px;
  }
}
#shellFooter .tooltipContainer {
  position: relative;
}
#shellFooter .tooltipContainer button {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#shellFooter .tooltipContainer .tooltip_text {
  left: -7px;
  padding: 0px 6px;
  position: absolute;
  top: -10px;
  display: inline-block;
  border-radius: 3px;
  background-color: rgb(69, 69, 69);
  color: rgb(255, 255, 255);
  font: 400 12px/20px GSKPrecision;
  transition: 0.4s;
  transform: translate(0px, -100%);
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  z-index: 10;
}
#shellFooter .tooltipContainer .tooltip_text::after {
  content: "";
  margin: 0px 12px;
  display: block;
  position: absolute;
  bottom: 1px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background-color: inherit;
  transform: translateY(50%) rotate(45deg);
  z-index: -1;
  left: 0px;
}
#shellFooter .tooltipContainer:hover .tooltip_text, #shellFooter .tooltipContainer:focus-within .tooltip_text {
  opacity: 1;
}
#shellFooter .navLeft {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 25px;
}
#shellFooter.cookies-yes .navLeft {
  margin: 0 25px 0 55px;
}
#shellFooter .navCenter {
  position: relative;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#shellFooter .navCenter .progressIndicatorMobile {
  position: relative;
  font: var(--text-p0);
  color: white;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  max-width: 200px;
  font-weight: 400;
}
#shellFooter .navCenter .progressIndicatorMobile p {
  color: white;
  text-transform: uppercase;
}
#shellFooter .navCenter .progressIndicatorMobile p span {
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #shellFooter .navCenter .progressIndicatorMobile {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (orientation: portrait) {
  #shellFooter .navCenter .progressIndicatorMobile {
    display: block;
  }
}
#shellFooter .navCenter .progressIndicator {
  display: flex;
  align-items: center;
  gap: 40px;
}
#shellFooter .navCenter .progressIndicator li {
  position: relative;
  text-transform: uppercase;
  font: var(--text-p0);
  color: white;
  letter-spacing: 1px;
  opacity: 0.8;
}
#shellFooter .navCenter .progressIndicator li.active {
  opacity: 1;
  font: var(--text-p1);
  font-weight: 400;
}
@media (max-width: 767.98px) {
  #shellFooter .navCenter .progressIndicator {
    display: none;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #shellFooter .navCenter .progressIndicator {
    display: none;
  }
}
#shellFooter .navRight {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 25px;
}
#shellFooter .navRight .tooltipContainer .tooltip_text {
  right: -7px;
  left: unset;
}
#shellFooter .navRight .tooltipContainer .tooltip_text::after {
  right: 0px;
  left: unset;
}
#shellFooter.white {
  background-color: var(--gsk-white);
}
#shellFooter.white #progressBarContainer {
  background-color: rgba(0, 0, 0, 0.3);
}
#shellFooter.white #progressBarContainer #progressBar {
  background-color: var(--gsk-orange);
}
#shellFooter.white .navLeft .tooltipContainer button svg,
#shellFooter.white .navRight .tooltipContainer button svg {
  fill: var(--gsk-black);
}
#shellFooter.white .navLeft .tooltipContainer button svg .line,
#shellFooter.white .navRight .tooltipContainer button svg .line {
  fill: var(--gsk-black);
}
#shellFooter.white .navCenter li,
#shellFooter.white .navCenter .progressIndicatorMobile p {
  color: var(--gsk-black);
}
#shellFooter.black {
  background-color: var(--gsk-black);
}
#shellFooter.black #progressBarContainer #progressBar {
  background-color: var(--gsk-orange);
}
#shellFooter.black .navLeft .tooltipContainer button svg,
#shellFooter.black .navRight .tooltipContainer button svg {
  fill: var(--gsk-white);
}
#shellFooter.black .navLeft .tooltipContainer button svg .line,
#shellFooter.black .navRight .tooltipContainer button svg .line {
  fill: var(--gsk-white);
}
#shellFooter.black .navCenter li,
#shellFooter.black .navCenter .progressIndicatorMobile p {
  color: var(--gsk-white);
}
#shellFooter.null-white #progressBarContainer #progressBar {
  background-color: var(--gsk-orange);
}
#shellFooter.null-white li,
#shellFooter.null-white .progressIndicatorMobile p {
  color: var(--gsk-white);
}

#shellRightNav {
  display: flex;
  position: fixed;
  top: calc(50% - 27px);
  right: 20px;
  flex-direction: column-reverse;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 99;
  gap: 10px;
}
#shellRightNav .pageNavBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 47px;
  border: 1.5px solid rgb(255, 255, 255);
  border-radius: 50px;
}
#shellRightNav .pageNavBtn .nav-arrow-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 12px;
  height: 18px;
  overflow: hidden;
}
#shellRightNav .pageNavBtn .nav-arrow-container svg {
  position: absolute;
  top: 0px;
  left: 0px;
  fill: var(--gsk-white);
}
#shellRightNav .pageNavBtn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#shellRightNav .pageNavBtn#prevBtn svg {
  transform: rotate(-180deg);
}
#shellRightNav .pageNavBtn#prevBtn.black, #shellRightNav .pageNavBtn#nextBtn.black {
  border-color: rgb(0, 0, 0);
}
#shellRightNav .pageNavBtn#prevBtn.black svg, #shellRightNav .pageNavBtn#nextBtn.black svg {
  fill: var(--gsk-black);
}
#shellRightNav .pageNavBtn#prevBtn.white, #shellRightNav .pageNavBtn#nextBtn.white {
  border-color: rgb(255, 255, 255);
}
#shellRightNav .pageNavBtn#prevBtn.white svg, #shellRightNav .pageNavBtn#nextBtn.white svg {
  fill: var(--gsk-white);
}
@media (max-width: 767.98px) and (orientation: portrait) {
  #shellRightNav {
    top: unset;
    right: unset;
    bottom: 25px;
    transform: translateY(0%) translateX(-13px) rotate(-90deg);
    transform-origin: center;
    left: 50%;
  }
}
@keyframes navArrowAnimate {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(102%);
  }
  80% {
    transform: translateY(-102%);
  }
  100% {
    transform: translateY(0%);
  }
}

#shellContent {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
#shellContent .slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.landscape-blocker {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem;
  background: #222;
  color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

@keyframes animateLine1 {
  0% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.3);
  }
}
@keyframes animateLine2 {
  0% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.5);
  }
}
@keyframes animateLine3 {
  0% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.8);
  }
}
@keyframes animateLine4 {
  0% {
    transform: scaleY(0.65);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.65);
  }
}
#musicAnimation.musicAnimation .line-1 {
  animation: animateLine1 1.2s infinite;
  transform-origin: bottom;
}
#musicAnimation.musicAnimation .line-2 {
  animation: animateLine2 1.2s infinite;
  transform-origin: bottom;
  animation-delay: 0.2s;
}
#musicAnimation.musicAnimation .line-3 {
  animation: animateLine3 1.2s infinite;
  transform-origin: bottom;
  animation-delay: 0.4s;
}
#musicAnimation.musicAnimation .line-4 {
  animation: animateLine4 1.2s infinite;
  transform-origin: bottom;
  animation-delay: 0.6s;
}

.alert-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/gsk_gradient.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  justify-content: center;
  align-items: center;
  direction: ltr !important;
}
.alert-container.show {
  display: flex;
  opacity: 1;
}

.alert-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 40%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  align-items: center;
}
@media (max-width: 767.98px) and (orientation: portrait) {
  .alert-box {
    width: 80%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .alert-box {
    width: 70%;
  }
}
.alert-box img {
  margin-top: 30px;
  width: 200px;
  margin-bottom: 20px;
}
.alert-box h2 {
  margin: 0;
  font: var(--text-p5);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
.alert-box p {
  font: var(--text-p4);
  line-height: normal;
  padding: 30px 40px;
  text-align: center !important;
}
@media (max-width: 767.98px) and (orientation: portrait) {
  .alert-box p {
    font: var(--text-p3);
  }
}
.alert-box .alert-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 30px 0 30px;
  position: relative;
}
@media (max-width: 767.98px) and (orientation: portrait) {
  .alert-box .alert-buttons {
    gap: 20px;
  }
}
.alert-box .alert-buttons button {
  cursor: pointer;
  min-width: 120px;
  padding: 10px 20px;
  background-color: var(--gsk-black);
  color: var(--gsk-white);
  border: none;
  font: var(--text-p3);
  height: auto;
  border-radius: 50px;
}
.alert-box .alert-buttons button:hover {
  background-color: var(--gsk-orange);
}

#signatures-list {
  display: none;
  z-index: 102;
  font-family: Arial, sans-serif;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  min-height: 200vh; /* Ensures there is enough space to scroll */
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767.98px) and (orientation: portrait) {
  #signatures-list {
    display: none !important;
  }
}
#signatures-list #signature-items {
  width: 40%;
}
@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  #signatures-list #signature-items {
    width: 50%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #signatures-list #signature-items {
    width: 50%;
  }
}
#signatures-list #signature-items .signature-item {
  color: var(--gsk-white);
  list-style: none;
  padding: 6px 0px;
  font: var(--text-p8);
  transform-origin: left center;
  position: relative;
  z-index: 100;
  padding: 6px 20px 6px 0px;
  /* font-size: 60px; */
  line-height: 68px;
  opacity: 0.7;
}
#signatures-list #signature-items .signature-item.active {
  font: var(--text-h7);
  font-weight: 500;
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  #signatures-list #signature-items .signature-item {
    font: var(--text-p7);
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #signatures-list #signature-items .signature-item {
    font: var(--text-p7);
  }
}

#btnYes {
  background-color: var(--gsk-black);
  color: #fff;
}

#btnNo {
  background-color: var(--gsk-black);
  color: #fff;
}

.rtl-direction p,
.rtl-direction h1,
.rtl-direction h2,
.rtl-direction h3,
.rtl-direction h4,
.rtl-direction h5,
.rtl-direction h6,
.rtl-direction div,
.rtl-direction span,
.rtl-direction a {
  text-align: right;
  direction: rtl;
}
.rtl-direction #shellRightNav {
  right: unset;
  left: 20px;
}
.rtl-direction #shellHeader #langDropDown #langDropDownMenuContainer {
  right: unset;
  left: 0;
}
.rtl-direction #slide_01 .slide-image-container .slide-image-left .right-image-pinch {
  right: unset;
  left: 0;
}
.rtl-direction #slide_01 .slide-image-container .slide-image-left .right-image-pinch .svg-pinch-bottom {
  transform: rotate(180deg);
}
.rtl-direction #slide_07 .slide-two-col-text .commit-container .commit-text h4,
.rtl-direction #slide_10 .slide-two-col-text .commit-container .commit-text h4 {
  text-align: left !important;
}
.rtl-direction #slide_07 .slide-two-col-text .commit-container .commit-text p,
.rtl-direction #slide_10 .slide-two-col-text .commit-container .commit-text p {
  text-align: right !important;
}
.rtl-direction #signature-items {
  text-align: left;
}
.rtl-direction .policySection .desc span {
  text-align: right !important;
}
.rtl-direction #last-content .left-logo-container {
  right: 0;
}
.rtl-direction #signatures-list {
  padding-left: 70px !important;
}
.rtl-direction #accCurPageNo_16 #last-content .left-logo-container #backBtn {
  left: unset;
  right: 5px;
}
.rtl-direction #accCurPageNo_16 #last-content .left-logo-container .tooltipContainer {
  left: unset;
  right: 20px;
}
.rtl-direction #slide_1 #aniCurPageNo_2 .leftSection,
.rtl-direction #slide_1 #aniCurPageNo_3 .leftSection,
.rtl-direction #slide_1 #aniCurPageNo_4 .leftSection,
.rtl-direction #slide_1 #accCurPageNo_2 .leftSection,
.rtl-direction #slide_1 #accCurPageNo_3 .leftSection,
.rtl-direction #slide_1 #accCurPageNo_4 .leftSection {
  -webkit-mask-image: url(../images/mask-left.svg) !important;
          mask-image: url(../images/mask-left.svg) !important;
  -webkit-mask-position: left center !important;
          mask-position: left center !important;
}
.rtl-direction #cookiesPrefBtn {
  bottom: -30px;
  left: unset;
  right: -30px;
  transform: rotate(-45deg);
}
.rtl-direction #shellFooter.cookies-yes .navLeft {
  margin: 0 55px 0 25px !important;
}

.for-cookies {
  display: none !important;
}

#cookieConsentContainer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #f5f5f5;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
#cookieConsentContainer.is-active {
  display: block;
}
#cookieConsentContainer #cookieConsentPrompt {
  display: grid;
  grid-template-rows: 60px calc(100% - 130px) 70px;
  max-width: 75%;
  max-height: 90vh;
  margin: 0 auto;
  background-color: white;
  border-radius: 15px;
  text-align: left;
  font-size: 16px;
}
@media (max-width: 767.98px) and (orientation: portrait) {
  #cookieConsentContainer #cookieConsentPrompt {
    padding: 20px;
    max-width: calc(90vw - 40px);
    max-height: calc(90vh - 40px);
    overflow: hidden;
    overflow-y: auto;
  }
}
#cookieConsentContainer #cookieConsentPrompt #cookieConsentTitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
#cookieConsentContainer #cookieConsentPrompt #cookieConsentDesc {
  padding: 0 30px;
  position: relative;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
#cookieConsentContainer #cookieConsentPrompt #cookieConsentDesc a {
  color: #0072ce;
  text-decoration: underline;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails {
  text-align: left;
  margin-top: 25px;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul {
  list-style: none;
  padding: 0;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) and (orientation: portrait) {
  #cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li {
    padding: 15px 0;
  }
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details[open] summary .details-icon {
  transform: rotate(90deg) !important;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details summary {
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details summary .summaryHead {
  display: flex;
  gap: 20px;
  align-items: center;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details summary .summaryHead label input {
  width: 20px;
  height: 20px;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details summary .alwaysActiveLabel {
  background-color: var(--gsk-orange);
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details summary .details-icon {
  margin-left: 3px !important;
  font-weight: bold !important;
  margin-right: 8px;
  display: inline-block;
  cursor: pointer;
  transform: rotate(270deg) !important;
}
#cookieConsentContainer #cookieConsentPrompt #cookieDetails ul li details p {
  padding: 15px 15px 0 40px;
}
#cookieConsentContainer #cookieConsentPrompt #cookieConsentFooter {
  display: flex;
  justify-content: center;
  gap: 20px;
  height: 70px;
  align-items: center;
}
#cookieConsentContainer #cookieConsentPrompt #cookieConsentFooter button {
  cursor: pointer;
  min-width: 120px;
  padding: 10px 20px;
  background-color: var(--gsk-black);
  color: var(--gsk-white);
  border: none;
  font: var(--text-p5a);
  height: auto;
  border-radius: 50px;
}
#cookieConsentContainer #cookieConsentPrompt #cookieConsentFooter button:hover {
  background-color: var(--gsk-orange);
}

#cookiesPrefBtn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: -30px;
  left: -30px;
  background-image: url(../images/setting_white.png);
  background-repeat: no-repeat;
  background-color: var(--gsk-black);
  z-index: 10000;
  background-position: center 6px;
  background-size: 20% 20%;
  transform: rotate(45deg);
}

.preloadAllImages {
  position: fixed;
  width: 1px;
  height: 1px;
  visibility: hidden;
}