@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    font-size: 14px;
    --brand-primary: #F15D22;
    --gradient-cll: linear-gradient(101.45deg, #F89A1B 0%, #DD4706 100%);
    --gradient-cll-alt: linear-gradient(90deg, #DC4405 0%, #F99D1C 100%);
    --gradient-mcl: linear-gradient(101.45deg, #337079 0%, #59BAC9 100%);
    --common-primary: #FD6B0D;
    --common-secondary: #092C4C;
    --common-placebo: #8B8B8B;
    --cll-redorange: #C13A00;
    --cll-darkorange: #DD4706;
    --mcl-darkteal: #337079;
    --mcl-lightteal: #9CB9BD;
    --body-color: #535554;
    --font-lato: "Lato", sans-serif;
    --font-avenir: "Avenir", sans-serif;
}

[aria-hidden="true"] {
    visibility: visible;
}

:focus-visible,
.is-focused:focus{
    outline: 2px dotted var(--brand-primary)!important;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 185px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-lato);
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    color: var(--body-color);
    background-color: #fff !important;
}

body .cmp-text {
    padding: 0px;
    font-family: var(--font-lato);
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    vertical-align: super;
}

sub {
    vertical-align: sub;
}

.font-lato {
    font-family: var(--font-lato);
}

.font-avenir {
    font-family: var(--font-avenir);
}

#hidden, .text:has(#hidden){
    display:none;
}

#hidden {
    display:none;
}

a {
    position: relative;
    color: var(--common-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}


/* a.underline:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--common-primary);
} */

a.underline:hover {
    text-decoration: none;
}

h1, .h1 {
    font-weight: 900;
    font-size: 29px;
    line-height: 33px;
    color: var(--common-primary);
    margin-bottom: 9px;
}

h2, .h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 9px;
}

p {
    margin-bottom: 11px;
}

p:last-of-type {
    margin-bottom: 0px;
}

.btn {
    position: relative;
    outline: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 18px;
    font-family: var(--font-lato);
    text-transform: uppercase;
    cursor: pointer;
    min-width: 110px;
    max-width: 110px;
}

.btn.btn-lg-pad {
    padding-left: 24px;
    padding-right: 23px;
    min-width: 150px;
    max-width: 150px;
}

.btn-primary-cll {
    background-color: var(--cll-darkorange);
    color: #fff;
}

.btn-primary-mcl {
    background-color: var(--mcl-darkteal);
    color: #fff;
}

.btn.btn-cll-spl,
.btn.btn-mcl-spl {
    padding: 12px 24px;
    background: #00000040;
    color: white;
    font-size: 23px;
    line-height: 42px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    z-index: 0;
    min-width: 100px;
    max-width: 100px;
    height: 45px;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn.btn-cll-spl::before,
.btn.btn-mcl-spl::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 30px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.btn.btn-cll-spl::before {
    background: var(--gradient-cll);
}

.btn.btn-mcl-spl::before {
    background: var(--gradient-mcl);
}

.btn.btn-cll-spl::after,
.btn.btn-mcl-spl::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -2;
    transition: background 0s, transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn.btn-cll-spl:hover::after,
.btn.btn-cll-spl:active::after,
.btn.btn-cll-spl:focus::after {
    background: var(--common-primary);
    transform: scaleX(1);
}

.btn.btn-mcl-spl:hover::after,
.btn.btn-mcl-spl:active::after,
.btn.btn-mcl-spl:focus::after {
    background: var(--mcl-darkteal);
    transform: scaleX(1);
}

/* Helper classes */
.font-weight-100 {
    font-weight: 100 !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-900,
strong,
b {
    font-weight: 900 !important;
}

.text-common-orange {
    color: var(--common-primary) !important;
}

.footnote {
    font-size: 10px;
    line-height: 12px;
}

/*/- Helper classes */

.wrapper {
    max-width: 950px;
    margin: 0 auto;
    padding: 15px 16px;
}

@media (min-width:390px) {
    .wrapper {
        padding: 15px 25px;
    }
}

@media (min-width:992px) {
    .wrapper {
        padding: 30px 0px;
    }
}


/* ----------- Breadcrum Styles ----------- */
  .breadcrum-container {
    background-color: #f6f6f6;
  }
  
  .breadcrum-flex {
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    height: 82px;
    gap: 43px;
    flex-wrap: nowrap;
  }
  
  .left-section {
    display: flex;
    align-items: center;
    gap: 16px;
    /* flex: 1; */
    /* position: relative; */
  }
  
  .pill {
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 999;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 93px;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
  }
.breadcrum-mcl .pill{ 
    background-color: var(    --mcl-darkteal);
    
}
.breadcrum-cll .pill{ 
    background-color: var(   --cll-darkorange);
}
  
  .subtext {

    font-size: 12px;
    max-width: 252px;
    line-height: 14px;
    position: relative;
    font-weight: 900;
     /* space for divider */
  }
  
  .subtext::after {
    content: "";
    position: absolute;
    right: -23px;
    height: 45px;
    border-left: 2px solid #B4B4B4;
    /*display: block;*/
    align-self: center;
    
  }
  .breadcrum-cll .subtext::after {
    top: -8px;
}
.breadcrum-mcl .subtext::after {
    top: -15px;
}
  
  .breadcrum-title p, .breadcrum-title h1 {
 
    font-size: 21px;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
    line-height: 33px;
    color: inherit;
  }
  
  /* ----------- Responsive  ----------- */
  @media (max-width: 767px) {
    .breadcrum-flex {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      padding: 15px;
      gap: 16px;
      align-items: center;
    }
  
    .left-section {
      flex-direction: row;
      align-items: center;
    }
  
    .subtext {
      max-width: max-content;
       /* remove space for divider */
    }
  
    .subtext::after {
      display: none; /* hide divider */
    }
  
    .breadcrum-title {
      margin-top: 0px;
    }
  
    .breadcrum-title p, .breadcrum-title h1 {
      font-size: 17px;
      line-height: 1.3;
      white-space: normal;
    }
  }
  
/* ----------- Breadcrum Styles ----------- */


/* Exit Ramp - CSS */

body.modal-enabled {
    overflow: hidden;
}

.exit-ramp-modal .cmp-modal__modalbox.modal-md .modal-box {
    width: 100% !important;
}

.exit-ramp-modal .cmp-modal__modalbox .modal-box__content {
    padding: 0 !important;
}

.exit-ramp-modal.modal--visible {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*z-index: 9999;*/
    z-index: 32010;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgb(63, 63, 63, 0.8);

    padding-top: 80px;
    padding-left: 13px;
    padding-right: 13px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.exit-ramp-modal .modal__close {
    position: relative;
    /*top: 60px;*/
    /*right: 15px;*/
    top: 175px;
    right: 10px;
    left: auto;
    margin-top: -28px;
    border: 3px solid #C13A00;
    border-radius: 50%;
    background-color: transparent;
    width: 28px;
    height: 28px;
    color: #C13A00 !important;
    z-index: 999;
}

.exit-ramp-modal .modal-box__content {
    padding: 0 !important;
}

.exit-ramp-modal .modal__close:hover {
    cursor: pointer;
}

.exit-ramp-modal .modal__close .modal__closeLabel {
    display: none;
}

.exit-ramp-modal .modal__close .modal__closeIcon svg {
    max-width: 10px;
}

.exit-ramp-modal .modal__close .modal__closeIcon svg path {
    fill: #C13A00;
}

.exit-ramp-modal .exit-ramp-content {
    border: 4px solid #FD6B0D;
    background-color: #FFFFFF;
    max-width: 1031px;
    margin: 0 auto;
    /*padding: 28px 2px 28px 13px;*/
    padding: 28px 7px 28px 7px;
}

.exit-ramp-title {
    font-family: var(--font-lato);
    font-weight: 900;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 30px;
    color: transparent;
}

.exit-ramp-body {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;
    text-align: left;
    padding-bottom: 25px;
}

.exit-ramp-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.exit-ramp-continue 
, .exit-ramp-cancel.close-exit-ramp {
    font-family: var(--font-lato);
    font-weight: 900;
    font-size: 15.77px;
    line-height: 47.3px;
    text-align: center;
    color: #FFFFFF;
    min-width: 140px;
    max-width: 140px;


    content: '';
    z-index: 0 !important;
    height: 45px !important;
    width: auto !important;
    padding: 12px 24px;
    background: #535554;
    border-radius: 22.52px;
    overflow: hidden;
    transition: color 0.3s;
    text-transform: uppercase;
    cursor: pointer;
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2.25px solid #FD680D;
}

.exit-ramp-continue:hover {
    text-decoration: none;
}

.exit-ramp-cancel.close-exit-ramp {
    width: 314px;
    max-width: 314px;
    /*color: var(--body-color);*/
    /*text-indent: -9999px;*/
    overflow: hidden;
}

.exit-ramp-title::before {
    content: "YOU'RE LEAVING CALQUENCE.COM";
    color: var(--body-color);
}

.exit-ramp-cancel.close-exit-ramp::after {
    /*content: 'GO BACK TO WHERE YOU WERE';*/
    color: #FFF;
    text-indent: 0;
    display: block;
}

/* Desktop */

@media screen and (min-width:992px) {
    .exit-ramp-modal.modal--visible {
        display: flex;
        /* align-items: flex-start; */
        align-items: center;
        justify-content: center;
        flex-direction: row-reverse;
        /* padding-top: 172px; */
        padding-top: 0;
    }

    .exit-ramp-modal .modal__close {
        margin-top: 172px;
        top: -185px;
        right: 40px;
    }
    
    #home .exit-ramp-modal .modal__close {
        top: -212px;
    }

    .exit-ramp-modal .exit-ramp-content {
        padding: 34px 57px;
    }

    .exit-ramp-actions {
        flex-direction: row;
    }
}

/* Exit Ramp - CSS */




/*search-page-css*/
#search-results div#showall-results {}@media (min-width: 992px) {
    #search-results #hero-gradient-bg {
         height: 173px;
     }
  }
  
  
  
  #search-results #hero-gradient-bg {
     height: 160px;
  }
  
  #search-results #hero-gradient-bg::before {
     background-position-y: 25.2%;
  }


  #search-results .cmp-searchbox .cmp-searchbox__inner .cmp-searchbox__field{
    width: 70%;
    margin: auto;
    border-radius: 50px;
    position: relative;
    top: -100px;
    background-color: #fff;
}

#search-results .cmp-searchbox .cmp-searchbox__inner .cmp-searchbox__field .cmp-searchbox__button{
    background-image: url(/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/global/search.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    padding: 16px;
    margin-right: 3px;
}

#search-results i.cmp-searchbox__button-icon.fa.fa-search{
    visibility: hidden;
}

#search-results .cmp-searchbox .cmp-searchbox__inner .cmp-searchbox__field .cmp-searchbox__icon{
    display: none;
}

#search-results .cmp-searchbox .cmp-searchbox__inner .cmp-searchbox__field .cmp-searchbox__input{
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

#search-results .cmp-searchbox .cmp-searchbox__inner .cmp-searchbox__field .cmp-searchbox__input {
    font-size: 20px;
    padding-left: 32px;
    color: #b53500;
    width: 0px;
}

#search-results .cmp-searchbox__input {
  color: #b53500; /* Orange-red tone matching your design */
}

/* Placeholder text color for modern and older browsers */
#search-results .cmp-searchbox__input::placeholder {
  color: #b53500 !important;
  opacity: 1; /* Ensures it's fully visible */
}

/* WebKit browsers (Safari, Chrome) */
#search-results .cmp-searchbox__input::-webkit-input-placeholder {
  color: #b53500 !important;
}

/* Firefox */
#search-results .cmp-searchbox__input::-moz-placeholder {
  color: #b53500 !important;
}

/* IE */
#search-results .cmp-searchbox__input:-ms-input-placeholder {
  color: #b53500 !important;
}

/*search-page-css*/

body.self-certify-blur .root {
    opacity: 1;
    display: block;
}

/* Self Certification Starts */
abbr {
    text-decoration: none;
}

body.self-certify-blur .root {
    opacity: 1;
    display: block !important;
}

body.self-certify-blur .cmp-selfcertification {
    background: rgba(83, 83, 83, 0.7);
}

body.self-certify-blur .cmp-selfcertification.modal--overflow {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-backdrop-filter: blur(0px) !important;
    backdrop-filter: blur(0) !important;
}

body.self-certify-blur .cmp-selfcertification.modal--overflow .cmp-selfcertification__content,
body.self-certify-blur .cmp-selfcertification .cmp-selfcertification__title {
    padding: 0px;
}

body.self-certify-blur .cmp-selfcertification .modal-box {
    position: relative;
    border-radius: 0px;
    width: 360px;
    max-width: 360px;
    /*height: 840px;*/
    /*max-height: 840px;*/
        height: 889px;
    max-height: 889px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0px;
    background: linear-gradient(101.45deg, var(--cll-redorange) 11.54%, var(--cll-darkorange) 53.37%, #F89A1B 96.63%);
}

/*body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box {*/
/*    background: linear-gradient(101.45deg, var(--cll-redorange) 11.54%, var(--cll-darkorange) 53.37%, #F89A1B 180.63%);*/
/*}*/

body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box {
    background: linear-gradient(101.45deg, var(--cll-redorange) 11.54%, var(--cll-darkorange) 64%, #F89A1B 180.63%);
}

@supports (-webkit-touch-callout: none) {
    body.self-certify-blur .cmp-selfcertification .modal-box {
        height: 854px;
        max-height: 854px;
    }
}

body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box {
    width:400px;
    max-width:400px;
    height: 375px;
    border-radius:30px;
    zoom:90%;
}

body.self-certify-blur .cmp-selfcertification .modal-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    /*width: 100%;*/
    width: 94%;
    height: 100%;
    background-image: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/yellow-vector-mob.png');
    background-position: bottom;
    background-repeat: no-repeat;
}

body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box::before {
   background-image: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/yellow-vector-rem.png');
   background-position: center 0px;
   width: 100%;
}

body.self-certify-blur .cmp-selfcertification .modal-box .cmp-selfcertification__content {
    line-height: inherit;
}

body.self-certify-blur .cmp-selfcertification .modal-box .cmp-selfcertification__content,
body.self-certify-blur .cmp-selfcertification .modal-box .cmp-selfcertification__content>.aem-Grid,
body.self-certify-blur .cmp-selfcertification .modal-box .cmp-selfcertification__content>.aem-Grid>.text,
body.self-certify-blur .cmp-selfcertification .modal-box .cmp-selfcertification__content>.aem-Grid>.text>.cmp-text{
    height: 100%;
}

.selfCertification_wrapper {
    position: relative;
}

.selfCertification_wrapper .cmp-selfcertification__continue {
    position: absolute;
    top: 39px;
    right: 14px;
    min-width: 34px;
    width: 34px;
    height: 37px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    z-index: 9;
}

#selfCerti_rem .selfCertification_wrapper .cmp-selfcertification__continue {
    /*top: 0px;*/
    /*right: 20.96px;*/
    top: 4px;
    right: 14px;
    width:25px;
    height:25px;
    overflow: visible;
}

.selfCertification_wrapper .cmp-selfcertification__continue .close-icon {
    content: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/close-icon.svg');
}

#selfCerti_rem .selfCertification_wrapper .cmp-selfcertification__continue .close-icon {
    content: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/close-icon-white.png');
    width: 25px;
    height: 25px;
}

.selfCertification_wrapper .selfCert_topbar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 11px;
    position: relative;
    z-index: 2;
}

.selfCertification_wrapper .selfCert_topbar a, .selfCertification_wrapper .selfCert_topbar .btn-isi_expand {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 125%;
}

.selfCertification_wrapper .selfCert_topbar .btn-isi_expand{
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

#selfCerti_rem .selfCertification_wrapper {
    min-height: 496px;
}

.selfCert_grid {
    display: flex;
    flex-direction: column;
    z-index:1;
}

#selfCerti_rem .selfCert_grid {
    padding-top:11.6px;
    top:0px;
}

.selfCert_grid .selfCert_grid__content {
    display: flex;
    flex-direction: column;
    /*padding: 12px 17px;*/
    padding: 12px 17px 12px 20px;
    color: #fff;
    max-width: 345px;
    position: relative;
    z-index: 1;
    min-height: 600px;
}
#selfCerti_rem .selfCert_grid .selfCert_grid__content {
    margin-left: 20px;
    padding: 0;
}
.selfCert_grid .selfCert_grid__content .selfCert_logo {
    width: 140px;
    display: flex;
}

.selfCert_grid .selfCert_grid__content .selfCert_logo img {
    width: 100%;
    height: auto;
}

#selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_logo img {
    max-width: 150px;
}

.selfCert_grid .selfCert_grid__content h1 {
    position: relative;
    font-style: italic;
    font-size: 53px;
    line-height: 46.7px;
    color: #fff;
    margin-top: 18px;
    font-family: var(--font-lato);
    font-weight: 900;
    margin-bottom: 9px;
}

#selfCerti_rem .selfCert_grid .selfCert_grid__content h1 {
    margin-top: 17.28px;
    margin-bottom: 0px;
     font-size: 40px;
    line-height: 37px;
}

.selfCert_grid .selfCert_grid__content h1::before,
.selfCert_grid .selfCert_grid__content h1::after {
    content: '';
    display: block;
    position: relative;
    border: 2px solid;
    border-left: 0;
    border-right: 0;
    border-image-slice: 1;
    border-width: 1.27px;
    border-image-source: linear-gradient(90deg, #FEC221 0%, rgba(255, 255, 255, 0) 100%);

}

.selfCert_grid .selfCert_grid__content h1::before {
    top: -2px;
    border-bottom: 0;
}

.selfCert_grid .selfCert_grid__content h1::after {
    border-top: 0;
    bottom: -9px;
}
#selfCerti_rem .selfCert_grid .selfCert_grid__content h1::before {
    top: -2px;
    border-width: 1px;
        width: 322px;
}
#selfCerti_rem .selfCert_grid .selfCert_grid__content h1::after {
    bottom: -2px;
    border-width: 1px;
        width: 322px;
}

.selfCert_grid .selfCert_grid__content .selfCert_desc {
    font-size: 19.5px;
    line-height: 21.7px;
    margin-top: 9.77px;
    margin-bottom: 8px;
}

#selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_desc {
    /*font-size: 20.16px;*/
    /*line-height: 27.94px;*/
    /*margin-top: 0px;*/
    /*margin-bottom: 28.7px;*/
    
        font-size: 20.16px;
    line-height: 20.94px;
    margin-top: 10px;
    margin-bottom: 28.7px;
}
#selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_desc:last-of-type  {
    line-height: 20.05px;
}

.selfCert_grid .selfCert_grid__content .btn {
    text-transform: uppercase;
    text-decoration: none;
    min-width: 157px;
    min-height: 35px;
    font-size: 15.3px;
    font-weight: 800;
    line-height: 7.34px;

}

#selfCerti_rem .selfCert_grid .selfCert_grid__content .btn {
    min-width: 127.89px;
    min-height: 28.11px;
    font-size: 12.47px;
    font-weight: 800;
    line-height: 14.13px;
    margin: 0px;
    z-index: 1;
}

.btn-yellow {
    background-color: #FFC21E;
    color: #535353;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote {
    margin-top: 18px;
}
.selfCert_grid .selfCert_grid__content .selfCert_footnote.alt_ast {
    margin-bottom: 14px;
    margin-top:0
}

#selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_footnote {
    margin-top: 0px;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote p {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 8px;
    position: relative;
}

#selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_footnote p {
    margin-bottom: 0px;
    margin-top: 0;
    font-size: 10px;
    line-height: 12px;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote p:last-of-type {
    margin-bottom: 0px;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote p .asterisk {
    position: absolute;
    left: -6px;
}
#home .selfCert_grid .selfCert_grid__content .selfCert_footnote p .asterisk {
    position: absolute;
    left: -5px;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote .ft_content {
    max-width: 208px;
     font-size: 14px;
    line-height: 16px;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote .abbr {
    max-width: 160px;
    line-height: 15px;
}

p.selfCert_desc.laptop_mb-7.mb-6.mt-0 {
    max-width: 183px;
}

.selfCert_grid .selfCert_grid__img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

.selfCert_grid .selfCert_grid__img .cll_man_img {
    width: 335px;
    height: auto;
    object-position: 18px;
}

.selfCert_grid .selfCert_grid__img .naap {
    position: absolute;
    font-size: 10px;
    line-height: 17.6px;
    bottom: 0px;
    right: 19px
}

.selfCert_grid .selfCert_grid__img .fpo {
    position: absolute;
    bottom: 70px;
    right: 50px;
    color: #FF00C0;
    font-size: 40px;
    font-weight: 900;
    line-height: 26px;
    opacity: 40%;
}

.selfCert_isi {
    background-color: #fff;
    width: 100%;
    height: 218px;
    position: absolute;
    bottom: 0px;
    z-index: 10;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}
.selfCert_isi.expanded {
    height: 100%;
}

.selfCert_isi_wrapper{
    padding: 17px 22px;
    padding-bottom: 0px;
    height: 100%;
}

.selfCert_isi .selfCert_isi_wrapper .selfCerti_isi_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selfCert_isi .selfCert_isi_wrapper .selfCerti_isi_header h4 {
    color: var(--common-primary);
    font-size: 16px;
    line-height: 18px;
    font-weight: 900;
}

.selfCert_isi .selfCert_isi_wrapper .selfCerti_isi_header .isi_expand {
    width: 31px;
    min-width: 31px;
    height: 31px;
    background-color: transparent;
    background-image: url(/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/expand.svg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.selfCert_isi .selfCert_isi_wrapper .selfCerti_isi_header .isi_expand.active{
    transform: rotate(180deg);
}

.selfCert_isi.expanded .selfCert_isi_wrapper .selfCert_isi_content{
    overflow-y: auto;
    height: calc(100% - 70px);
}

.selfCert_isi .selfCert_isi_wrapper .selfCert_isi_content .sub-head {
    font-weight: 900;
    margin-bottom: 10px;
}

span.pink-font {
    color: #FF00C0;
}


#selfCerti_rem .selfCert_footer {
    background-color: #fff;
    width: 100%;
    height: 89px;
    position: absolute;
    bottom: 0px;
    z-index: 10;
    overflow: hidden;
}

#selfCerti_rem .selfCert_footer_wrapper{
    padding: 10px 22px 16px 22px;
}

#selfCerti_rem .selfCert_footer_wrapper .brand-logos {
    padding-bottom: 6px;
}

#selfCerti_rem .selfCert_footer_wrapper .brand-logos img {
    width:104px;
    height:auto;
}

#selfCerti_rem .selfCert_footer_wrapper .footer-disclaimer{
    margin-left: 5px;
}

#selfCerti_rem .selfCert_footer_wrapper .footer-disclaimer p > img {
    margin-right: 2px;
    width:16px;
    height:auto;
        position: relative;
    top: 1px;
}

#selfCerti_rem .selfCert_footer_wrapper .footer-disclaimer p {
    font-size: 8.45px;
    line-height: 11.7px;
    margin: 0;
}
#selfCerti_rem .selfCert_footer_wrapper .footer-disclaimer p.copyright {
    margin-top:3px;
}

.fpo-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.fpo-text > p {
    color: #FF00C0;
    font-weight: 700;
    font-size: 80px;
    line-height: 52px;
    opacity: 0.4;
    transform: rotateZ(-37deg);
}

.selfCert_isi ul.isi-bullet-sub-list li::before {
    content: 'o';
    color: var(--mcl-darkteal);
}

.selfCert_isi .wrapper {
    padding: 0;
    max-width: 1190px;
}

/* CFF Updates STARTS - 27/10/2025*/

.new-banner--container {
    max-height: 340px;
}

.new-banner--container img {
    max-height: 340px;
    width: 100%;
    
    /*new added*/
    max-width: 100%;
    margin: 0 auto;
    display: flex;
}

.new-banner--footnote {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-top: -20px;
    padding-left: 6px;
}

.new-banner--footnote p {
    font-weight: 500;
    font-size: 10px;
    line-height: 1.6px;
    color: #000000;
    padding-bottom: 0px;
    margin-bottom: 4px;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.9);
}

.new-banner--footnote-white p {
    color: #FFFFFF;
    margin-bottom: 4px !important;
}

/* CFF Updates ENDS - 27/10/2025*/

@media (min-width:410px) {
    body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box {
        zoom: 1;
    }
    #selfCerti_rem .selfCert_grid .selfCert_grid__content h1 {
         font-size: 42px;
    }
}

@media (min-width:991px) {
    body.self-certify-blur .cmp-selfcertification .modal-box {
        width: 1400px;
        max-width: 1400px;
        /*height: 833px;*/
        /*max-height: 833px;*/
        height: 882px;
        max-height: 882px;
        zoom: calc(98vw / 1440px);
    }

    body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box {
        zoom: 1;
    }

    body.self-certify-blur .cmp-selfcertification .modal-box::before {
        background-image: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/yellow-vector.png');
        width:100%;
        background-size: 100% 100%;
    }

    /*body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box::before {*/
    /*    background-image: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/selfcert/yellow-vector_1034.png');*/
    /*    top: -212px;*/
    /*            width: 100%;*/
    /*}*/

    .selfCertification_wrapper .cmp-selfcertification__continue {
        top: 41px;
        right: 23px;
    }

    /*#selfCerti_rem .selfCertification_wrapper .cmp-selfcertification__continue {*/
    /*    top: 6px;*/
    /*    right: 12px;*/
    /*}*/

    .selfCertification_wrapper .selfCert_topbar {
        justify-content: flex-end;
        gap:23px;
        padding-top: 10px;
        padding-right: 105px;
    }

    .selfCert_grid {
        position: relative;
        top: -7px;
    }

    /*#selfCerti_rem .selfCert_grid {*/
    /*    top: 0px;*/
    /*    padding-top: 24px;*/
    /*}*/

    .selfCert_grid .selfCert_grid__content {
        max-width: 837px;
        margin-left: 103px;
        padding: 0;
        padding-bottom: 12px;
        min-height: auto;
    }


    .selfCert_grid .selfCert_grid__content .selfCert_logo {
        width: 271px;
    }

    .selfCert_grid .selfCert_grid__content h1 {
        margin-top: 30px;
        font-size: 104.49px;
        line-height: 92.11px;
    }

    /*#selfCerti_rem .selfCert_grid .selfCert_grid__content h1 {*/
    /*    margin: 0px;*/
    /*    font-size: 51.81px;*/
    /*    line-height: 69.28px;*/
    /*}*/

    .selfCert_grid .selfCert_grid__content h1::before,
    .selfCert_grid .selfCert_grid__content h1::after {
        border-width: 2.5px;
    }

    .selfCert_grid .selfCert_grid__content h1::before {
        top: -4px;
    }

    .selfCert_grid .selfCert_grid__content h1::after {
        bottom: -8px;
    }

    .selfCert_grid .selfCert_grid__content .selfCert_desc {
        font-size: 31.5px;
        line-height: 35.7px;
        margin-top: 29px;
        margin-bottom: 11px;
        max-width: 781px;
    }

    /*#selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_desc {*/
    /*    font-size: 28.69px;*/
    /*    line-height: 26.85px;*/
    /*    margin-top: 50px;*/
    /*    margin-bottom: 22px;*/
    /*}*/

    .selfCert_grid .selfCert_grid__content .btn {
        min-width: 263px;
        min-height: 58px;
        font-size: 25.73px;
        line-height: 29.16px;
        border-radius: 60px;
    }

    /*#selfCerti_rem .selfCert_grid .selfCert_grid__content .btn {*/
    /*    min-width: 238px;*/
    /*    min-height: 53px;*/
    /*    font-size: 23.2px;*/
    /*    line-height: 26.29px;*/
    /*    border-radius: 44.19px;*/
    /*    margin-top: 42px;*/
    /*    margin-bottom: 86px;*/
    /*}*/

      .selfCert_grid .selfCert_grid__content .selfCert_footnote {
        margin-top: 4px;
        max-width: 763px;
    }

      .selfCert_grid .selfCert_grid__content .selfCert_footnote.alt_ast {
        margin-top: 0px;
        margin-bottom: 20px;
    }
    
    .selfCert_grid .selfCert_grid__content .selfCert_footnote p {
        font-size: 12px;
        line-height: 21px;
        margin-bottom: 8px;
    }

    .selfCert_grid .selfCert_grid__content .selfCert_footnote p:last-of-type {
        margin-top: 15px;
    }

    .selfCert_grid .selfCert_grid__content .selfCert_footnote.alt_ast .ft_content {
        max-width: 100%;
        font-size: 16px;
        
        line-height: 19.6px;
        margin-top: 0px;
    }
    .selfCert_grid .selfCert_grid__content .selfCert_footnote p .asterisk {
        left: -9px;
    }
    #home .selfCert_grid .selfCert_grid__content .selfCert_footnote p .asterisk {
        left: -5px;
    }
    
    .selfCert_grid .selfCert_grid__content .selfCert_footnote .abbr {
        max-width: 100%;
        line-height: 21px;
    }
    p.selfCert_desc.laptop_mb-7.mb-6.mt-0 {
        max-width: 100%;
    }

    .selfCert_grid .selfCert_grid__img {
         top: 63px; 
        /*top: 25px;*/
        bottom: auto;
    }

    .selfCert_grid .selfCert_grid__img .cll_man_img {
        width: 866px;
        object-position: 0px;
    }

    #selfCerti_rem .selfCert_grid .selfCert_grid__img .cll_man_img {
        width: 638px;
    }

    .selfCert_grid .selfCert_grid__img .naap {
        font-size: 15.53px;
        bottom: 25px;
        right: 400px
    }
    #selfCerti_rem .selfCert_grid .selfCert_grid__img .naap {
        font-size: 11.43px;
        line-height: 12.96px;
        bottom: 30px;
        right: 306px;
    }
    
    .selfCert_grid .selfCert_grid__img .fpo {
        bottom: 288px;
        right: 102px;
        font-size: 80px;
        line-height: 120%;
    }
    
    .selfCert_isi{
        height: 148px;
    }
    .selfCert_isi .selfCert_isi_wrapper{
        /* max-width: 974px; */
        max-width: 1215px;
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    /*#selfCerti_rem .selfCert_footer {*/
    /*    height: 212px;*/
    /*}*/

    /*#selfCerti_rem .selfCert_footer_wrapper{*/
    /*    padding: 27px 42px;*/
    /*}*/

    #selfCerti_rem .selfCert_grid .selfCert_grid__content .selfCert_footnote p {
        font-size: 11.43px;
        line-height: 12.96px;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    
    
    /* CFF Updates STARTS - 27/10/2025*/
    
    .new-banner--container {
        padding-bottom: 30px;
    }
    
    .new-banner--footnote {
        margin-top: -65px;
        padding-left: 36px;
        /*New css*/
        margin-top: -65px;
        padding-left: 36px;
        max-height: 340px;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        margin-top: -55px !important;
        padding-left: 90px !important;
    }
    
    .new-banner--footnote p {
        font-size: 18.23px;
        line-height: 0px;
        padding-bottom: 12px;
    }
    
    .new-banner--footnote-white p {
        margin-bottom: 12px !important;
    }
    
    /* CFF Updates ENDS - 27/10/2025*/
    
    
}

@media (min-width:1440px){
    body.self-certify-blur .cmp-selfcertification .modal-box,
    body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box{
        zoom: 1;
    }
}

/* Mobile: when viewport height < 860px */
@media screen  and (max-width: 767px) and (max-height: 860px) {
  body.self-certify-blur .cmp-selfcertification.modal--overflow {
    align-items: flex-start;
  }
  body.self-certify-blur #self-certification-rem .cmp-selfcertification.modal--overflow{
       align-items: center;
  }
}

/* Tablet and above: min-width 768px AND height < 582px */
@media screen and (min-width: 768px) and (max-height: 582px) {
  body.self-certify-blur .cmp-selfcertification.modal--overflow {
    align-items: flex-start;
  }
   body.self-certify-blur #self-certification-rem .cmp-selfcertification.modal--overflow{
       align-items: center;
  }
}

/* SM Desktop and above: min-width 992px AND height < 600px */
@media screen and (min-width: 992px) and (max-height: 600px) {
  body.self-certify-blur .cmp-selfcertification.modal--overflow {
    align-items: flex-start;
  }
   body.self-certify-blur #self-certification-rem .cmp-selfcertification.modal--overflow{
       align-items: center;
  }
}

/* XL Desktop and above: min-width 992px AND height < 800px */
@media screen and (min-width: 1200px) and (max-height: 800px) {
  body.self-certify-blur .cmp-selfcertification.modal--overflow {
    align-items: flex-start;
  }
   body.self-certify-blur #self-certification-rem .cmp-selfcertification.modal--overflow{
       align-items: center;
  }
}

/* XXL desktop and above: min-width 1440px AND height < 862px */
@media screen and (min-width: 1440px) and (max-height: 862px) {
  body.self-certify-blur .cmp-selfcertification.modal--overflow {
    align-items: flex-start;
  }
   body.self-certify-blur #self-certification-rem .cmp-selfcertification.modal--overflow{
       align-items: center;
  }
}

@media screen  and (max-width: 992px) and (max-height: 375px) {
      body.self-certify-blur #self-certification-rem .cmp-selfcertification.modal--overflow{
       align-items: flex-start;
  }
}
/*/-Self Certification Ends */

@media (-webkit-min-device-pixel-ratio: 3) {
    
    @media (max-width: 767px) {
        .exit-ramp-modal .modal__close {
            top: 100px;
            right: 15px;
        }
    }
    
    @media (min-width: 700px) and (max-width: 866px) {
        .exit-ramp-modal.modal--visible {
            overflow-y: scroll;
        }
        .exit-ramp-modal .modal__close {
            top: 33%;
            right: 22%;
            width: 22px;
            height: 22px;
        }
        
        .exit-ramp-modal .modal__close .modal__closeIcon svg {
            max-width: 8px;
        }
    }
    
    @media (min-width: 749px) and (max-width: 866px) {
        .exit-ramp-modal .modal__close {
            top: 19%;
        }
    }
    
    @media (max-width: 380px) {
        .exit-ramp-modal .modal__close {
            top: 80px !important;
        }
    }
}


/* Tablet landscape */
@media only screen 
  and (min-width: 991px) 
  and (max-width: 1224px) {
    /*@supports (-webkit-touch-callout: none) {*/
        body.self-certify-blur .cmp-selfcertification .modal-box {
            max-width: 1024px;
            max-height: 735px;
        }
        
        .selfCert_grid .selfCert_grid__img .cll_man_img {
            width: 730px;
        }
        
        .selfCert_grid .selfCert_grid__content {
            transform: scale(0.75);
            margin-left: -50px;
            margin-top: -30px;
        }
        
        .selfCert_grid .selfCert_grid__img .naap {
            bottom: 12px;
            right: 340px;
        }
        
        .selfCert_isi .selfCert_isi_wrapper {
            max-width: 974px;
        }
    /*}*/
}

@media (max-width: 370px) {
    body.self-certify-blur .cmp-selfcertification .modal-box {
        max-width: 315px;
    }
    
    .selfCert_grid .selfCert_grid__img .cll_man_img {
        object-position: 38px;
    }
    
    .selfCert_grid .selfCert_grid__img .fpo {
        bottom: 64px;
        right: 24px;
    }
    
    .exit-ramp-continue, .exit-ramp-cancel.close-exit-ramp {
        font-size: 14px;
    }
    
    .selfCert_grid .selfCert_grid__img .naap {
        bottom: 6px;
    }
}

@media (max-height: 650px) and (max-width: 991px) {
    
    .exit-ramp-modal .modal__close .modal__closeIcon {
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #home .exit-ramp-modal .modal__close .modal__closeIcon {
        width: 1.2rem !important;
    }
    
    .exit-ramp-modal .modal__close {
        top: 10%;
        width: 22px;
        height: 22px;
    }
    
    #home .exit-ramp-modal .modal__close {
        top: 14%;
    }
    
    .exit-ramp-modal.modal--visible {
        overflow-y: scroll;
    }
}

/* Safari Desktop */
@media screen and (min-width: 1920px) {
  @supports (-webkit-backdrop-filter: blur(1px)) {
    .exit-ramp-cancel.close-exit-ramp::after {
        min-width: fit-content;
        margin-left: -55px;
    }      
  }
}

@media screen and (min-width: 1710px) {
    #home .exit-ramp-modal .exit-ramp-content {
        max-width: none;
    }
    
    #home .exit-ramp-modal .modal__close {
        top: -175px;
    }
}


/* Breadcrumb Fixed on Top - 22/08/25 */


/*.breadcrum-container {*/
/*    position: fixed;*/
/*    z-index: 99;*/
/*    width: 100%;*/
/*}*/


/*.text>.cmp-text>.wrapper {*/
/*    padding-top: 125px;*/
/*}*/


/*@media (min-width: 768px) {*/
/*    .text>.cmp-text>.wrapper {*/
/*        padding-top: 110px;*/
/*    }*/
/*}*/


/*New changes for CT*/

@media (max-width: 359px) {
    body.self-certify-blur #self-certification-rem .cmp-selfcertification .modal-box {
        zoom: 75%;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1224px) {

    .self-certify-blur#home .selfCert_grid .selfCert_grid__content{
        transform: initial;
        margin-left: 20px;
        padding: 0;
        margin-top: 0px;
    }
}

@media (max-width: 991px) {
    .exit-ramp-modal .modal-box {
        width: auto;
    }
    
    .exit-ramp-modal .modal__close {
        top: 8%;
    }
    
    #home .exit-ramp-modal .modal__close {
        top: 20%;
    }
}

@media (max-width: 384px) {
    #home .exit-ramp-modal .modal__close {
        top: 15%;
    }
}

@media (min-width: 499px) and (max-width: 718px) {
    #home .exit-ramp-modal .modal__close {
        top: 25%;
    }
}

@media (min-width: 719px) and (max-width: 991px) {
    #home .exit-ramp-modal .modal__close {
        top: 30%;
    }
}

@media (-webkit-min-device-pixel-ratio: 3) {
    @media (max-height: 650px) and (max-width: 991px) {
        
        .exit-ramp-modal .modal__close .modal__closeIcon {
            display: inline;
        }
        
        .exit-ramp-modal .modal__close {
            top: 20% !important;
            right: 12px !important;
        }
    }
    @media (max-height: 650px) and (max-width: 365px) {
        
        #home .exit-ramp-modal .modal__close .modal__closeIcon {
            width: 1.2rem !important;
            margin-right: 0;
        }
        
        .exit-ramp-modal .modal__close {
            top: 14% !important;
        }
        
        #home .exit-ramp-modal .modal__close .modal__closeIcon svg {
            padding-bottom: 1px;
        }
    }
    
    @media (min-width: 719px) and (max-width: 991px) {
        #home .exit-ramp-modal .modal__close {
            top: 35%;
        }
    }
}



/*New changes for CT*/

/*New changes for CFF - 28-10-2025*/
.mcl-single .new-banner--footnote p{
    color: #ffffff
}

/*New changes for CFF - 28-10-2025*/
/*New changes for CFF - 12-11-2025*/
.self-certify-blur .extra-pink-color::before{
    content: '[';
    color: #FF00C0;
        font-weight: 900;
    display: none;
}
.self-certify-blur .extra-pink-color::after{
    content: ']';
    color: #FF00C0; 
        font-weight: 900;
    display: none;
}
/*New changes for CFF - 12-11-2025*/

@media (max-width: 768px) {
    .new-banner--container {
    min-height: 90px;
}
}


/*Banner size update*/

@media screen and (min-width: 1441px) {
    .new-banner--container {
        max-height: 100%;
    }

    .new-banner--container img{
        max-height: 100%;
    }
}

/*Banner size update*/



/*Safety ISI Page*/
#page-safety-isi a.safety-prescribing {
    position: absolute;
    right: -214px;
    top: 46px;
    color: #000 !important;
    text-decoration: underline;
    font-size: 16px;
    }
 
    #page-safety-isi .safety-isi-logo-container {
        position: relative;
    }
 
    #page-safety-isi .safety-isi-header {
        margin: 15px 0px;
    }
    #page-safety-isi #isi .wrapper, #page-safety-isi #footer .wrapper {
    /* max-width: 1680px; */
    margin: 0 auto !important;
    padding: 3.5em 0px 1em !important;
    width: 100%;
}
#page-safety-isi #footer .wrapper {
    padding: 0em 110px 1em !important;
}
 
#page-safety-isi #isi .wrapper .isi-title .isi-unique-class{
        margin: 0px 0 20px 0;
}
#page-safety-isi img.safety-logo {
        width: 188px;
    }
    #page-safety-isi #isi {
        padding: 0em 102px 1em;
}
 
    @media screen and (max-width: 768px) {
        #page-safety-isi a.safety-prescribing {
            position: relative;
            right: auto;
            width: max-content;
            top: auto;
            color: #000 !important;
            text-decoration: underline;
            font-size: 16px;
        }
 
        #page-safety-isi .safety-isi-logo-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
 
        #page-safety-isi .safety-isi-header {
            margin: 20px 0px 10px 0px;
        }
         #page-safety-isi #isi .wrapper{
           padding: 1.5em 0px 1em !important;
    }
    #page-safety-isi #footer .wrapper{
           padding: 0em 20px 1em !important;
    }
        #page-safety-isi #isi {
        padding: 1em 20px 1em;
}
    }
 
   

 
/*Safety ISI Page*/


/* ISI - CSS */

.text-orange{
    color: var(--common-primary) !important;
}
#home .modal-box .isi-links p:nth-child(1) {
    font-weight: 900 !important;
}
#home .modal-box .effective-in-children {
    padding-left: 12px;
    padding-bottom: 10px;
}

#home .modal-box a i.fa.fa-external-link {
    left: 3px;
    position: relative;
    font-size: 14px;
    text-decoration: none;
}
#home .modal-box .isi-links .color-dot {
    color: rgb(83, 83, 83);
    position: relative;
    left: 3px;
}
#selfCerti_rem .selfCertification_wrapper .cmp-selfcertification__continue {
        /*top: 0px;*/
        /*right: 20.96px;*/
        top: 4px;
        right: 14px;
        width: 25px;
        height: 25px;
        overflow: visible;
}

.selfCertification_wrapper .cmp-selfcertification__continue .close-icon {
        content: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/global/close-button.svg');
}
.selfCertification_wrapper .cmp-selfcertification__continue .close-icon:hover {
        content: url('/content/dam/intelligentcontent/brands/dtc-calquence/us/en/images/global/close-button-hover.svg');
}


.selfCertification_wrapper .cmp-selfcertification__continue {
    position: absolute;
    top: 39px;
    right: 14px;
    min-width: 34px;
    width: 56px;
    height: 93px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    z-index: 9;
}

@media (min-width: 992px) {
    .popup-no-wrap {
        white-space: nowrap;
    }
}
@media (max-width: 991px) {
    #external-popup-dtc .exit-ramp-title{
    padding-top: 20px;
}
    .while-rap {
        white-space: nowrap;
    }
.selfCert_grid .selfCert_grid__content .selfCert_footnote .ft_content {
    max-width: 230px;
    font-size: 14px;
    line-height: 16px;
}

.selfCert_grid .selfCert_grid__content .selfCert_footnote .abbr {
    max-width: 160px;
    line-height: 15px;
    font-size: 10px !important;
}
        .selfCertification_wrapper .cmp-selfcertification__continue {
        position: absolute;
        top: 46px;
        right: 8px;
        min-width: 15px;
        width: 82px;
        height: 97px;
        background: transparent;
        border-radius: 50%;
        overflow: hidden;
        z-index: 9;
        zoom: 61%;
    }
}

.self-certify-blur .selfCertification_wrapper .selfCert_grid__content .btn:hover {
    background: rgb(255, 255, 255);
}

@media (min-width: 991px) {
    .selfCertification_wrapper .cmp-selfcertification__continue {
        top: 20px;
        right: 12px;
    }
}


/*Go Live*/
#CookieReportsBannerAZ {
    z-index: 32012 !important;
}
@media (max-width: 991px) {
    .new-banner--container {
        aspect-ratio: 181 / 42;
    }
}

/*Go Live*/





/*Amplify CSS*/
.cmp-modal__modalbox.modal-sm {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*z-index: 9999;*/
    z-index: 32010 !important;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgb(63, 63, 63, 0.8) !important;
    padding-top: 80px;
    padding-left: 13px;
    padding-right: 13px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
    .cmp-modal__modalbox.modal-sm .modal-box__content {
    border: 4px solid #FD6B0D;
    background-color: #FFFFFF;
    max-width: 1031px;
    margin: 0 auto;
    /*padding: 28px 2px 28px 13px;*/
    padding: 28px 7px 28px 7px;
}

@media screen and (min-width: 992px) {
    .cmp-modal__modalbox.modal-sm {
        display: flex;
        /* align-items: flex-start; */
        align-items: center;
        justify-content: center;
        flex-direction: row-reverse;
        /* padding-top: 172px; */
        padding-top: 0;
    }
    .cmp-modal__modalbox.modal-sm .modal-box__content {
        padding: 34px 58px;
        margin: 0px;
    }
}

.cmp-modal__modalbox.modal-sm .modal-box {
    width: auto !important;
}

#external-popup-dtc .exit-ramp-title{
    padding-bottom: 30px;
    line-height: 30px;
    color: var(--body-color);
}

#external-popup-dtc  .exit-ramp-title::before {
    content: "";
    color: var(--body-color);
}

.cmp-modal__modalbox.modal-sm .modal__close .modal__closeLabel {
    display: none;
}



@media (max-width: 540px) {
    .cmp-modal__modalbox.modal-sm .modal__close {
        width: 28px;
        height: 28px;
        right: 12px;
        left: auto;
        margin-top: 10px;
        border: 3px solid #C13A00;
        border-radius: 50%;
        background-color: transparent;
        width: 27px;
        height: 27px;
        color: #C13A00 !important;
        z-index: 999;
    }

        .cmp-modal__modalbox.modal-sm .modal__close .modal__closeIcon {
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
     .cmp-modal__modalbox.modal-sm .modal__closeIcon svg{
            width: 10px;
    }
}


 .cmp-modal__modalbox.modal-sm .modal__close {
        width: 31px;
        height: 31px;
        right: 21px;
        left: auto;
        margin-top: -11px;
        border: 3px solid #C13A00;
        border-radius: 50%;
        background-color: transparent;
        color: #C13A00 !important;
        z-index: 999;
    }

        .cmp-modal__modalbox.modal-sm .modal__close .modal__closeIcon {
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
     .cmp-modal__modalbox.modal-sm .modal__closeIcon svg{
            width: 15px;
    }
@media (max-width: 540px) {
    .cmp-modal__modalbox.modal-sm .modal__close {
        width: 31px;
        height: 31px;
        right: 12px;
        margin-top: 13px;
    }
}


/*Amplify CSS*/


#CookieReportsBannerAZ-push-down{
    height: 0 !important;
}


/* CT issues - 14-04-2026 */
@media (max-width: 389px) {
    .new-banner--container {
        max-width: 100vw;
    }
}
