@font-face {
  font-family: Raleway;
  font-weight: 400;
  src: url("fonts/Raleway-Regular.ttf");
}
@font-face {
  font-family: Raleway;
  font-weight: 600;
  src: url("fonts/Raleway-SemiBold.ttf");
}
@font-face {
  font-family: Raleway;
  font-weight: 700;
  src: url("fonts/Raleway-Bold.ttf");
}
@font-face {
  font-family: Raleway;
  font-weight: 800;
  src: url("fonts/Raleway-ExtraBold.ttf");
}
@font-face {
  font-family: Raleway;
  font-weight: 900;
  src: url("fonts/Raleway-Black.ttf");
}
.text-orange {
  color: #F39100;
}

.text-white {
  color: #ffffff;
}

.text-primary-blue {
  color: #0050A0;
}

.text-dark-grey {
  color: #405065;
}

.border-grey {
  border: 1px solid rgba(80, 100, 127, 0.2);
}

.bg-white {
  background: #ffffff !important;
}

.bg-primary-40 {
  background-color: #003060;
}

.bg-light-blue {
  background-color: #F2F6FA;
}

.bg-grey-blue {
  background-color: #A0C2EA;
}

.bg-gradient-light-blue {
  background: linear-gradient(180deg, #E6EDF5 0%, #F2F6FA 100%);
}

.bg-gradient-blue {
  background: linear-gradient(93.45deg, #0050A0 -0.43%, #003060 100%);
}

.bg-mulberry {
  background-color: #8C1E82;
}

.bg-light-red {
  background-color: #FF6369;
}

.bg-orange {
  background-color: #F39100;
}

.bg-ultra-light-blue {
  background-color: #9499EA;
}

.bg-light-grey {
  background: #BFBFBF;
}
.bg-light-grey.form-control {
  background: rgba(191, 191, 191, 0.4);
}
.bg-light-grey.opacity-3 {
  background: rgba(191, 191, 191, 0.3);
}

.cursor-pointer {
  cursor: pointer;
}

.pointer-event-all {
  pointer-events: all;
}

.box-shadow-0 {
  box-shadow: none !important;
}

.mw-auto {
  max-width: 100% !important;
}

.btn-primary-gradient {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #F39100 0%, #FFBB56 100%);
}
.btn-primary-gradient:hover {
  color: #ffffff;
}

body {
  color: #405065;
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  padding-top: 85px;
}
body:has(#complete-profile-form) {
  padding-top: 130px;
}

h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.083em;
}

h2,
.h2 {
  color: #50647F;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25em;
  margin-bottom: 1rem;
}

h3 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.273em;
  color: #50647F;
}

.pointer-event-none {
  pointer-events: none !important;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

b, .fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.content-divider {
  height: 4px;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .gender-margin {
    justify-content: space-between;
  }
  .gender-margin > .form-check {
    margin-right: 0 !important;
  }
}

.backend-page {
  padding-top: 7rem;
}

.navbar-logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .navbar-logo-center {
    transform: translateX(-50%);
    top: 25px;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .navbar-logo-center.navbar-logo-center-xl {
    transform: translateX(-50%);
    top: 25px;
  }
}

.form-check-wrapper.custom-radio > .form-check input {
  border: 1px solid #A0C2EA !important;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  position: relative;
  appearance: none;
}
.form-check-wrapper.custom-radio > .form-check input:checked {
  background-color: transparent;
}
.form-check-wrapper.custom-radio > .form-check input:checked:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #F39100;
}
.form-check-wrapper > .form-check {
  margin-right: 4rem;
  display: flex;
  align-items: center;
}
.form-check-wrapper > .form-check label {
  padding-top: 2px;
}

footer {
  font-size: 13px;
}
footer .footer-content-wrapper {
  max-width: 85vw;
  margin: 0 auto;
}
footer .footer-content-wrapper .border-bottom {
  opacity: 0.2;
  border-bottom: 2px solid #FFFFFF;
}
footer .footer-content-wrapper > .row:first-of-type {
  height: 40px;
}
footer .footer-content-wrapper ul .nav-item:not(:last-of-type) {
  margin-right: 36px;
}
footer .footer-content-wrapper ul .nav-item > .nav-link {
  color: #ffffff;
}

.form-label.required:after,
.form-check-label.required:after {
  content: "*";
}

.custom-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.custom-modal:not(.show) {
  display: none;
}
.custom-modal .custom-modal-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 80, 160, 0.5);
  backdrop-filter: blur(5px);
}
.custom-modal .custom-modal-cross {
  position: absolute;
  top: 2rem;
  right: calc(2rem - 16px);
  display: inline-flex;
  cursor: pointer;
}
.custom-modal.verified-popup .custom-modal-background {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1.5px);
}
.custom-modal .custom-modal-title {
  color: #50647F;
}
@media (max-width: 991.98px) {
  .custom-modal .custom-modal-title {
    font-size: 28px;
    font-weight: 900;
  }
}
.custom-modal.custom-modal-auto-width > .custom-modal-content {
  max-width: unset;
  width: auto;
}
@media (max-width: 991.98px) {
  .custom-modal.custom-modal-auto-width > .custom-modal-content {
    width: 95%;
    max-height: 100%;
    overflow-y: scroll;
  }
}
.custom-modal .custom-modal-content {
  position: absolute;
  max-width: 504px;
  width: 90%;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 3rem 2rem;
}
@media (min-width: 992px) {
  .custom-modal .custom-modal-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 991.98px) {
  .custom-modal .custom-modal-content {
    top: 15px;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.custom-modal .custom-modal-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: linear-gradient(93.45deg, #0050A0 -0.43%, #003060 100%);
  border-radius: 5px 5px 0 0;
}
.custom-modal .custom-modal-content .hcp-verification-uploaded-file-name {
  background-color: rgba(191, 191, 191, 0.2);
  border: 1px solid #50647F;
  border-radius: 3px;
  color: #0050A0;
  padding: 10px 20px;
  display: inline-block;
}
.custom-modal .custom-modal-content .hcp-verification-uploaded-file-loader img {
  animation: rotation 2s infinite linear;
}
.custom-modal .custom-modal-content .custom-modal-gastro-expert-content ul {
  margin: 0 0 0 20px;
  padding: 0;
  list-style: none;
}
.custom-modal .custom-modal-content .custom-modal-gastro-expert-content ul li {
  position: relative;
  padding-left: 30px;
}
.custom-modal .custom-modal-content .custom-modal-gastro-expert-content ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.custom-modal .custom-modal-content .custom-modal-gastro-expert-content ul li:before {
  content: attr(data-number) ".";
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  background-color: #2DAFE6;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  left: -24px;
  top: 0;
  z-index: -1;
  text-align: center;
}
.custom-modal .custom-modal-content .custom-modal-gastro-expert-content ul li::marker {
  content: unset !important;
  display: none !important;
}
.custom-modal .custom-modal-action {
  margin-top: 3rem;
}

.material {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.material .description {
  flex-grow: 1;
}

#footer .active {
  color: #405065;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.learning-box {
  background-color: #ffffff;
  width: 100%;
  min-height: 182px;
  height: 100%;
  border-radius: 3px;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
  display: flex;
  flex-direction: column;
}
.learning-box.learning-completed {
  background-color: #003060;
  color: #ffffff;
}
.learning-box.learning-completed .learning-box-text {
  position: relative;
}
.learning-box.learning-completed .learning-box-text:after {
  content: " ";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icons/mark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.learning-box .learning-box-image {
  position: relative;
}
.learning-box .learning-box-image span {
  position: absolute;
  background-color: #0050A0;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 3px;
  padding: 5px 12px;
  bottom: 0;
  right: 0;
}
.learning-box .learning-box-image span.bg-secondary-blue:before {
  border-color: transparent #2DAFE6 transparent transparent;
}
.learning-box .learning-box-image span:before {
  content: "\a";
  border-style: solid;
  border-width: 13px 13px 0px 0px;
  border-color: transparent #0050A0 transparent transparent;
  position: absolute;
  left: -11px;
  bottom: 0;
}
.learning-box .learning-box-text {
  padding: 0 2rem;
  font-weight: 800;
  font-size: 22px;
  height: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.elearning-fill-box {
  height: 232px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2rem;
}
.elearning-fill-box .elearning-fill-box-border {
  border-style: dashed;
  border-image-source: url(../img/dashed_line_fill.png);
  border-image-slice: 2;
  border-image-repeat: round;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.elearning-fill-box .elearning-fill-box-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.elearning-pro-box {
  width: 100%;
  height: 400px;
  border-radius: 3px;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
  margin-top: 85px;
}
.elearning-pro-box.code-redeemed {
  margin-top: 115px;
}
.elearning-pro-box.disabled .elearning-pro-box-footer > * {
  opacity: 0.2;
}
.elearning-pro-box.disabled .elearning-pro-box-footer .btn.btn-primary {
  background-color: #BFBFBF !important;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .elearning-pro-box {
    margin-top: 140px;
  }
}
.elearning-pro-box .elearning-pro-box-header,
.elearning-pro-box .elearning-pro-box-footer {
  background-color: #ffffff;
  padding: 12px 23px;
}
.elearning-pro-box .elearning-pro-box-header {
  position: relative;
}
.elearning-pro-box .elearning-pro-box-header .elearning-pro-box-header-image {
  margin-top: -40%;
  text-align: center;
}
@media (max-width: 991.98px) {
  .elearning-pro-box .elearning-pro-box-header .elearning-pro-box-header-image {
    margin-top: -17%;
  }
}
@media (max-width: 767.98px) {
  .elearning-pro-box .elearning-pro-box-header .elearning-pro-box-header-image {
    margin-top: -23%;
  }
}
.elearning-pro-box .elearning-pro-box-header .elearning-pro-box-header-title {
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  color: #50647F;
  text-align: center;
}
.elearning-pro-box .elearning-pro-box-footer {
  text-align: center;
}
.elearning-pro-box .elearning-pro-box-footer a {
  color: #F39100;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
.elearning-pro-box .elearning-pro-box-footer a img {
  margin-left: 15px;
}
.elearning-pro-box .elearning-pro-box-club {
  background-color: #003060;
  padding: 20px;
  text-align: center;
  position: relative;
}
.elearning-pro-box .elearning-pro-box-club:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: #F39100;
  border-radius: 0px 0px 3px 3px;
  width: 100%;
  height: 4px;
}
.elearning-pro-box .elearning-pro-box-club a {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}
.elearning-pro-box .elearning-pro-box-divider {
  display: flex;
  position: relative;
}
.elearning-pro-box .elearning-pro-box-divider:after {
  content: "";
  display: block;
  opacity: 0.2;
  height: 2px;
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  top: 9px;
  background-image: url(../img/icons/dashed_line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.elearning-pro-box .elearning-pro-box-divider.elearning-pro-box-divider-blue-white > .elearning-pro-box-divider-item:first-of-type {
  background: linear-gradient(180deg, #003060 0%, #003060 50%, #ffffff 50%, #ffffff 100%);
}
.elearning-pro-box .elearning-pro-box-divider.elearning-pro-box-divider-blue-white > .elearning-pro-box-divider-item:last-of-type {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #003060 50%, #003060 100%);
}
.elearning-pro-box .elearning-pro-box-divider > .elearning-pro-box-divider-item {
  background: #ffffff;
  height: 20px;
  width: 50%;
  -webkit-mask-image: url(../img/icons/circle.svg), linear-gradient(#000, #000);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: -26px 50%, 100% 100%;
  -webkit-mask-size: 20px 20px, 100% 100%;
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}
.elearning-pro-box .elearning-pro-box-divider > .elearning-pro-box-divider-item:first-of-type {
  transform: rotate(180deg);
}

.progress-tracker .elearning-box {
  width: 100%;
  height: 232px;
  background-color: #ffffff;
  border-radius: 3px;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
  padding: 2.5rem 2rem;
}
.progress-tracker .elearning-box.first-elearning .elearning-box-start {
  display: block;
}
.progress-tracker .elearning-box.first-elearning .elearning-box-finished {
  display: none;
}
.progress-tracker .elearning-box .elearning-box-start {
  display: none;
}
.progress-tracker .elearning-box.elearning-completed {
  background-color: #003060;
  color: #ffffff;
}
.progress-tracker .elearning-box.elearning-completed .elearning-box-content .elearning-box-slides {
  color: #ffffff;
  opacity: 0.7;
}
.progress-tracker .elearning-box.elearning-completed .elearning-box-content .elearning-box-finished {
  position: relative;
  color: #ffffff;
}
.progress-tracker .elearning-box.elearning-completed .elearning-box-content .elearning-box-finished:after {
  content: " ";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  right: -1rem;
  top: 0;
  background-image: url(../img/icons/mark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.progress-tracker .elearning-box.elearning-completed .elearning-box-content .elearning-box-finished:before {
  background-image: url(../img/icons/clock.svg);
}
.progress-tracker .elearning-box .elearning-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progress-tracker .elearning-box .elearning-box-header .elearning-box-header-text {
  margin-left: 1rem;
}
.progress-tracker .elearning-box .elearning-box-header .elearning-box-title {
  font-size: 22px;
  font-weight: 800;
}
.progress-tracker .elearning-box .elearning-box-content {
  margin-top: 1rem;
  padding-left: 2rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.progress-tracker .elearning-box .elearning-box-content .elearning-box-finished {
  color: #BFBFBF;
  position: relative;
}
.progress-tracker .elearning-box .elearning-box-content .elearning-box-finished:before {
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -1.5rem;
  top: 2px;
  background-image: url(../img/icons/clock_grey.svg);
}

.user-profile-button {
  appearance: none;
  color: #F39100;
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  font-weight: 700;
}

.elearning-large-box {
  display: flex;
  box-shadow: 0px 1px 20px 0px rgba(0, 80, 160, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.elearning-large-box .elearning-large-box-play-button {
  position: absolute;
  left: -26px;
  bottom: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #F39100;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .elearning-large-box .elearning-large-box-play-button {
    display: none;
  }
}
.elearning-large-box .elearning-large-box-play-button:before {
  content: " ";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="27" height="27" viewBox="0 0 27 27" fill="none"><path d="M19.8881 12.1191L8.83579 5.21232C8.67101 5.10935 8.48167 5.05236 8.28743 5.04725C8.09319 5.04214 7.90112 5.08911 7.73115 5.18327C7.56118 5.27743 7.4195 5.41535 7.32082 5.58274C7.22213 5.75012 7.17003 5.94086 7.16993 6.13517V19.9495C7.1691 20.1442 7.2206 20.3356 7.31904 20.5035C7.41748 20.6715 7.55925 20.8099 7.72952 20.9044C7.89979 20.9988 8.09231 21.0457 8.28692 21.0402C8.48154 21.0347 8.6711 20.9771 8.83579 20.8732L19.8881 13.9664C20.0447 13.8684 20.1737 13.7323 20.2632 13.5707C20.3527 13.4091 20.3997 13.2275 20.3997 13.0428C20.3997 12.8581 20.3527 12.6764 20.2632 12.5148C20.1737 12.3533 20.0447 12.2171 19.8881 12.1191Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.elearning-large-box .elearning-large-box-button-text:before {
  content: attr(data-button-text);
}
.elearning-large-box[data-new="1"] {
  position: relative;
}
.elearning-large-box[data-new="1"]:before {
  content: "NEU";
  color: #ffffff;
  padding-top: 3px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 800;
  width: 62px;
  height: 30px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="62" height="30" viewBox="0 0 62 30" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.7322 0.127616L55.3756 0.12762C55.8293 0.12762 62 0.119249 62 0.119249L57.4455 7.19043C57.0412 7.51612 56.8019 8.00346 56.7916 8.52183L56.7916 26.3728C56.7916 28.067 55.1121 29.4531 53.0594 29.4531L3.73219 29.4531C1.67945 29.4531 1.21442e-07 28.067 2.69878e-07 26.3728L2.30576e-06 3.13577C2.45156e-06 1.47173 1.35416 0.125367 3.01821 0.127213C3.24947 0.127471 3.4882 0.127616 3.7322 0.127616Z" fill="%23F39100"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.elearning-large-box.elearning-completed > .elearning-large-box-container {
  background: #003060;
  color: #ffffff;
  position: relative;
}
.elearning-large-box.elearning-completed > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header {
  color: #BFBFBF;
}
.elearning-large-box.elearning-completed > .elearning-large-box-container:after {
  content: " ";
  display: block;
  background-image: url(../img/icons/award_necklace.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.elearning-large-box > .elearning-large-box-container {
  background: #ffffff;
  padding: 35px 30px 15px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.elearning-large-box > .elearning-large-box-container .elearning-large-box-progress-wrapper {
  margin-top: -2px;
}
.elearning-large-box > .elearning-large-box-container .elearning-large-box-progress-wrapper .elearning-large-box-progress-text {
  font-size: 12px;
  font-weight: 700;
  color: #F39100;
}
.elearning-large-box > .elearning-large-box-container .elearning-large-box-progress-wrapper .elearning-large-box-progress-bar {
  margin-top: -2px;
  border-radius: 6px;
  width: 120px;
  height: 4px;
  background: linear-gradient(0deg, #E6EDF5 0%, #F2F6FA 100%);
  position: absolute;
  overflow: hidden;
}
.elearning-large-box > .elearning-large-box-container .elearning-large-box-progress-wrapper .elearning-large-box-progress-bar:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, #F39100 0%, #FFBB56 100%);
}
.elearning-large-box > .elearning-large-box-container .elearning-large-box-button {
  text-align: right;
}
.elearning-large-box > .elearning-large-box-container .elearning-large-box-button > a {
  color: #F39100;
  text-decoration: none;
  font-weight: 700;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars:before {
  content: attr(data-stars-exact);
  display: inline-block;
  color: #F39100;
  margin-right: 2px;
  margin-bottom: 3px;
  font-size: 12px;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars > span {
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/elearning/ratings/star_unfilled.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="1"] > span:nth-of-type(1), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="2"] > span:nth-of-type(1), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="3"] > span:nth-of-type(1), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="4"] > span:nth-of-type(1), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="5"] > span:nth-of-type(1) {
  background-image: url("../img/elearning/ratings/star_filled.svg");
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="2"] > span:nth-of-type(2), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="3"] > span:nth-of-type(2), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="4"] > span:nth-of-type(2), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="5"] > span:nth-of-type(2) {
  background-image: url("../img/elearning/ratings/star_filled.svg");
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="3"] > span:nth-of-type(3), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="4"] > span:nth-of-type(3), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="5"] > span:nth-of-type(3) {
  background-image: url("../img/elearning/ratings/star_filled.svg");
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="4"] > span:nth-of-type(4), .elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="5"] > span:nth-of-type(4) {
  background-image: url("../img/elearning/ratings/star_filled.svg");
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-stars[data-stars="5"] > span:nth-of-type(5) {
  background-image: url("../img/elearning/ratings/star_filled.svg");
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-header > .elearning-large-box-header-text {
  color: #2DAFE6;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-title {
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 1rem;
}
.elearning-large-box > .elearning-large-box-container > .elearning-large-box-content > .elearning-large-box-teaser {
  margin-bottom: 1.5rem;
}

.elearning-filter-wrapper {
  position: relative;
}
.elearning-filter-wrapper .elearning-filter-text {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #0050A0;
}
.elearning-filter-wrapper .elearning-filter-text.active + .elearning-filter-content {
  display: block;
}
.elearning-filter-wrapper .elearning-filter-content {
  display: none;
  background: #ffffff;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.2);
  padding: 23px 18px;
}
.elearning-filter-wrapper .elearning-filter-content .form-check:not(:last-of-type) {
  margin-bottom: 14px;
}
.elearning-filter-wrapper .elearning-filter-content .form-check:last-of-type {
  margin-bottom: 0;
}
.elearning-filter-wrapper .elearning-filter-content .form-check > .form-check-input {
  background-color: #BFBFBF;
  border: none !important;
  background-image: none !important;
}
.elearning-filter-wrapper .elearning-filter-content .form-check > .form-check-input:checked {
  background-color: #BFBFBF !important;
  border: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.elearning-filter-wrapper .elearning-filter-content .form-check > .form-check-input:checked:after {
  background-image: none !important;
  width: 11px;
  height: 11px;
  background-color: #DB8200;
  opacity: 0.7;
  border-radius: 2px;
}
.elearning-filter-wrapper .elearning-filter-content .form-check > .form-check-label {
  padding-top: 3px;
  padding-left: 15px;
}

.public-content a:not(.btn-primary) {
  color: #F39100;
  font-weight: 700;
  text-decoration: none;
}
.public-content .breadcrumb .breadcrumb-item a {
  font-weight: normal !important;
}
.public-content .anchor-arrow {
  position: relative;
  margin-right: 30px;
}
.public-content .anchor-arrow:hover:after {
  right: -30px;
}
.public-content .anchor-arrow:after {
  content: " ";
  width: 16px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  background-image: url("../img/frontpage/link_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 300ms ease-out;
}
@media (max-width: 991.98px) {
  .public-content h1 {
    font-size: 67px !important;
  }
}
.public-content .breadcrumb {
  margin-top: 0 !important;
  margin-bottom: 50px;
}
.public-content .breadcrumb a {
  color: #50647F;
}
.public-content .floating-box {
  display: flex;
  box-shadow: 0px 1px 20px 0px rgba(0, 80, 160, 0.2);
  margin: 0 auto;
}
.public-content .floating-box:not(.floating-box-white) {
  background: linear-gradient(180deg, #E6EDF5 0%, #F2F6FA 100%);
}
.public-content .floating-box.floating-box-white {
  background: #ffffff;
}
.public-content .floating-box > .floating-box-image {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991.98px) {
  .public-content .floating-box {
    flex-direction: column;
  }
  .public-content .floating-box > .floating-box-image img.floating-box-image-desktop {
    display: none;
  }
  .public-content .floating-box > .floating-box-content > h2 {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  .public-content .floating-box > .floating-box-content > .floating-box-quote {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}
@media (min-width: 992px) {
  .public-content .floating-box > .floating-box-image img.floating-box-image-mobile {
    display: none;
  }
}
.public-content .floating-box:not(.floating-box-text-left) .floating-box-image-desktop {
  margin-top: 50px;
}
.public-content .floating-box:not(.floating-box-text-left) > .floating-box-content {
  padding: 32px 20px;
  justify-content: center;
}
.public-content .floating-box:not(.floating-box-text-left) > .floating-box-content h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
}
.public-content .floating-box:not(.floating-box-text-left) > .floating-box-content .floating-box-quote {
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 27.5px;
  max-width: 450px;
  margin: 0 auto;
}
.public-content .floating-box.floating-box-text-left {
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .public-content .floating-box.floating-box-text-left .floating-box-image {
    display: unset;
  }
  .public-content .floating-box.floating-box-text-left .floating-box-image img {
    width: 100%;
  }
}
.public-content .floating-box.floating-box-text-left .floating-box-image-desktop {
  height: 100%;
  object-fit: cover;
}
.public-content .floating-box.floating-box-text-left > .floating-box-content {
  padding: 40px 60px;
}
@media (min-width: 992px) {
  .public-content .floating-box.floating-box-text-left > .floating-box-content h3 {
    max-width: 545px;
  }
  .public-content .floating-box.floating-box-text-left > .floating-box-content p {
    max-width: 750px;
  }
}
@media (max-width: 991.98px) {
  .public-content .floating-box.floating-box-text-left > .floating-box-content {
    padding: 40px 20px;
  }
  .public-content .floating-box.floating-box-text-left > .floating-box-content h3 {
    font-size: 28px;
    font-weight: 900;
    line-height: 34px;
  }
}
.public-content .floating-box.floating-box-text-left > .floating-box-content h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
}
.public-content .floating-box.floating-box-text-left > .floating-box-content .floating-box-quote {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.public-content .floating-box > .floating-box-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.public-content .public-elearning-box {
  background-color: #ffffff;
  border-radius: 3px;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
  padding: 2.5rem 2rem;
  height: 100%;
}
.public-content .public-elearning-box .public-elearning-box-row {
  color: #50647F;
  display: flex;
}
.public-content .public-elearning-box .public-elearning-box-row .public-elearning-box-headline {
  font-size: 16px;
}
.public-content .public-elearning-box .public-elearning-box-row .public-elearning-box-headline span {
  font-size: 22px;
  font-weight: 800;
}
.public-content .public-elearning-box .public-elearning-box-row:first-of-type {
  gap: 20px;
  margin-bottom: 25px;
}
.public-content .public-elearning-box .public-elearning-box-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.public-content .public-speech-bubble-speaker-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.public-content .public-speech-bubble-speaker-wrapper.public-speech-bubble-speaker-with-speaker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.public-content .public-speech-bubble-speaker-wrapper.public-speech-bubble-speaker-with-speaker .public-speech-bubble-wrapper {
  margin-right: 110px;
}
.public-content .public-speech-bubble-speaker-wrapper.public-speech-bubble-speaker-with-speaker .public-speech-bubble-speaker-wrapper {
  margin-top: 30px;
}
.public-content .public-speech-bubble-speaker-wrapper:not(.public-speech-bubble-speaker-with-speaker) .public-bubble-speaker-wrapper {
  display: none;
}
.public-content .public-speech-bubble-speaker-wrapper .public-speech-bubble-wrapper {
  position: relative;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
}
.public-content .public-speech-bubble-speaker-wrapper .public-speech-bubble-wrapper .public-speech-bubble {
  color: #0050A0;
  font-size: 16px;
  line-height: 24px;
  background-color: #ffffff;
  padding: 28px 35px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}
.public-content .public-speech-bubble-speaker-wrapper .public-speech-bubble-wrapper .public-speech-bubble.public-speech-bubble-arrow-right {
  border-bottom-left-radius: 15px;
}
.public-content .public-speech-bubble-speaker-wrapper .public-speech-bubble-wrapper .public-speech-bubble.public-speech-bubble-arrow-right:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid #ffffff;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -7px;
  transform: rotate(237deg);
}
.public-content .public-speech-bubble-speaker-wrapper .public-speech-bubble-wrapper .public-speech-bubble.public-speech-bubble-arrow-left {
  border-bottom-right-radius: 15px;
}
.public-content .public-speech-bubble-speaker-wrapper .public-speech-bubble-wrapper .public-speech-bubble.public-speech-bubble-arrow-left:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid #ffffff;
  filter: drop-shadow(0px 1px 20px rgba(0, 80, 160, 0.2));
  position: absolute;
  z-index: -1;
  left: -18px;
  bottom: -7px;
  transform: rotate(124deg);
}
.public-content .public-speech-bubble-speaker-wrapper .public-bubble-speaker-wrapper {
  right: 0;
}

.back-to-top {
  margin: 30px 0;
  color: #F39100;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-right: 35px;
}
.back-to-top:after {
  content: " ";
  width: 16px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%) rotate(-90deg);
  background-image: url("../img/frontpage/link_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 300ms ease-out;
}

.link-download {
  color: #F39100;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.link-download:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.1899 13.8398H3.18994C2.95557 13.8398 2.757 13.7585 2.59424 13.5957C2.43148 13.4329 2.3501 13.2344 2.3501 13V3C2.3501 2.76562 2.43148 2.56706 2.59424 2.4043C2.757 2.24154 2.95557 2.16016 3.18994 2.16016H7.3501C7.58447 2.16016 7.78304 2.07878 7.9458 1.91602C8.10856 1.75325 8.18994 1.5612 8.18994 1.33984C8.18994 1.10547 8.10856 0.906901 7.9458 0.744141C7.78304 0.58138 7.58447 0.5 7.3501 0.5H2.3501C1.89437 0.5 1.50374 0.662761 1.17822 0.988281C0.852702 1.3138 0.689941 1.70443 0.689941 2.16016V13.8398C0.689941 14.2956 0.852702 14.6862 1.17822 15.0117C1.50374 15.3372 1.89437 15.5 2.3501 15.5H14.0298C14.4855 15.5 14.8761 15.3372 15.2017 15.0117C15.5272 14.6862 15.6899 14.2956 15.6899 13.8398V8.83984C15.6899 8.60547 15.6086 8.4069 15.4458 8.24414C15.283 8.08138 15.0845 8 14.8501 8C14.6287 8 14.4367 8.08138 14.2739 8.24414C14.1112 8.4069 14.0298 8.60547 14.0298 8.83984V13C14.0298 13.2344 13.9484 13.4329 13.7856 13.5957C13.6229 13.7585 13.4243 13.8398 13.1899 13.8398ZM9.8501 1.33984C9.8501 1.5612 9.93148 1.75325 10.0942 1.91602C10.257 2.07878 10.4556 2.16016 10.6899 2.16016H12.8579L5.24072 9.77734C5.07145 9.93359 4.98682 10.1289 4.98682 10.3633C4.98682 10.5977 5.07145 10.793 5.24072 10.9492C5.39697 11.1185 5.59229 11.2031 5.82666 11.2031C6.06104 11.2031 6.25635 11.1185 6.4126 10.9492L14.0298 3.33203V5.5C14.0298 5.73438 14.1112 5.93294 14.2739 6.0957C14.4367 6.25846 14.6287 6.33984 14.8501 6.33984C15.0845 6.33984 15.283 6.25846 15.4458 6.0957C15.6086 5.93294 15.6899 5.73438 15.6899 5.5V0.5H10.6899C10.4556 0.5 10.257 0.58138 10.0942 0.744141C9.93148 0.906901 9.8501 1.10547 9.8501 1.33984Z" fill="%23F39100"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.club-text-gradient {
  background: linear-gradient(90deg, #F39100 0%, #FFBB56 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bb-yellow-gradient.container-fluid {
  position: relative;
}
.bb-yellow-gradient.container-fluid:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #F39100 0%, #FFBB56 100%);
}

.password-state-toggle {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
.password-state-toggle.password-state-toggle-hidden {
  background-image: url("../img/icons/profile/password_hidden.svg");
}
.password-state-toggle:not(.password-state-toggle-hidden) {
  background-image: url("../img/icons/profile/password_shown.svg");
}

body:has(#podcast-audio-player) {
  --audio-player-height: 100px;
  margin-bottom: var(--audio-player-height);
}
@media (max-width: 991.98px) {
  body:has(#podcast-audio-player) {
    --audio-player-height: 62px;
  }
}

#podcast-audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: var(--audio-player-height);
  background-color: #003060;
  justify-content: center;
  display: flex;
  gap: 40px;
  padding: 26px 30px 20px 30px;
}
@media (max-width: 991.98px) {
  #podcast-audio-player {
    padding: 16px 10px 10px 10px;
    gap: 10px;
    justify-content: unset;
  }
}
#podcast-audio-player > audio {
  display: none;
}
#podcast-audio-player:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #F39100 0%, #FFBB56 100%);
}
#podcast-audio-player .podcast-audio-player-item {
  display: flex;
  align-items: center;
  color: #ffffff;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta {
  width: 281px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 20px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-thumbnail img {
  width: 100%;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-meta-text {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-meta-text > span {
  width: 201px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta {
    width: auto;
  }
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-thumbnail {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-meta-text {
    gap: 0;
  }
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-meta-text > span {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-thumbnail {
    margin-right: 0;
  }
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-meta .podcast-audio-player-item-meta-text {
    display: none;
  }
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls {
  display: flex;
  gap: 15px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls > * {
  cursor: pointer;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-prev,
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-next {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3 12C3 13.78 3.52784 15.5201 4.51677 17.0001C5.5057 18.4802 6.91131 19.6337 8.55585 20.3149C10.2004 20.9961 12.01 21.1743 13.7558 20.8271C15.5016 20.4798 17.1053 19.6226 18.364 18.364C19.6226 17.1053 20.4798 15.5016 20.8271 13.7558C21.1743 12.01 20.9961 10.2004 20.3149 8.55585C19.6337 6.91131 18.4802 5.50571 17.0001 4.51677C15.5201 3.52784 13.78 3 12 3C9.48 3 7.07 4 5.26 5.74L3 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3 3V8H8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-next {
  transform: scaleX(-1);
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-play {
  width: 34px;
  height: 34px;
  background-image: url('data:image/svg+xml,<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="17" cy="17" r="17" fill="url(%23paint0_linear_512_3631)"/><path d="M21.4694 16.3971L14.2545 11.8884C14.1469 11.8212 14.0233 11.784 13.8965 11.7806C13.7697 11.7773 13.6443 11.808 13.5334 11.8694C13.4224 11.9309 13.3299 12.0209 13.2655 12.1302C13.2011 12.2395 13.1671 12.364 13.167 12.4908V21.5088C13.1665 21.6359 13.2001 21.7608 13.2643 21.8705C13.3286 21.9801 13.4211 22.0705 13.5323 22.1321C13.6434 22.1937 13.7691 22.2244 13.8962 22.2208C14.0232 22.2172 14.147 22.1796 14.2545 22.1118L21.4694 17.6031C21.5716 17.5391 21.6558 17.4502 21.7142 17.3447C21.7727 17.2392 21.8033 17.1207 21.8033 17.0001C21.8033 16.8795 21.7727 16.7609 21.7142 16.6555C21.6558 16.55 21.5716 16.4611 21.4694 16.3971Z" fill="white"/><defs><linearGradient id="paint0_linear_512_3631" x1="0" y1="17" x2="34.1074" y2="17" gradientUnits="userSpaceOnUse"><stop stop-color="%23F39100"/><stop offset="1" stop-color="%23FFBB56"/></linearGradient></defs></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-play.podcast-audio-player-item-controls-play-playing {
  background-image: url('data:image/svg+xml,<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="17" cy="17" r="17" fill="url(%23paint0_linear_1723_3041)"/><rect x="12" y="12" width="4" height="10" rx="1" fill="white"/><rect x="18" y="12" width="4" height="10" rx="1" fill="white"/><defs><linearGradient id="paint0_linear_1723_3041" x1="0" y1="17" x2="34.1074" y2="17" gradientUnits="userSpaceOnUse"><stop stop-color="%23F39100"/><stop offset="1" stop-color="%23FFBB56"/></linearGradient></defs></svg>');
}
@media (max-width: 991.98px) {
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls {
    gap: 10px;
  }
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-prev,
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-next {
    width: 21px;
    height: 21px;
  }
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-controls .podcast-audio-player-item-controls-play {
    width: 30px;
    height: 30px;
  }
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress {
  flex-grow: 1;
  --input-width: 660px;
  --input-height: 10px;
  max-width: var(--input-width);
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-duration,
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-length {
  font-size: 12px;
  width: 50px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-duration {
  text-align: right;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-length {
  text-align: left;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-bar {
  flex-grow: 1;
  position: relative;
  margin: 0 10px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-bar > .podcast-audio-player-item-progress-bar-range {
  width: 100%;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-bar > .podcast-audio-player-item-progress-bar-range > span {
  display: block;
  background: linear-gradient(-90deg, #F39100 0%, #FFBB56 100%);
  width: var(--state-percentage);
  height: 100%;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-bar > input {
  width: 100%;
  position: absolute;
  top: -3px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  height: var(--input-height);
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-bar > input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: #F39100;
  border-color: transparent;
  border-width: 0;
  border-radius: 50%;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-bar > input::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: #F39100;
  border-color: transparent;
  border-width: 0;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress {
    --input-width: 100%;
  }
}
@media (max-width: 575.98px) {
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-progress .podcast-audio-player-item-progress-length {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume {
    display: none;
  }
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-icon {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M11 4.70203C10.9998 4.56274 10.9583 4.42663 10.8809 4.31088C10.8034 4.19514 10.6934 4.10493 10.5647 4.05166C10.436 3.99838 10.2944 3.98442 10.1577 4.01154C10.0211 4.03866 9.89559 4.10564 9.797 4.20403L6.413 7.58703C6.2824 7.7184 6.12703 7.82256 5.95589 7.89345C5.78475 7.96435 5.60124 8.00057 5.416 8.00003H3C2.73478 8.00003 2.48043 8.10539 2.29289 8.29292C2.10536 8.48046 2 8.73481 2 9.00003V15C2 15.2652 2.10536 15.5196 2.29289 15.7071C2.48043 15.8947 2.73478 16 3 16H5.416C5.60124 15.9995 5.78475 16.0357 5.95589 16.1066C6.12703 16.1775 6.2824 16.2817 6.413 16.413L9.796 19.797C9.8946 19.8958 10.0203 19.9631 10.1572 19.9904C10.2941 20.0177 10.436 20.0037 10.5649 19.9503C10.6939 19.8968 10.804 19.8063 10.8815 19.6902C10.959 19.5741 11.0002 19.4376 11 19.298V4.70203Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 9C16.6491 9.86548 17 10.9181 17 12C17 13.0819 16.6491 14.1345 16 15" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.3643 18.364C20.2 17.5283 20.8629 16.5361 21.3152 15.4442C21.7675 14.3522 22.0003 13.1819 22.0003 12C22.0003 10.8181 21.7675 9.64775 21.3152 8.55581C20.8629 7.46387 20.2 6.47172 19.3643 5.63599" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  margin-right: 10px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-bar {
  position: relative;
  --input-width: 88px;
  --input-height: 10px;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-bar > .podcast-audio-player-item-volume-bar-range {
  width: var(--input-width);
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-bar > .podcast-audio-player-item-volume-bar-range > span {
  display: block;
  background: linear-gradient(-90deg, #F39100 0%, #FFBB56 100%);
  width: var(--state-percentage);
  height: 100%;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-bar > input {
  width: var(--input-width);
  position: absolute;
  top: -3px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  height: var(--input-height);
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-bar > input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: #F39100;
  border-color: transparent;
  border-width: 0;
  border-radius: 50%;
}
#podcast-audio-player .podcast-audio-player-item#podcast-audio-player-item-volume .podcast-audio-player-item-volume-bar > input::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: #F39100;
  border-color: transparent;
  border-width: 0;
  border-radius: 50%;
}

.video-wrapper {
  margin-top: 30px;
  position: relative;
  border-radius: 5px;
  border-bottom: 5px solid #F39100;
  overflow: hidden;
  cursor: pointer;
}
.video-wrapper video {
  width: 100%;
  display: block;
}
.video-wrapper .video-play-button {
  position: absolute;
  top: calc(50% - 26px);
  left: calc(50% - 26px);
  width: 52px;
  height: 52px;
  background: url("../img/icons/ic-play.svg") no-repeat center center, linear-gradient(90deg, #F39100 0%, #FFBB56 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(243, 145, 0, 0.4);
  -moz-animation: pulse 1.6s infinite;
  -webkit-animation: pulse 1.6s infinite;
  animation: pulse 1.6s infinite;
  pointer-events: none;
}

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