/* Custom CSS */

/* Header */
.logout-link {
  margin-left: 20px;
}

.header__background-holder:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  mix-blend-mode: multiply;
  top: 0;
  background: linear-gradient(180deg,rgba(67,70,74,.75) 0,rgba(28,65,106,.5) 29%,rgba(28,65,106,.25) 56%,rgba(24,47,75,0));
  height: 100px;
}

/* Grid */
.col h2, .col .h3 {
  text-transform: uppercase;
  letter-spacing: 2.1px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.col {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.cb-callout {
  border-bottom: 5px solid #fed141;
  padding: 40px;
  box-shadow: 15px 0 30px rgb(0 0 0 / 16%);
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .col .cb-callout {
    height: 100%;
  }
}

/* Forms */

.form-label {
  display: flex;
  align-items: center;
}

.form-label .required {
  order: 2;
  margin: 0 0 12px 5px;
}

.required, .errors {
  color: red;
}

.errors {
  list-style: none;
  padding: 0 0 10px 10px;
  margin: 0 0 20px;
  border-left: 3px solid red;
}

.errors li {
  font-weight: 600;
  color: red;
  padding: 10px 0 0;
}

.text-success {
  color: #006451;
  font-weight: 600;
  border-left: 3px solid #006451;
  padding-left: 10px;
}

input[type=password] {
  transition: border-color .3s ease-in-out;
  border: 1px solid #5f5f5f;
  background-color: transparent;
  width: 100%;
  height: 50px;
  min-width: 0;
  padding: 4px 14px;
  border-radius: 0;
  -webkit-appearance: none;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}

input[type=password]:hover,
input[type=password]:focus {
  box-shadow: none;
  border-color: #008ab4;
  outline: none;
}

.login-form .form-group,
.registration-form .form-group {
  margin-bottom: 20px;
}

.registration-form {
  margin-bottom: 40px;
}

.login-form .create-new-collection__btn-wrap {
  gap: 40px;
  margin-bottom: 40px;
}

.login-form .required {
  display: none;
}

.is-invalid .errors {
  border-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.is-invalid input[type=email], .is-invalid input[type=search], .is-invalid input[type=tel], .is-invalid input[type=text], .is-invalid textarea, .is-invalid input[type=password] {
  border-color: red;
}

/* Additional Buttons */
.btn-yellow, .btn-yellow:hover, .btn-yellow:focus {
  background-color: #fed141;
  border-color: #fed141;
  color: #393939;
  font-weight: 700;
}

a[disabled], .btn[disabled] {
  opacity: .5;
}

a[disabled]:hover, .btn[disabled]:hover {
  cursor: not-allowed;
}



/* Layout Helpers */
.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

/* Custom Form */
.custom-select {
  position: relative;
}
.custom-select:after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  transition: transform .3s ease-in-out;
  font-family: icomoon!important;
  font-size: 11px;
}
.custom-select-element {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 42px;
  padding: 0 40px 0 15px;
  border: 1px #ddd solid;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 29%);
}
.pagination__option {
  display: flex;
  align-items: center;
}
.pagination__option .custom-select-element {
  height: 30px;
  width: 100%;
}
.pagination__option .custom-select {
  margin-left: 15px;
}
.pagination__option {
  margin-right: 30px;
}
.pagination__option-text {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
  }
  .pagination__option {
    flex: 0 0 100%;
    justify-content: center;
    order: 2;
    padding-top: 15px;
  }
}


.gallery-section {
  position: relative;
}
form.loading .gallery-section:after {
  content: "Loading...";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 100%;
  background: hsla(0deg, 100%, 100%, 90%);
  padding: 60px 0 0;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
}

.devc {
  display: none;
}

.alert-download_progress {
  border: 2px #5f5f5f solid;
  padding: 5px 30px;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin: 30px 0;
  font-size: 20px;
  color: #5f5f5f;
  text-align: center;
  font-weight: 700;
}
.collection-download-progress .alert-download_progress {
  display: block;
  opacity: 1;
}

.page-numbers.disabled {
  cursor: default !important;
  opacity: 0.3;
  background: #5f5f5f !important;
  color: #fff !important;
}
a[aria-disabled="true"] {
  cursor: default !important;
  opacity: 0.3;
  background: none !important;
  color: #5f5f5f !important;
}

.disclamer-checkbox + .section-heading__buttons  {
  margin-top: 30px;
}
.disclamer-checkbox .custom-check {
  margin-top: 7px;
}
.disclamer-checkbox .custom-check__text {
  padding-left: 7px;
}

.dropdown-list__link {
  width: 100%;
  text-align: left;
}

.text-white.submitbtn.copied {
  background: #28a745;
  color: #fff !important;
}

.text-white.submitbtn.copied:before {
  content: '';
  float: left;
  background-image: url('data:image/svg+xml, \
    <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\
      <path fill="%23ffffff" d="M480.1 128.1l-272 272C204.3 405.7 198.2 408 192 408s-12.28-2.344-16.97-7.031l-144-144c-9.375-9.375-9.375-24.56 0-33.94s24.56-9.375 33.94 0L192 350.1l255-255c9.375-9.375 24.56-9.375 33.94 0S490.3 119.6 480.1 128.1z"/>\
    </svg>\
  ');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: -5px 15px 0 0;
  width: 20px;
  height: 20px;
}


.custom-control-input.adding ~ .custom-check__text .text:after {
  content: '';
  display: inline-block;
  background-image: url('data:image/svg+xml, \
    <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\
      <path fill="%235f5f5f" d="M448 96h-172.1L226.7 50.75C214.7 38.74 198.5 32 181.5 32H64C28.66 32 0 60.66 0 96v320c0 35.34 28.66 64 64 64h384c35.34 0 64-28.66 64-64V160C512 124.7 483.3 96 448 96zM464 416c0 8.824-7.18 16-16 16H64c-8.82 0-16-7.176-16-16V96c0-8.824 7.18-16 16-16h117.5c4.273 0 8.289 1.664 11.31 4.688L256 144h192c8.82 0 16 7.176 16 16V416zM336 264h-56V207.1C279.1 194.7 269.3 184 256 184S232 194.7 232 207.1V264H175.1C162.7 264 152 274.7 152 288c0 13.26 10.73 23.1 23.1 23.1h56v56C232 381.3 242.7 392 256 392c13.26 0 23.1-10.74 23.1-23.1V311.1h56C349.3 311.1 360 301.3 360 288S349.3 264 336 264z"/>\
    </svg>\
  ');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: -5px 0 -5px 15px;
  width: 20px;
  height: 20px;
}


.custom-control-input.just_checked ~ .custom-check__text .text:after {
  content: '';
  display: inline-block;
  background-image: url('data:image/svg+xml, \
    <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\
      <path fill="%235f5f5f" d="M480.1 128.1l-272 272C204.3 405.7 198.2 408 192 408s-12.28-2.344-16.97-7.031l-144-144c-9.375-9.375-9.375-24.56 0-33.94s24.56-9.375 33.94 0L192 350.1l255-255c9.375-9.375 24.56-9.375 33.94 0S490.3 119.6 480.1 128.1z"/>\
    </svg>\
  ');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: -5px 0 -5px 15px;
  width: 20px;
  height: 20px;
}

.gallery-card__title {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
}
.gallery-card__title:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to left, hsla(0deg, 0%, 100%, 100%) 0%, hsla(0deg, 0%, 0%, 0%));
  width: 15px;
}

.list-view .gallery-card__title {
  max-width: 9999px;
}

.popup-panel__control .icon-link:before {
  content: "";
  background: url("../images/link-icon.png") 50% 50%;
  background-size: contain;
  display: block;
  width: 36px;
  height: 36px;
}

@media (max-width: 1100px) {
  .gallery-popup__image img {
    max-height: 50vh;
  }
}

.opener-mobile-description__slide {
  display: none;
}


/* Fullscreen */
@media (min-width: 1024px) {
  .popup-wrap__holder:fullscreen {
    max-width: 100%;
  }
  :fullscreen .popup-wrap__holder {
    max-width: 90vw;
  }
  :fullscreen .gallery-popup .main-iframe {
    min-height: 1100px;
  }
  .gallery-popup__image img {
    max-height: calc((100vw - 154px) / 1.7778);
  }
}
.fullscreen .gallery-popup__description {
  display: none;
}
.fullscreen .inner-page {
  background: none;
}


/* Categories tree */
.check-list_item-level-0 ~ .check-list_item-level-1 {
  display: none;
  padding-left: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.check-list_item-level-0 ~ .check-list_item-level-2 {
  display: none;
  padding-left: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.check-list_item-level-0 ~ .check-list_item-level-3 {
  display: none;
  padding-left: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.check-list_item-level-0 ~ .check-list_item-level-4 {
  display: none;
  padding-left: 60px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.check-list_item-level-1.active,
.check-list_item-level-2.active,
.check-list_item-level-3.active,
.check-list_item-level-4.active,
.check-list_item-level-5.active {
  display: block;
  opacity: 1;
}


.swiper-button-prev,
.swiper-button-next {
  display: none;
}
.popup-loaded .swiper-button-prev,
.popup-loaded .swiper-button-next {
  display: block;
}

@media (min-width: 1024px) {
  .gallery-detail__text--manager {
    padding-left: 0;
  }
}




.accordion_title {
  margin-bottom: 30px;
}

.btn, .cb-btn {
  display: inline-block;
  border: 2px solid #5d5c5c;
  text-transform: uppercase;
  min-width: 189px;
  text-align: center;
  letter-spacing: 3.9px;
  color: #5c5c5c;
  background-color: transparent;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.cb-btn--default {
  border-radius: 0;
}

.cb-btn--default:hover, .cb-btn--default:focus {
  background: #FED141;
  border-color: #FED141;
  color: #000;
}

.btn--yellow, .cb-btn--yellow {
    transition: min-width 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
    background: #fed141;
    border-radius: 40px;
    border-color: #fed141;
    color: #000;
}

.btn--yellow:hover, .cb-btn--yellow:hover,
.btn--yellow:focus, .cb-btn--yellow:focus {
    background: #fed141;
    border-color: #fed141;
    min-width: 250px;
    color: #000;
}

/* table */

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  border: 2px solid #f6f8fb;
  color: #707070;
  margin: 30px 0 30px;
}

@media (min-width: 1024px) {
  table {
    border: 0;
  }
}

table th,
table td {
  min-width: 200px;
  border: 1px solid transparent;
}
table th {
  color: #000;
  text-align: center;
}

@media (min-width: 1024px) {
  table th,
table td {
    min-width: none;
  }
}
table thead {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: left;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  table thead {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  table thead {
    font-size: 18px;
    letter-spacing: 0.2em;
  }
}
table thead th {
  padding: 15px 10px;
  position: relative;
}
@media (min-width: 1280px) {
  table thead th {
    padding: 34px 10px 30px;
  }
}
table thead th:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-bottom: 6px solid #fed141;
}
table thead th > * {
  position: relative;
  z-index: 2;
}
@media (min-width: 1280px) {
  table thead th:first-child {
    padding: 34px 10px 30px 51px;
  }
}
table thead th:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 5px;
  background: transparent;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  height: 100000000px;
  pointer-events: none;
}
table thead th:nth-child(2) {
  position: relative;
}
table thead th:nth-child(2):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 5px;
  background: transparent;
  pointer-events: none;
}
table thead th.bg-light {
  position: relative;
}
table thead th.bg-light:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(235, 235, 235, 0.37);
  height: 99999px;
  pointer-events: none;
}
table tbody {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.33;
}
table tbody > tr:first-child > td {
  padding-top: 20px;
}
@media (min-width: 1024px) {
  table tbody > tr:first-child > td {
    padding-top: 35px;
  }
}
table tbody > tr:nth-child(odd) {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}
table tbody > tr > td > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  table tbody > tr > td:first-child {
    font-size: 16px;
  }
}

table tbody td {
  padding: 15px 10px;
}
@media (min-width: 1280px) {
  table tbody td {
    padding: 12px 10px;
  }
}
@media (min-width: 1280px) {
  table tbody td:first-child {
    padding: 22px 10px 22px 51px;
  }
}

.cb-caption {
    font-size: 14px;
    color: inherit
}

.cb-credit {
    font-size: 14px;
    color: inherit
}

.cb-caption:not(.empty), .cb-image-caption:not(.empty), .cb-image-img-caption:not(.empty) {
    border-left: 10px solid #fed141;
    padding: 0 0 0 15px;
    margin: 15px 0 0;
    font-size: 14px;
    font-style: italic
}

.cb-img-caption p:last-child {
    margin: 0
}

.cb-caption-text {
    margin-bottom: 0;
    display: inline
}

.cb-caption-text p {
    display: inline
}

.cb-img-credit,.cb-credit {
    font-weight: 700;
    margin-bottom: 0;
    display: inline;
    margin-left: 5px
}

.cb-img-credit {
    margin-top: 0;
    padding-top: 10px
}

.cb-img-credit {
  display: inline;
  border-left: none !important;
  padding: 0 !important;
  margin-left: 5px !important;
}

.cb-img-caption:has (+ cite) {
  display: inline;
}

/*
.cb-caption {
  border-left: 10px solid #fed141;
  padding: 0 0 0 15px;
  margin: 15px 0 0;
  font-size: 14px;
  font-style: italic;
}

.cb-img-caption p:last-child {
  margin: 0;
}

.cb-caption-text {
  margin-bottom: 0;
  display: inline;
}

.cb-caption-text p {
  display: inline;
}

.cb-img-credit, .cb-credit {
  font-weight: 700;
  margin-bottom: 0;
  display: inline;
  margin-left: 5px;
}

.cb-img-credit {
  border-left: none !important;
  margin-top: 0;
  padding-top: 10px;
}
*/

/* 3rd Level Navigation */

/* Base flyout for deeper levels */
@media (min-width: 1024px) {
  .main-nav__inner-menu .main-nav__inner-menu {
    position: absolute;
    top: 0;
    left: 100%;            /* attach to right edge of parent */
    transform: none;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    width: 250px;
    padding: 9px 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000; /* keep above */
  }

  /* show 3rd+ level when parent is hovered */
  .main-nav__inner-menu li.has-drop-down:hover > .main-nav__inner-menu {
    opacity: 1;
    visibility: visible;
  }

  /* arrow indicator for deeper submenus */
  .main-nav__inner-menu li.has-drop-down > a {
    position: relative;
    padding-right: 30px; /* space for arrow */
  }
  .main-nav__inner-menu li.has-drop-down > a:after {
    content: "›";
    font-size: 24px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
  }

  /* style for links inside deeper menus */
  .main-nav__inner-menu .main-nav__inner-menu a {
    display: block;
    line-height: 1.2;
    padding: 12px 20px;
  }
  .main-nav__inner-menu .main-nav__inner-menu a:hover {
    background: #5f5f5f;
    color: #fff;
  }
}

/* In Section Search Form */

.section-search {
  padding: 20px 0 40px;
}

/* Column Padding */

.ipr_contentArea .wrapper {
  overflow: visible;
}

.column {
  padding-left: 20px;
  padding-right: 20px;
}

.result-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  
}



.results .result-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.result-item-image {
  width: 100%;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .result-item {
    display: flex;
    grid-gap: 10px;
  }
  .result-item-image {
    flex: 0 0 150px;
    max-width: 150px;
    margin-bottom: 0;
  }
}

.result-item-image img {
  max-width: 100%;
  height: auto;
}

.result-item-title {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.result-item-title a {
  color: #000;
  text-decoration: none;
}

.result-item-title a:hover,
.result-item-title a:focus {
  color: #008ab4;
  text-decoration: underline;
}

/* Headings */

h1, h2, h3, h4, h5 {
  color: #000;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  word-wrap: break-word;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 30px;
}

  
h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

@media (min-width: 768px) {
  h1 {
      font-size: 60px;
  }
  h2 {
      font-size: 36px;
      line-height: 1.2;
  }
  h3 {
      font-size: 30px;
  }
  h4 {
    font-size: 26px;
  }
  h5 {
      font-size: 22px;
  }
}


h1.cb-heading--accent {
 padding: 20px 0 20px 40px;
 border-left: 10px solid #fed141;
}

h2.cb-heading--accent {
  padding: 0 0 0 20px;
}

h2.cb-heading--accent {
 border-left: 10px solid #fed141;
}

h3.cb-heading--accent::before,
h4.cb-heading--accent::before,
h5.cb-heading--accent::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #fed141;
  margin-right: 20px;
}

h3.cb-heading--accent::before {
  width: 20px;
  height: 10px;
}

h4.cb-heading--accent::before {
  width: 10px;
  height: 10px;
}

h5.cb-heading--accent::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Heading in editor menu */

#_cbhtml .is-rte-pop.rte-paragraph-options > div > div > *, .is-ui .is-rte-pop.rte-paragraph-options > div > div > * {
    color: white;
    line-height: 1 !important;
    text-align: left;
    letter-spacing: 0;
}

#_cbhtml .is-rte-pop.rte-paragraph-options > div > div > *, .is-ui .is-rte-pop.rte-paragraph-options > div > div > h1 {
  font-size: 36px;
}

#_cbhtml .is-rte-pop.rte-paragraph-options > div > div > *, .is-ui .is-rte-pop.rte-paragraph-options > div > div > h2 {
  font-size: 28px;
}

#_cbhtml .is-rte-pop.rte-paragraph-options > div > div > *, .is-ui .is-rte-pop.rte-paragraph-options > div > div > h3 {
  font-size: 24px;
}

#_cbhtml .is-rte-pop.rte-paragraph-options > div > div > *, .is-ui .is-rte-pop.rte-paragraph-options > div > div > h4 {
  font-size: 20px;
}

/* New Border Colors */

.cb-bc--blue {
  border-color: #1B76C5 !important;
}

.cb-bc--light-blue {
  border-color: #01A7E0 !important;
}

.cb-bc--teal {
  border-color: #56C1B7 !important;
}

.cb-bc--gray {
  border-color: #707070 !important;
}

.cb-bc--yellow {
  border-color: #FED141 !important;
}

.cb-bc--gray-dark {
  border-color: #333 !important;
}

.cb-bc--gray-light {
  border-color: #b2b1b0 !important;
}

.cb-bc--gray-white {
  border-color: #fff !important;
}

.cb-bc--green {
  border-color: #005342 !important;
}

/* Quotes */

.cb-quote {
  padding: 20px 40px 20px 40px;
  box-shadow: 15px 0 30px rgba(0, 0, 0, 0.16);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  border-left: 10px solid #1B76C5;
}

@media (min-width: 768px) {
  .cb-quote {
    padding: 35px 80px 48px 75px;
  }
}

.cb-quote .cb-quote-author {
  margin-left: 0;
}

.cb-quote.cb-q--quote-icon {
  position: relative;
}

.cb-quote.cb-q--quote-icon blockquote::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10px;
  background-image: url(../fonts/quote-icon-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  background-size: contain;  
}

@media (min-width: 768px) {
  .cb-quote.cb-q--quote-icon blockquote::before {
    left: 25px;
    width: 25px;
    height: 25px;
  }
}

.cb-q--no-quote-icon blockquote::before {
  content: none;
}

.cb-quote.cb-q--quote-icon.cb-bc--light-blue blockquote::before {
  background-image: url(../fonts/quote-icon-light-blue.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--teal blockquote::before {
  background-image: url(../fonts/quote-icon-teal.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--gray blockquote::before {
  background-image: url(../fonts/quote-icon-gray.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--gray-light blockquote::before {
  background-image: url(../fonts/quote-icon-gray-light.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--gray-dark blockquote::before {
  background-image: url(../fonts/quote-icon-gray-dark.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--yellow blockquote::before {
  background-image: url(../fonts/quote-icon-yellow.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--green blockquote::before {
  background-image: url(../fonts/quote-icon-green.svg);
}

.cb-quote.cb-q--quote-icon.cb-bc--white blockquote::before {
  background-image: url(../fonts/quote-icon-gray.svg);
}

.cb-quote .cb-quote-author {
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cb-quote .cb-quote-author::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 3px;
  background-color: #1B76C5;
  margin-right: 0.5rem;
}

.cb-quote.cb-bc--light-blue .cb-quote-author::before {
  background-color: #01A7E0;
}

.cb-quote.cb-bc--teal .cb-quote-author::before {
  background-color: #56C1B7;
}

.cb-quote.cb-bc--gray .cb-quote-author::before {
  background-color: #707070;
}

.cb-quote.cb-bc--gray-light .cb-quote-author::before {
  background-color: #b2b1b0;
}

.cb-quote.cb-bc--yellow .cb-quote-author::before {
  background-color: #FED141;
}

.cb-quote.cb-bc--green .cb-quote-author::before {
  background-color: #005342;
}

.cb-quote.cb-bc--white .cb-quote-author::before {
  background-color: #fff;
}

.cb-quote.cb-bc--gray-dark .cb-quote-author::before {
  background-color: #333333;
}

.cBuilder .achievements-section .achievements-list__achievement-item--light-blue:before {
  background: #01A7E0;
}

.cBuilder .achievements-section .achievements-list__achievement-item--teal:before {
  background: #56C1B7;
}

.cBuilder .achievements-section .achievements-list__achievement-item--gray:before {
  background: #707070;
}

.elm-active::before {
  opacity: 1 !important;
}

/* Featured Blocks */
.featured-item__title {
  font-size: 20px !important;
}