/* VARIABLES */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 0.0625rem solid;
  padding: 0.875rem 2rem;
  text-transform: none;
  text-decoration: unset;
  font-weight: 500;
  line-height: 1;
  transition: all 0.4s ease-in-out;
  text-align: center;
}
.btn.btn-sides-small {
  padding: 0.875rem 0.75rem;
}
.btn:hover, .btn:active, .btn:focus {
  cursor: pointer;
  outline: unset;
  text-decoration: none;
  box-shadow: none;
}
.btn.loading::before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  width: 1.3125rem;
  height: 1.3125rem;
  border: 0.1875rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
  position: absolute;
  left: 0.5625rem;
}
@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.btn[disabled]:not(.loading) {
  background-color: #DDDDDD;
  border-color: #DDDDDD;
  color: #555555;
}
.btn[disabled]:not(.loading):hover, .btn[disabled]:not(.loading):active, .btn[disabled]:not(.loading):focus {
  background-color: #DDDDDD;
  border-color: #DDDDDD;
  color: #555555;
  cursor: default;
}
.btn i,
.btn svg {
  font-size: 0.875rem;
  margin-right: 0.375rem;
}
.btn-block {
  width: 100%;
}
.btn-square {
  width: 3rem;
  height: 3rem;
  padding: unset;
}
.btn-square i,
.btn-square svg {
  margin: 0;
  font-size: 1.125rem;
}
.btn.btn-sm {
  padding: 0.75rem 1.5rem;
}
.btn.btn-sm.btn-square {
  width: 2.5rem;
  height: 2.5rem;
  padding: unset;
}
.btn.btn-xs {
  padding: 0.5rem 1.5rem;
}
.btn.btn-lg {
  line-height: 1.2;
  font-size: 1rem;
  padding: 1.25rem 1.375rem;
  height: 60px;
}
.btn.btn-lg i,
.btn.btn-lg svg {
  font-size: 1rem;
}
.btn.btn-lg.btn-square {
  width: 3.75rem;
  height: 3.75rem;
  padding: unset;
}
.btn.btn-icon i,
.btn.btn-icon svg {
  margin: 0;
}
.btn.btn-transparency {
  opacity: 0.8;
}
.btn.btn-transparency:hover, .btn.btn-transparency:active, .btn.btn-transparency:focus, .btn.btn-transparency:focus:active {
  opacity: 1;
}
.btn + .btn {
  margin-left: 0.5rem;
}
.btn + .btn-group {
  margin-left: 0.5rem;
}

.btn-primary,
a.btn-primary {
  color: white;
  background: #D43034;
  border-color: #D43034;
}
.btn-primary:hover,
a.btn-primary:hover {
  color: white;
  background: #9A2326;
  border-color: #9A2326;
}
.btn-primary:focus,
a.btn-primary:focus {
  color: white;
  background: #D43034;
  border-color: #262626;
}
.btn-primary:active,
a.btn-primary:active {
  color: white;
  background: #EF787B;
  border-color: #9A2326;
}

.loading-primary {
  background: #DDDDDD !important;
  color: white;
}

.btn-secondary,
a.btn-secondary {
  color: #D43034;
  background: transparent;
  border-color: #D43034;
}
.btn-secondary:hover,
a.btn-secondary:hover {
  color: white;
  background: #D43034;
  border-color: #D43034;
}
.btn-secondary:focus,
a.btn-secondary:focus {
  color: #D43034;
  background: transparent;
  border-color: #D43034;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
}
.btn-secondary:active,
a.btn-secondary:active {
  color: white;
  background: #D43034;
  border-color: #741A1D;
}

.btn-tertiary,
a.btn-tertiary {
  color: #262626;
  background-color: #F2F2F2;
  border-color: #F2F2F2;
}
.btn-tertiary:hover,
a.btn-tertiary:hover {
  color: #262626;
  background-color: #E3E3E3;
  border-color: #E3E3E3;
}
.btn-tertiary:focus,
a.btn-tertiary:focus {
  color: #262626;
  background-color: #F2F2F2;
  border-color: #555555;
}
.btn-tertiary:active,
a.btn-tertiary:active {
  color: white;
  background-color: #6E6E6E;
  border-color: #6E6E6E;
}

.btn-outline,
a.btn-outline {
  color: #262626;
  background: transparent;
  border-color: #262626;
}
.btn-outline:hover,
a.btn-outline:hover {
  color: #262626;
  background: #F5F5F5;
  border-color: #262626;
}
.btn-outline:focus,
a.btn-outline:focus {
  color: #262626;
  background: transparent;
  border-color: #262626;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
}
.btn-outline:active,
a.btn-outline:active {
  color: white;
  background: #262626;
  border-color: #262626;
}

.btn-action,
a.btn-action {
  color: white;
  background: #D43034;
  border-color: #D43034;
}
.btn-action:hover,
a.btn-action:hover {
  color: white;
  background: #9A2326;
  border-color: #9A2326;
}
.btn-action:focus,
a.btn-action:focus {
  color: white;
  background: #D43034;
  border-color: #262626;
}
.btn-action:active,
a.btn-action:active {
  color: white;
  background: #EF787B;
  border-color: #9A2326;
}

.btn-exception,
a.btn-exception {
  color: white;
  background: #D43034;
  border-color: #D43034;
}
.btn-exception:hover,
a.btn-exception:hover {
  color: white;
  background: #9A2326;
  border-color: #9A2326;
}
.btn-exception:focus,
a.btn-exception:focus {
  color: white;
  background: #D43034;
  border-color: #1B4258;
}
.btn-exception:active,
a.btn-exception:active {
  color: white;
  background: #EF787B;
  border-color: #9A2326;
}

.btn-danger,
a.btn-danger {
  color: white;
  background: #741A1D;
  border-color: #741A1D;
}
.btn-danger:hover,
a.btn-danger:hover {
  color: white;
  background: #4D1113;
  border-color: #4D1113;
}
.btn-danger:focus,
a.btn-danger:focus {
  color: white;
  background: #741A1D;
  border-color: #31769E;
}
.btn-danger:active,
a.btn-danger:active {
  color: white;
  background: #31769E;
  border-color: #741A1D;
}

.btn-arrow {
  color: #262626;
  background: white;
  border-color: #262626;
  padding: 0.5rem 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.btn-arrow:hover {
  background: white;
  border-color: #DDDDDD;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
}
.btn-arrow:focus, .btn-arrow:active {
  background: #E9F2F6;
  border-color: #DDDDDD;
}
.btn-arrow i,
.btn-arrow svg {
  font-size: 1.125rem;
  margin-right: 0;
}

.btn-arrow-sm {
  color: #262626;
  background: transparent;
  border-color: #262626;
  padding: 0.5rem 1rem;
}
.btn-arrow-sm:hover {
  background: white;
  border-color: #DDDDDD;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
}
.btn-arrow-sm:focus, .btn-arrow-sm:active {
  background: #E9F2F6;
  border-color: #DDDDDD;
}
.btn-arrow-sm i,
.btn-arrow-sm svg {
  margin-right: 0;
}

.btn-group .btn + .btn {
  margin: 0 0 0 -0.3125rem;
}
.btn-group .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: -0.0625rem;
}
.btn-group .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.siema-slider {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .siema-slider.siema-full-width {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-right: -1rem;
    margin-left: -1rem;
    overflow: unset;
  }
}
@media (max-width: 767.98px) {
  .siema-slider.siema-full-width .siema-slider-wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
.siema-slider .siema-slider-wrapper {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}
@media (max-width: 767.98px) {
  .siema-slider .siema-slider-wrapper {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}
.siema-slider .siema-slider-wrapper .slide {
  position: relative;
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 0.0625rem;
}
@media (max-width: 767.98px) {
  .siema-slider .siema-slider-wrapper .slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}

.siema-pagination {
  position: relative;
  top: -1.5rem;
  margin: -0.6875rem 0;
  text-align: center;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
.siema-pagination.hidden {
  opacity: 0;
  pointer-events: none;
}
.siema-pagination .siema-pagination-bullet {
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: white;
  margin: 0 0.375rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
}
.siema-pagination .siema-pagination-bullet.siema-pagination-bullet-active {
  background-color: #262626;
}

.siema-navigation {
  flex: 1;
  text-align: right;
}
@media (max-width: 991.98px) {
  .siema-navigation {
    display: none;
  }
}
.siema-navigation .btn {
  height: 2rem;
}
.siema-navigation .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.siema-navigation .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: -0.0625rem;
}
.siema-navigation .btn + .btn {
  margin: 0 0 0 -0.3125rem;
}
.siema-navigation .btn:active, .siema-navigation .btn:focus {
  background: inherit;
  border-color: inherit;
  box-shadow: inherit;
}
.siema-navigation .btn:active:hover, .siema-navigation .btn:focus:hover {
  background: white;
  border-color: #DDDDDD;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
}

.section-photos-slider,
.header {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .section-photos-slider,
  .header {
    margin-bottom: 1rem;
  }
}
.section-photos-slider .container,
.header .container {
  position: relative;
}
@media (max-width: 767.98px) {
  .section-photos-slider .container .single-image-wrapper,
  .header .container .single-image-wrapper {
    margin: 0 -1rem;
  }
}
.section-photos-slider .btn-arrow,
.header .btn-arrow {
  display: none;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
  opacity: 0.9;
}
.section-photos-slider .btn-arrow:hover,
.header .btn-arrow:hover {
  transform: scale(1.1);
  opacity: 1;
}
.section-photos-slider .btn-arrow.btn-slider-photos-prev,
.header .btn-arrow.btn-slider-photos-prev {
  position: absolute;
  top: calc(50% - 3.25rem);
  left: 2rem;
}
@media (max-width: 991.98px) {
  .section-photos-slider .btn-arrow.btn-slider-photos-prev,
  .header .btn-arrow.btn-slider-photos-prev {
    display: none;
  }
}
.section-photos-slider .btn-arrow.btn-slider-photos-prev > svg,
.header .btn-arrow.btn-slider-photos-prev > svg {
  margin-left: -0.125rem;
}
.section-photos-slider .btn-arrow.btn-slider-photos-next,
.header .btn-arrow.btn-slider-photos-next {
  position: absolute;
  top: calc(50% - 3.25rem);
  right: 2rem;
}
@media (max-width: 991.98px) {
  .section-photos-slider .btn-arrow.btn-slider-photos-next,
  .header .btn-arrow.btn-slider-photos-next {
    display: none;
  }
}
.section-photos-slider .btn-arrow.btn-slider-photos-next > svg,
.header .btn-arrow.btn-slider-photos-next > svg {
  margin-right: -0.125rem;
}

@media (max-width: 767.98px) {
  .slider-photos {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.slider-photos:not([style]) {
  display: flex;
  overflow: hidden;
}
.slider-photos:not([style]) .slide {
  min-width: 100%;
}
.slider-photos .slide {
  max-height: 26rem;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .slider-photos .slide {
    max-height: 29rem;
  }
}
@media (max-width: 991.98px) {
  .slider-photos .slide {
    max-height: 21.5rem;
  }
}
@media (max-width: 767.98px) {
  .slider-photos .slide {
    max-height: 13.375rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.slider-photos .legal-information {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.slider-photos .legal-information .legal-information-toggle {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.625rem;
  font-weight: 700;
  color: #262626;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background-color: white;
  border: 0;
  border-radius: 0 0 0 0.25rem;
  transition: all 0.4s ease-in-out;
}
.slider-photos .legal-information .legal-information-toggle.show {
  opacity: 0;
}
.slider-photos .legal-information .legal-information-toggle:hover, .slider-photos .legal-information .legal-information-toggle:active, .slider-photos .legal-information .legal-information-toggle:focus {
  outline: none;
  cursor: pointer;
}
.slider-photos .legal-information .legal-information-dismiss {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #262626;
  padding: 0.75rem;
  background-color: transparent;
  border: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.slider-photos .legal-information .legal-information-dismiss:hover, .slider-photos .legal-information .legal-information-dismiss:active, .slider-photos .legal-information .legal-information-dismiss:focus {
  outline: none;
  cursor: pointer;
}
.slider-photos .legal-information .legal-information-dismiss.show {
  opacity: 1;
}
.slider-photos .legal-information .content {
  font-size: 0.625rem;
  color: #555555;
  padding: 0 0.75rem;
  background-color: white;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.slider-photos .legal-information .content.show {
  height: auto;
  max-height: 8.75rem;
  padding: 0.5rem 1.5rem 0.5rem 0.75rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-photos .legal-information .content.show::-webkit-scrollbar-thumb {
  background: transparent;
  border: 0;
}
.slider-photos .legal-information .content.show::-webkit-scrollbar-track {
  background: transparent;
}
.slider-photos .legal-information .content.show::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991.98px) {
  .slider-photos .legal-information .content.show {
    max-height: 7.5rem;
  }
}

.siema-pagination {
  margin: 0;
  padding: 1rem 0;
  top: unset;
}
@media (max-width: 767.98px) {
  .siema-pagination {
    padding: 0.5rem 0;
  }
}
.siema-pagination .siema-pagination-bullet {
  height: 0.5rem;
  width: 1rem;
  background-color: #DDDDDD;
  border-radius: 1.875rem;
  box-shadow: none;
  cursor: pointer;
}
.siema-pagination .siema-pagination-bullet-active {
  background-color: #D43034 !important;
}

/* =============================
	Images Slider Block
============================= */
#ImageAndTextModule #ImageContainer {
  position: relative;
  top: -2.8125rem;
  z-index: 0;
}
#ImageAndTextModule #ImageContainer.no-text {
  top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
  #ImageAndTextModule #ImageContainer.no-text {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  #ImageAndTextModule #ImageContainer {
    margin-left: -15px;
    margin-right: -15px;
  }
}
#ImageAndTextModule #ImageContainer picture img {
  width: 100%;
}
#ImageAndTextModule #TextContainer {
  position: relative;
  z-index: 1;
  background-color: #fff;
  opacity: 0.95;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  padding: 1.25rem 0.625rem;
  max-width: 92%;
  margin: 0 auto;
}
#ImageAndTextModule #TextContainer hgroup {
  text-align: center;
  color: #00516b;
}
#ImageAndTextModule #TextContainer hgroup h1 {
  margin-bottom: 0;
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
}
#ImageAndTextModule #TextContainer hgroup h4 {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
@media (max-width: 767.98px) {
  #ImageAndTextModule #TextContainer hgroup h4 {
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-variation-settings: "opsz" 14;
  }
}
#ImageAndTextModule #TextContainer hgroup h2 {
  font-size: 1.625rem;
  line-height: 1.18;
}
#ImageAndTextModule #TextContainer hgroup h2 strong {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  #ImageAndTextModule #TextContainer hgroup h2 {
    font-size: 1.375rem;
    line-height: 1.625rem;
  }
}
#ImageAndTextModule #TextContainer hgroup h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media (max-width: 767.98px) {
  #ImageAndTextModule #TextContainer hgroup h3 {
    margin-top: 0.375rem;
    font-size: 0.875rem;
    font-variation-settings: "opsz" 14;
  }
}

#ImageAndTextModule {
  position: relative;
  margin-top: 0;
  margin-bottom: -1.625rem;
}
@media (max-width: 767.98px) {
  #ImageAndTextModule {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  #ImageAndTextModule.no-pharmacy .section-photos-slider {
    top: 0;
  }
}
#ImageAndTextModule.welcome-box-hidden {
  margin-bottom: 0;
}
#ImageAndTextModule.welcome-box-hidden .section-photos-slider {
  top: 0;
}
#ImageAndTextModule .section-photos-slider {
  position: relative;
  z-index: 0;
  top: -2.8125rem;
}
#ImageAndTextModule .section-photos-slider .slider-photos {
  position: relative;
  z-index: 1;
}
#ImageAndTextModule .section-photos-slider .slider-photos .slide .legal-information {
  right: 0;
  left: 0;
}
#ImageAndTextModule .section-photos-slider .slider-pagination {
  z-index: 1;
}
@media (min-width: 992px) {
  #ImageAndTextModule .section-photos-slider .slider-pagination {
    top: -2rem;
  }
}
#ImageAndTextModule .section-photos-slider .btn-slider-photos-prev,
#ImageAndTextModule .section-photos-slider .btn-slider-photos-next {
  z-index: 1;
}
#ImageAndTextModule #TextContainer h2 {
  margin-top: 0;
}
#ImageAndTextModule #ImageContainer {
  top: -1.125rem;
}
#ImageAndTextModule.no-pharmacy {
  margin-bottom: 0;
}
#ImageAndTextModule.no-pharmacy #ImageContainer {
  top: 0;
}
#ImageAndTextModule.headerslider-block .section-slider {
  margin-top: -1.125rem;
}
@media (max-width: 767.98px) {
  #ImageAndTextModule.headerslider-block .section-slider {
    margin-top: 0;
  }
}
#ImageAndTextModule .one-slide {
  position: relative;
}
#ImageAndTextModule .one-slide .legal-information {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#ImageAndTextModule .one-slide .legal-information .legal-information-toggle {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.625rem;
  font-weight: 700;
  color: #262626;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background-color: white;
  border: 0;
  border-radius: 0 0 0 4px;
  transition: all 0.4s ease-in-out;
}
#ImageAndTextModule .one-slide .legal-information .legal-information-toggle.show {
  opacity: 0;
}
#ImageAndTextModule .one-slide .legal-information .legal-information-toggle:hover, #ImageAndTextModule .one-slide .legal-information .legal-information-toggle:active, #ImageAndTextModule .one-slide .legal-information .legal-information-toggle:focus {
  outline: none;
  cursor: pointer;
}
#ImageAndTextModule .one-slide .legal-information .legal-information-dismiss {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #262626;
  padding: 0.75rem;
  background-color: transparent;
  border: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
#ImageAndTextModule .one-slide .legal-information .legal-information-dismiss:hover, #ImageAndTextModule .one-slide .legal-information .legal-information-dismiss:active, #ImageAndTextModule .one-slide .legal-information .legal-information-dismiss:focus {
  outline: none;
  cursor: pointer;
}
#ImageAndTextModule .one-slide .legal-information .legal-information-dismiss.show {
  opacity: 1;
}
#ImageAndTextModule .one-slide .legal-information .content {
  font-size: 0.625rem;
  color: #555555;
  padding: 0 0.75rem;
  background-color: #F5F5F5;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
#ImageAndTextModule .one-slide .legal-information .content.show {
  height: 8.75rem;
  padding: 0.5rem 1.5rem 0.5rem 0.75rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#ImageAndTextModule .one-slide .legal-information .content.show::-webkit-scrollbar-thumb {
  background: transparent;
  border: 0;
}
#ImageAndTextModule .one-slide .legal-information .content.show::-webkit-scrollbar-track {
  background: transparent;
}
#ImageAndTextModule .one-slide .legal-information .content.show::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991.98px) {
  #ImageAndTextModule .one-slide .legal-information .content.show {
    height: 7.5rem;
  }
}
