/* stylelint-disable color-no-hex */
/* Icons */
.icon {
  font-family: "feather" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.5rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left::before {
  content: "\E828";
}

.icon-arrow-right::before {
  content: "\E829";
}

.icon-bell::before {
  content: "\E836";
}

.icon-calendar::before {
  content: "\E83A";
}

.icon-check-circle::before {
  content: "\E83E";
}

.icon-check::before {
  content: "\E83F";
}

.icon-chevron-down::before {
  content: "\E842";
}

.icon-chevron-left::before {
  content: "\E843";
}

.icon-chevron-right::before {
  content: "\E844";
}

.icon-circle::before {
  content: "\E84A";
}

.icon-clock::before {
  content: "\E84D";
}

.icon-credit-card::before {
  content: "\E85F";
}

.icon-crosshair::before {
  content: "\E860";
}

.icon-download::before {
  content: "\E864";
}

.icon-external-link::before {
  content: "\E869";
}

.icon-filter::before {
  content: "\E875";
}

.icon-grid::before {
  content: "\E878";
}

.icon-home::before {
  content: "\E87A";
}

.icon-info::before {
  content: "\E87F";
}

.icon-layout::before {
  content: "\E881";
}

.icon-link::before {
  content: "\E884";
}

.icon-list::before {
  content: "\E886";
}

.icon-lock::before {
  content: "\E887";
}

.icon-map::before {
  content: "\E88C";
}

.icon-map-pin::before {
  content: "\E88E";
}

.icon-menu::before {
  content: "\E88F";
}

.icon-minus::before {
  content: "\E897";
}

.icon-plus::before {
  content: "\E8B1";
}

.icon-search::before {
  content: "\E8BD";
}

.icon-triangle::before {
  content: "\E8DE";
}

.icon-user::before {
  content: "\E8E9";
}

.icon-x::before {
  content: "\E8F6";
}

.icon-arrow-left-circle::before {
  content: "\E910";
}

.icon-arrow-right-circle::before {
  content: "\E911";
}

.fs-icon-xs::before {
  font-size: 1rem;
}

.fs-icon-s::before {
  font-size: 1.5rem;
}

.fs-icon-l::before {
  font-size: 2rem;
}

.svg-icon-xs {
  height: 1rem;
  width: 1rem;
}
.svg-icon-xs svg,
.svg-icon-xs img {
  height: 1rem;
  width: 1rem;
}

.svg-icon-s {
  height: 1.5rem;
  width: 1.5rem;
}
.svg-icon-s svg,
.svg-icon-s img {
  height: 1.5rem;
  width: 1.5rem;
}

.svg-icon-l {
  height: 2rem;
  width: 2rem;
}
.svg-icon-l svg,
.svg-icon-l img {
  height: 2rem;
  width: 2rem;
}

.cf-custom-select {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #F5FAFF;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .cf-custom-select {
    position: relative;
    text-align: left;
    background-color: transparent;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 11.125rem;
  }
}
.cf-custom-select__wrapper {
  display: flex;
  justify-content: flex-end;
}
.cf-custom-select .selected-option {
  padding: 1.125rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  color: #0970e6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cf-custom-select .selected-option::after {
  content: "\E842";
  display: inline-block;
  margin-left: 0.3125rem;
  font-family: "feather";
  width: 1.5rem;
  height: 1.5rem;
}
.cf-custom-select .selected-option.arrow-up::after {
  content: "\E845";
  font-family: "feather";
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 1024px) {
  .cf-custom-select .selected-option {
    background-color: transparent;
    padding: 1rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    max-width: none;
    width: auto;
    text-align: center;
    border-radius: 0.25rem;
    border: 1px solid #d0d9dd;
    color: #121212;
  }
  .cf-custom-select .selected-option::after {
    content: url("../../images/custom-icons/chevrons-up-down.svg");
  }
  .cf-custom-select .selected-option.arrow-up::after {
    content: url("../../images/custom-icons/chevrons-up-down.svg");
  }
}
.cf-custom-select .options-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: none;
  background: #ffffff;
  border: 1px solid #cccccc;
  z-index: 1;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 -0.25rem 1rem 0 rgba(18, 18, 18, 0.08);
}
@media (min-width: 1024px) {
  .cf-custom-select .options-list {
    border: none;
    border-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    box-shadow: 0 1rem 4rem 0 rgba(18, 18, 18, 0.12), 0 0.5rem 1.5rem 0 rgba(18, 18, 18, 0.16);
    top: calc(100% + 1rem);
    bottom: auto;
    left: -3.75rem;
    right: 0;
  }
}
.cf-custom-select .options-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 0.5rem;
}
@media (min-width: 1024px) {
  .cf-custom-select .options-list__header {
    display: none;
  }
}
.cf-custom-select .options-list__heading {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.25rem;
  /* 128.571% */
}
.cf-custom-select .option {
  padding: 1rem;
  font-size: 1rem;
  border-top: 1px solid #e5e5e5;
  text-align: left;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  /* 142.857% */
}
.cf-custom-select .option.selected {
  color: #0970e6;
  font-weight: 700;
}
.cf-custom-select .option:hover {
  background: #e5f7ff;
}

.folders-grid-item {
  grid-auto-rows: 1fr;
  display: grid;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .folders-grid-item {
    max-width: 21.5rem;
  }
}

.confirm-request-support-modal .modal-dialog {
  max-width: none;
}
@media (min-width: 768px) {
  .confirm-request-support-modal .modal-dialog {
    max-width: 31.25rem;
  }
}
.confirm-request-support-modal .modal-dialog .modal-body {
  padding: 0;
}

.folder-subscribe-tile .folders-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .folder-subscribe-tile .folders-card {
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .folder-subscribe-tile .folders-card {
    flex-direction: column;
  }
}
.folder-subscribe-tile .folder-subscribe-tile-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1280px) {
  .folder-subscribe-tile .folder-subscribe-tile-title-container {
    flex-direction: column;
  }
}
.folder-subscribe-tile.mobile-tile {
  display: block;
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .folder-subscribe-tile.mobile-tile {
    display: none;
  }
}
.folder-subscribe-tile.mobile-tile .folders-card {
  min-height: 4.5rem;
}
.folder-subscribe-tile.mobile-tile .folders-card .folder-subscribe-tile-image {
  width: 2.08825rem;
  height: 2.5rem;
}
.folder-subscribe-tile.tablet-tile {
  display: none;
  grid-column: 1/-1;
  padding: 1rem;
}
@media (min-width: 1024px) {
  .folder-subscribe-tile.tablet-tile {
    display: block;
  }
}
@media (min-width: 1280px) {
  .folder-subscribe-tile.tablet-tile {
    display: none;
  }
}
.folder-subscribe-tile.tablet-tile .folders-card {
  min-height: 4.5rem;
}
.folder-subscribe-tile.tablet-tile .folders-card .folder-subscribe-tile-image {
  width: 2.08825rem;
  height: 2.5rem;
}
.folder-subscribe-tile .folder-subscribe-tile-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: center;
}

.folders-grid-container {
  margin-inline: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  grid-template-columns: 1fr 1fr;
}
.folders-grid-container .folder-subscribe-tile.desktop-tile {
  display: none;
}
@media (min-width: 1280px) {
  .folders-grid-container .folder-subscribe-tile.desktop-tile {
    display: block;
  }
}
@media (min-width: 768px) {
  .folders-grid-container {
    grid-template-columns: repeat(2, 22.469rem);
  }
}
@media (min-width: 1024px) {
  .folders-grid-container {
    grid-template-columns: repeat(2, 21.5rem);
    margin-inline: 2.5rem;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .folders-grid-container {
    justify-content: unset;
  }
}
@media (min-width: 1280px) and (max-width: 1599.98px) {
  .folders-grid-container {
    grid-template-columns: repeat(3, 21.5rem);
  }
}
@media (min-width: 1600px) {
  .folders-grid-container {
    grid-template-columns: repeat(4, 21.5rem);
  }
}
@media (min-width: 1920px) {
  .folders-grid-container {
    grid-template-columns: repeat(5, 21.5rem);
  }
}

.folders-banner__container {
  width: 100%;
  min-height: 8.5rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.folders-banner__background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 375px) {
  .folders-banner__background-image {
    height: auto;
  }
}
.folders-banner__content {
  display: block;
}
.folders-banner__content-heading {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1280px) {
  .folders-banner__content-heading {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.folders-banner__content-para {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.folders-card {
  width: 100%;
  min-height: 12.5rem;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .folders-card {
    padding: 1rem;
  }
}
.folders-card__wrapper {
  position: relative;
}
.folders-card__image-container {
  width: 100%;
  aspect-ratio: 19.5/22.5;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .folders-card__image-container {
    width: 20.509rem;
  }
}
@media (min-width: 1024px) {
  .folders-card__image-container {
    width: 19.54rem;
  }
}
.folders-card__image {
  width: 100%;
}
.folders-card__content-container {
  margin-bottom: 1rem;
  grid-template-rows: repeat(auto-fill, minmax(1.5rem, 1fr));
  display: grid;
}
.folders-card__content-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.folders-card__details {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 1280px) {
  .folders-card__details {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
}
.folders-card__cta {
  position: absolute;
  display: flex;
  gap: 0.5rem;
  bottom: -0.25rem;
  border-radius: 9.334rem;
  padding-left: 0.747rem;
  padding-right: 0.747rem;
  padding-bottom: 0.375rem;
  padding-top: 0.375rem;
}
.folders-card__cta.black {
  background-color: #263238;
}
.folders-card__cta.red {
  border: 0.093rem solid #DF1116;
  color: #DF1116;
  background-color: #feefef;
}
.folders-card__cta.green {
  border: 0.093rem solid #2C815E;
  color: #2C815E;
  background-color: #f0faf6;
}
.folders-card__cta.gray {
  border: 0.093rem solid #121212;
  color: #121212;
  background-color: #EBEBEB;
}
.folders-card__cta .clock-express {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders-card__cta .clock-express::before, .folders-card__cta .clock-express:before {
  content: "";
  background-image: url("../../images/custom-icons/clock-express.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders-card__cta .clock-express::after, .folders-card__cta .clock-express:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.folders-card__cta .megaphone {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders-card__cta .megaphone::before, .folders-card__cta .megaphone:before {
  content: "";
  background-image: url("../../images/custom-icons/megaphone.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders-card__cta .megaphone::after, .folders-card__cta .megaphone:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.folders-card__cta .sand-clock {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders-card__cta .sand-clock::before, .folders-card__cta .sand-clock:before {
  content: "";
  background-image: url("../../images/custom-icons/sand-clock.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders-card__cta .sand-clock::after, .folders-card__cta .sand-clock:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1023.98px) {
  .folders-card__cta {
    bottom: 0.25rem;
    border-radius: 4.763rem;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    padding-bottom: 0.188rem;
    padding-top: 0.188rem;
  }
}
.folders-card__text {
  font-size: 1.715rem;
  line-height: 1.25rem;
}
@media (max-width: 1023.98px) {
  .folders-card__text {
    font-size: 0.875rem;
  }
}
.folders-card__validity {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #454545;
}
@media (min-width: 768px) {
  .folders-card__validity {
    padding: 0.5rem 0 0.5rem 0;
  }
}

.folders_filter-section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.folders_filter {
  border-radius: 0.25rem;
  border: 0.0625rem solid #cccccc;
  width: auto;
  flex-shrink: 0;
}
.folders_filter.active {
  border: 0.0625rem solid #454545;
}
.folders_filter.active .refinement-btn {
  pointer-events: none;
}
.folders_filter.hyper .refinement-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders_filter.hyper .refinement-btn::before, .folders_filter.hyper .refinement-btn:before {
  content: "";
  background-image: url("../../images/custom-icons/hyper-filter.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders_filter.hyper .refinement-btn::after, .folders_filter.hyper .refinement-btn:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.folders_filter.express .refinement-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders_filter.express .refinement-btn::before, .folders_filter.express .refinement-btn:before {
  content: "";
  background-image: url("../../images/custom-icons/express-filter.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders_filter.express .refinement-btn::after, .folders_filter.express .refinement-btn:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.folders_filter.market .refinement-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders_filter.market .refinement-btn::before, .folders_filter.market .refinement-btn:before {
  content: "";
  background-image: url("../../images/custom-icons/market-filter.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders_filter.market .refinement-btn::after, .folders_filter.market .refinement-btn:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.folders_filter.all-folders .refinement-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}
.folders_filter.all-folders .refinement-btn::before, .folders_filter.all-folders .refinement-btn:before {
  content: "";
  background-image: url("../../images/custom-icons/book-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.folders_filter.all-folders .refinement-btn::after, .folders_filter.all-folders .refinement-btn:after {
  content: "";
  background-image: url("../../images/custom-icons/false.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.folders_filter.hyper .refinement-btn, .folders_filter.express .refinement-btn, .folders_filter.market .refinement-btn, .folders_filter.all-folders .refinement-btn {
  width: 100%;
  height: 100%;
}
.folders_filter.hyper .refinement-btn::before, .folders_filter.express .refinement-btn::before, .folders_filter.market .refinement-btn::before, .folders_filter.all-folders .refinement-btn::before {
  width: 1.5rem;
  height: 1.5rem;
  left: unset;
  top: unset;
}
.folders_filter:not(.all-folders) .refinement-btn {
  text-transform: capitalize;
}
.folders_filter-section-wrapper {
  padding: 1rem 0 1rem 0;
}
.folders_filter-section-wrapper ::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .folders_filter-section-wrapper {
    padding-inline: 1.5rem;
  }
}
.folders_filter-section-wrapper li {
  list-style-type: none;
  margin-right: 1rem;
  cursor: pointer;
}
.folders_filter-section-wrapper li:hover {
  border: 0.0625rem solid #2b2b2b;
}
.folders_filter-section-wrapper ul {
  position: relative;
  overflow-x: auto;
  padding: 0 1rem 0;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .folders_filter-section-wrapper ul {
    scrollbar-width: unset;
  }
}
@media (min-width: 768px) {
  .folders_filter-section-wrapper ul {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .folders_filter-section-wrapper {
    overflow-x: unset;
    padding: 1rem 2.5rem 1rem;
  }
}
.folders_filter .refinement-btn {
  border: none;
  background-color: transparent;
  padding: 1rem;
}

.filter-type {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-left: 1.875rem;
}

.folders-info-container {
  margin-top: 1.5rem;
  margin-left: 2.5rem;
}
/*# sourceMappingURL=folders.css.map*/