/* GLOBAL STYLES */
@font-face {
  font-family: 'Lexia';
  src: url('/content/dam/intelligentcontent/brands/azpro/nl/risicobijdiabetes/fonts/lexia.woff2') format('woff2'),
       url('/content/dam/intelligentcontent/brands/azpro/nl/risicobijdiabetes/fonts/lexia.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('/content/dam/intelligentcontent/brands/azpro/nl/risicobijdiabetes/fonts/helveticaneue.woff2') format('woff2'),
       url('/content/dam/intelligentcontent/brands/azpro/nl/risicobijdiabetes/fonts/helveticaneue.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

:root {
  --primary-blue: #003865;
  --secondary-blue: #E7F3F6;
  --primary-white: #FFFFFF;
  --primary-grey: #3C4242;
  --secondary-grey: #B2B4B4;
  --primary-orange: #DE722E;
  --primary-magneta: #AE2573;
  --font-family-lexia: Lexia, sans-serif;
  --font-family-helvetica: Helvetica Neue, sans-serif;
}



/* HEADINGS AND TEXT */
* {
  font-family: var(--font-family-lexia) !important;
  overflow-wrap: break-word;
  word-break: break-word;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
}

h1 {
  color: var(--primary-blue);
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
  line-height: 48px;
}

h2 {
  color: var(--primary-blue);
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  line-height: 48px;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  color: var(--primary-blue);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 48px;
}

h4 {
  color: var(--primary-orange);
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
}

h5 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
}

p,ul,ol,li,blockquote,a,table,.contact-info {
  color: var(--primary-grey);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

p {
  margin: 20px 0;
}

a {
  color: var(--primary-blue);
  text-decoration: underline;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
}

ul li {
}

ol {
  list-style-type: decimal;
  list-style-position: outside;
}

ol li {
}

ul ul, ol ol, ul ol, ol ul {
  margin-left: 20px;
}

ul ul li, ol ol li, ul ol li, ol ul li {
  list-style-type: circle;
}

ul ul ul li, ol ol ol li {
  list-style-type: square;
}

.cmp-button {
  height: 52px;
  background-color: var(--primary-magneta);
  color: white;
  font-size: 16px;
  text-decoration: none;
  border: none;
  box-shadow: 0px 2px 4px rgba(96, 97, 112, 0.16);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(96, 97, 112, 0.24);
}

.cmp-button:focus {
  outline: 2px solid #ffffff;
}

.cmp-button__text {
  color: var(--primary-white);
  font-size: 16px;
  font-family: var(--font-family-lexia);
  font-style: italic;
  font-weight: 300;
  line-height: 19px;
  letter-spacing: 0.20px;
  word-wrap: break-word;
  padding: 30px;
  height: auto;
}

/* Override global CSS for your specific button */
span.cmp-button__text:hover, 
span.cmp-button__text:active, 
span.cmp-button__text:focus {
  text-decoration: none;
  color: inherit;
  border-left: none;
}

/* Tablet Styles (width <= 768px) */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }

  h2 {
    font-size: 36px;
    line-height: 42px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 28px;
    line-height: 36px;
  }

  h4 {
    font-size: 20px;
    line-height: 26px;
  }

  p, ul, ol, li, blockquote, a, table, .contact-info {
    font-size: 16px;
    line-height: 24px;
  }

  p {
    margin: 15px 0;
  }
}

/* Mobile Styles (width <= 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
    line-height: 32px;
  }

  h2 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 24px;
    line-height: 30px;
  }

  h4 {
    font-size: 18px;
    line-height: 24px;
  }

  p, ul, ol, li, blockquote, a, table, .contact-info {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    margin: 10px 0;
  }
}

/** HEADER **/
#Header .cmp-accordion__panel--expanded {
  position: absolute;
  background: white;
  width: 100%;
  left: -7px;
  z-index: 1;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

#Header .cmp-accordion__button {
  padding-left: 19px;
  outline: none;
}

#Header .cmp-accordion__panel--expanded:hover::before {
  left: 0;
  transform: scaleY(1);
}

#Header .cmp-accordion__panel--expanded::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 7px;
  background-color: #D0006F;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.5s ease-out;
}

#Header .cmp-accordion__panel--expanded a {
  text-decoration: none;
}

#Header .cmp-accordion__icon {
  display: none !important;
}

#Header .cmp-accordion__title {
  position: relative;
  display: inline-block;
}

#Header .cmp-accordion__title::before {
  content: url(/content/dam/intelligentcontent/brands/zorg-voor-opluchting/assets/stroke.png);
  left: -19px;
  top: 9px;
  position: absolute;
  transform: translateY(-50%);
  pointer-events: none;
}

#Header .cmp-accordion__item {
  top: 4px;
}

#Header .cmp-accordion__button .cmp-accordion__icon {
  min-width: 16px;
  height: 14px;
  display: block;
  background-image: url(/content/dam/intelligentcontent/brands/zorg-voor-opluchting/assets/stroke.png);
  background-position: center center;
  background-repeat: no-repeat;
}

#Header .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  border: none;
  /*font-size: 16px;*/
  font-family: var(--font-family-lexia);
  color: var(--primary-grey);
  margin-top: 6px;
  position: relative;
  display: inline-block;
}

#Header .select-wrapper select * {
  background: red;
}

#Header .azcl-columns__base {
  grid-template-columns: calc(21% - 119px) 69% 15%;
  justify-content: space-between;
  height: 80px;
}

#Header .azcl-columns__base > * {
  display: flex;
  align-items: center;
  justify-content: center;
}

#Header .azcl-columns__base .azcl-column-par1 {
  justify-content: flex-start;
}

#Header .azcl-columns__base .azcl-column-par3 {
  justify-content: flex-start;
}

#Header .azcl-columns__base .azcl-column-par2 ul {
  display: flex;
  gap: 20px;
}

#Header .azcl-columns__base .azcl-column-par2 ul li {
  height: 80px;
  display: flex;
  align-items: center;
  padding-top: 30px;
}

#Header .azcl-columns__base .azcl-column-par2 ul li a {
  color: var(--primary-grey);
  height: 100%;
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 20px;
}

#Header .azcl-columns__base .azcl-column-par2 ul li a.active:after {
  width: 100%;
  background: #D0006F;
  content: '';
  display: block;
  margin: auto;
  background: transparent;
  transition: width .5sease, background-color .5sease;
  transform: translate(0px, 13px);
}

#Header .azcl-columns__base .azcl-column-par2 ul li a:hover {
  text-decoration: none;
}

#Header .azcl-columns__base .azcl-column-par2 ul li a:after {
  content: '';
  display: block;
  margin: auto;
  height: 5px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
  transform: translate(0px, 13px);
}

#Header .azcl-columns__base .azcl-column-par2 ul li a:hover:after {
  width: 100%;
  background: #D0006F;
}

#Header .search:hover:after {
  width: 100%;
  background: #D0006F;
}

#BrandHeaderMobile {
  display: none;
}
/* END HEADER */

/** FOOTER **/
#Footer .container:first-child {
  background-color: #FAFAFC;
  padding: 42px 0 38px 0;
}

#Footer .container:first-child .azcl-columns__base {
  justify-content: space-between;
  grid-template-columns: 500px 400px;
}

#Footer .container:last-child {
  background: #F2F2F5;
  padding: 20px 0 5px 0;
}

#Footer .container:last-child p {
  margin-bottom: 15px !important;
  font-size: 12px;
  line-height: 14px;
  color: #8F90A6;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

#Footer .container:last-child p a {
  color: #8F90A6;
  text-decoration: none;
  font-size: 12px;
}

#Footer .azpro {
  margin-bottom: 25px;
}

#Footer p.contact a {
  font-family: var(--font-family-lexia);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #3C4242;
  margin-bottom: 25px;
  display: inline-block;
  text-decoration: none;
}

#Footer ul.footer_menu {
  display: flex;
  gap: 40px;
  list-style-type: none;
}

#Footer ul.footer_menu a {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.02px;
  color: #8F90A6;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

#Footer .azcl-column-par2 .text {
  font-size: 14px;
  line-height: 22px;
  color: #555770;
  font-family: var(--font-family-helvetica);
  margin-bottom: 10px;
}

.prm_no {
  font-size: 14px;
  line-height: 22px;
  color: #555770;
  padding-top: 20px;
}
/** END FOOTER **/ 

/** EXIT MODAL **/
.modal.exit-ramp-modal.modal--visible {
  position: fixed;
  top: 423!important;
  left: 0%;
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  background-color: #f8f8f8;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
  height: auto;
  padding-left: 30px;
  padding-right: 40px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none;
  bottom: auto;
  right: 0;
  z-index: 999999;
}

button.modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.modal--visible {
  visibility: visible;
  opacity: 1;
}

button.modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.modal__close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: var(--font-family-lexia);
}

.modal--visible .modal-box {
  -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
    /*width: 60%;*/
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}

.modal-box__content {
  padding: 3rem 3rem;
}

.exit-ramp-title {
  color: #830051;
  font-size: 38px;
  font-family: var(--font-family-lexia);
  line-height: 44px;
  padding-left: 20px;
  padding-right: 20px;
}

.exit-ramp-body {
  margin-top: 35px;
  font-size: 17px;
  line-height: 20px;
}

.exit-ramp-actions {
  margin-top: 41px;
  margin-bottom: 40px;
}

.exit-ramp-actions .exit-ramp-continue {
  color: #3C4242;
  border: solid 1px #3C4242;
  font-size: 18px;
  font-style: italic;
  font-family: var(--font-family-lexia);
  padding: 2% 5%;
}

.exit-ramp-content {
  min-height: 202px;
}

span.modal__closeLabel {
  display: none;
}

.modal__close svg * {
  color: #000;
}

.modal-box {
  width: 100%!important;
}

.azcl-column-par3 #new_top div p {
  display: none;
}
/** EXIT MODAL **/

/* HERO */
body .cmp-container__backgroundImage--enabled {
  min-height: unset !important;
  background-size: cover !important;
  background-position: center center !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  body .cmp-container__backgroundImage--enabled {
    background-position: center right !important;
  }
}

/* Phone variant */
@media (max-width: 768px) {
  body .cmp-container__backgroundImage--enabled {
    background-position: center right !important;
  }
}

.azpro img {
  margin-top: -20px;
}

/* END HERO */

/* BODY */
.azcl-container,
.text.aem-GridColumn.aem-GridColumn--default--12 > #prod-id {
  width: 100%;
  padding: 0 15px;
  max-width: 1766px;
  margin: 0 auto;
}

.text.aem-GridColumn.aem-GridColumn--default--12 > #prod-id,
#main-content .azcl-container {
  margin-top: 25px;
}

.text.aem-GridColumn.aem-GridColumn--default--12 > #prod-id {
  margin-bottom: 50px;
}

#main-content .azcl-container,
#prod-id,
#banner-cont .azcl-container {
  max-width: 1440px !important;
}



/* END BODY */


/** ADAPTIVE DESIGN **/

#mobile-menu .cmp-accordion__title {
  visibility: hidden;
}

#mobile-menu .accordion.panelcontainer {
  margin-bottom: 50px;
  margin-right: 50px;
}

/* DESKTOP: Large screens, 1920px and above */
@media screen and (min-width: 1920px) {
  #Header .azcl-columns__base .azcl-column-par2 ul li a:after {
    transform: translate(0px, 7px) !important;
  }
}

/* DESKTOP: Up to 1600px */
@media screen and (max-width: 1600px) {
  #Header .azcl-columns__base .azcl-column-par2 ul li a {
    font-size: 16px;
    line-height: 17px;
  }
}

/* DESKTOP: Grid adjustment for up to 1600px */
@media screen and (max-width: 1600px) {
  #Header .azcl-columns__base {
    grid-template-columns: minmax(0, calc(16% - 104px)) minmax(0, 76%) minmax(0, 14%);
  }
}

/* DESKTOP: Screens above 1600px */
@media screen and (min-width: 1600px) {
  .cmp-experiencefragment.cmp-experiencefragment--footer > .cmp-container > div > div.text {
    width: 100%;
    padding: 0 auto;
    max-width: 1440px;
    margin: 0 auto;
  }

  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
    float: none !important;
  }
}

/* DESKTOP: Between 1661px and 1748px */
@media screen and (min-width: 1661px) and (max-width: 1748px) {
  #Header .azcl-columns__base .azcl-column-par2 ul {
    gap: 29px;
  }
}

/* TABLET: Screens up to 1367px */
@media screen and (max-width: 1367px) {
    
  #Header .azcl-columns__base .azcl-column-par3 {
    display: none;
  }

  #Header .azcl-columns__base .azcl-column-par2 ul {
    gap: 20px !important;
  }

  #Header .azcl-columns__base {
    grid-template-columns: calc(15% - 40px) 77% 12%;
  }

  #Header .azcl-container {
    height: 95px;
  }
}

/* TABLET: Screens up to 1200px */
@media screen and (max-width: 1200px) {
  #Header .azcl-columns__base .azcl-column-par3 {
    display: none;
  }

  #Header .azcl-columns__base {
    grid-template-columns: minmax(0, calc(15% - 40px)) minmax(0, 74%) minmax(0, 14%);
  }

  #Header .azcl-columns__base .azcl-column-par1 {
    padding-left: 0;
  }

  #Header .azcl-columns__base .azcl-column-par2 ul {
    gap: 30px;
  }

  #Header .azcl-columns__base .azcl-column-par2 ul li a {
    font-size: 15px;
  }
}

/* MOBILE LANDSCAPE: Screens up to 992px */
@media screen and (max-width: 992px) {
  #Footer .container:first-child .azcl-columns__base {
    grid-template-columns: 1fr;
    max-width: 728px;
    margin: 0 auto;
  }

  #Footer .container:last-child p {
    max-width: 728px;
    margin: 0 auto;
    margin-top: 10px !important;
  }

  #Header {
    display: none;
  }

  body .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
    float: none !important;
  }

  #BrandHeaderMobile {
    display: block;
  }

  #BrandHeaderMobile ul li {
    padding: 17px 15px;
    border-bottom: 1px solid #EBEFEE;
    list-style: none;
  }

  #BrandHeaderMobile ul li a {
    color: #3C4242;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
  }

  #BrandHeaderMobile ul li a.active:after {
    width: 100%;
    background: #D0006F;
    content: '';
    display: block;
    margin: auto;
    transition: width .5sease, background-color .5sease;
    transform: translate(0px, 13px);
    height: 5px;
  }

  #BrandHeaderMobile .cmp-accordion__button .cmp-accordion__title {
    width: 45px;
  }

  #BrandHeaderMobile .cmp-accordion__button .cmp-accordion__icon {
    min-width: 25px;
    height: 25px;
    display: block;
    background-image: url(/content/dam/intelligentcontent/brands/zorg-voor-opluchting/assets/menu.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  #BrandHeaderMobile .cmp-accordion__button.cmp-accordion__button--expanded .cmp-accordion__icon {
    background-image: url(/content/dam/intelligentcontent/brands/zorg-voor-opluchting/assets/menu-close.svg);
  }

  #BrandHeaderMobile .cmp-accordion__button .cmp-accordion__icon:before {
    display: none;
  }

  #BrandHeaderMobile .cmp-accordion__button {
    width: 65px;
    height: 24px;
    float: right;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 13px;
    color: #1C1C28;
    text-transform: uppercase;
    font-family: HelveticaNeue;
    outline: 0;
    font-weight: 500;
  }
}

/* MOBILE LANDSCAPE: Screens up to 767px */
@media screen and (max-width: 767px) {
  button.modal__close {
    width: 2rem;
  }

  .modal.exit-ramp-modal.modal--visible {
    padding: 25px;
  }

  .exit-ramp-title {
    line-height: 26px;
    font-size: 20px;
  }

  .modal-box__content {
    padding: 15px;
  }

  .exit-ramp-body {
    font-size: 14px;
  }

  .modal.exit-ramp-modal.modal--visible {
    width: 68%;
  }

  #Footer .container:first-child {
    padding: 40px 0 35px 0;
  }

  #Footer .container:first-child .azcl-columns__base {
    gap: 30px;
  }

  #Footer .container:first-child .azcl-columns__base,
    #Footer .container:last-child p {
    max-width: 540px;
  }

  #Footer ul.footer_menu {
    flex-wrap: wrap;
    gap: 0px;
  }

  #Footer .footer_menu li {
    padding: 0px 25px 0px 0px;
  }
}

/* MOBILE PORTRAIT: Screens up to 540px */
@media screen and (max-width: 540px) {
  button.modal__close {
    width: 1rem;
  }

  .modal.exit-ramp-modal.modal--visible {
    padding: 20px;
  }

  .exit-ramp-title {
    font-size: 20px;
  }

  .modal-box__content {
    padding: 5px;
  }

  .exit-ramp-body {
    font-size: 14px;
  }

  .modal.exit-ramp-modal.modal--visible {
    width: 80%;
  }
}
/** END ADAPTIVE DESIGN **/


.container {
  max-width: 100%;
  overflow: hidden;
}

.cmp-video {
  max-width: 800px;
}

#gesprek #prod-id,
#gesprek #Menu,
#gesprek #BrandHeader{
    display: none !important;
}

#gesprek #experts-section [class^="azcl-column-par"] .cmp-container .text {
    padding: 0px 20px 20px 20px;
}