/** Header **/
.page-container {
  position: relative;
}

.breadcrumbs span{
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumbs{ 
  padding-left: 0px;
}

.page-container header.header-section {
  position: absolute;
  width: 100%;
  z-index: 4;
}

.headerText {
  position: absolute;
  top: 275px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
}

.header_banner {
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#header-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background_visual {
  position: relative;
  width: 100%;
  height: 850px;
}

.background_visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--banner-overlay-gradient);
  z-index: 3;
}

.background_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.logo-bar {
  padding: 48px 0px 40px;
}

.logo {
  height: 56px;
  width: auto;
  max-width: 299.32px;
}

.shopping_bag {
  height: 24px;
  width: 24px;
}

.shopping_bag:hover,
.shoppingBagforSearch:hover {
  animation: up-down 1s 2 alternate;
}

@keyframes up-down {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15px);
  }
}

.shopping_bag_border {
  background-color: var(--white);
  height: 12px;
  width: 1px;
}

.header-btns {
  display: inline-grid;
  grid-auto-flow: column;
  grid-gap: 10px;
}

.hamburger {
  display: grid;
  grid-gap: 5px;
}

.hamburger span {
  background-color: var(--white);
  width: 24px;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler.is-active .hamburger span,
.row-full .hamburger span {
  background-color: var(--mine-shaft-black-600, #5E6263);
}

.navbar-toggler.is-active .hamburger span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.is-active .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.is-active .hamburger span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -o-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation {
  border-bottom: 1px solid var(--white);
}

a.nav-link {
  color: var(--white);
  font-weight: 500;
  line-height: 24px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.nav-item {
  position: relative;
}

.menu-item-has-children>a::after {
  display: inline-block;
  margin-left: .75em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.menu-item:hover ul.sub-menus {
  display: block;
}

ul.sub-menus {
  position: absolute;
  padding: 8px;
  list-style: none;
  font-size: inherit;
  display: none;
  width: 185px;
  text-wrap: wrap;
  border-radius: 4px;
  border: 1px solid var(--Grey-100, #EAEBEB);
  background: var(--White, #FFF);
  box-shadow: 0px 12px 16px -4px rgba(51, 51, 51, 0.08), 0px 4px 6px -2px rgba(51, 51, 51, 0.03);
}

ul.sub-menus li {
  display: flex;
  height: 32px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding: 6px;
}

.menu-item-has-children:hover .nav-link::after {
  transform: rotate(180deg);
}

.nav-link:focus,
.nav-link:hover,
.current-menu-item .nav-link .current-menu-parent .nav-link {
  color: var(--white);
  text-decoration: underline;
}

ul.navbar-nav {
  gap: 30px;
}

.search-icon {
  height: 20px;
  position: relative;
  width: 20px;
}

.input-group-text,
.search .form-control {
  background-color: transparent;
  border-radius: 26px;
  border: none;
}

.header_search {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  max-width: 283px;
  width: 100%;
}

.header-section .header_search input,
.header-section .header_search input::placeholder {
  color: var(--white) !important;
}

.header_search input:focus,
.filters input.form-control:focus {
  box-shadow: none;
}

/** Nav bar **/
#navbar-content {
  z-index: 1111;
}

.banner_text_section {
  padding: 72px 0px;
}

.learning-solutions-txt {
  color: var(--white);
  font-weight: 400;
  line-height: 32px;
  width: 100%;
  max-width: 456px;
}

.keyboard_arrow_down {
  height: 56px;
  width: 56px;
}

.partnership_logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.partnership_title.caption {
  text-align: left;
  margin-bottom: 8px;
}

/** Global Search **/
.row-full {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  height: auto;
  left: 49.65%;
  background-color: var(--white);
  padding: 40px 7%;
}

.search-container {
  max-width: 89%;
  height: fit-content;
  background-color: #ffffff;
  position: fixed;
  margin: auto;
  padding: 64px 40px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 123333;
}

.closeSearch {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--mine-shaft-black-700, #2B2E31);
  font-size: var(--desktop-body-large-font-size, 20px);
}

.search-inner {
  padding-bottom: 80px;
  flex-direction: column;
  align-items: flex-start;
}

.search_banner .banner_text_section {
  padding: 75px 0px 0px;
}

.search-container .search-input {
  display: flex;
}

.search-container .input-group {
  align-items: center;
  height: 50px;
  border-bottom: 1px solid #C1C2C2;
}

.search-container .form-control {
  border: none;
}

.search-container .form-control:focus {
  box-shadow: none;
  border: none;
  background-color: #ffffff !important;
}

.search-container .input-group-prepend .input-group-text .fas.fa-search {
  color: blue;
  font-size: 24px;
}

#searchInput::placeholder {
  color: var(--mine-shaft-black400);
  font-size: 18px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: -0.56px;
}

.search-suggestions ul {
  padding: 0;
  margin: 0;
}

.search-inner .menu li a {
  text-decoration: none;
  color: var(--mine-shaft-black600);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

#cancelButton {
  border: none;
  background-color: var(--white);
  color: var(--mine-shaft-black-700, #2B2E31);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.search-suggestions {
  display: flex;
  width: 60%;
  justify-content: flex-start;
  gap: 48px;
  padding-top: 30px;
}

#suggestions {
  width: 100%;
  color: var(--mine-shaft-black-700, #2B2E31);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  gap: 6px;
}

#recentSearches {
  width: 100%;
  color: var(--mine-shaft-black-700, #2B2E31);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  gap: 6px;
}

.suggestion-search {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-left: 16px;
}

.list-group-item {
  border: none;
}

.below-search {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-left: 40px;
  border-right: 1px solid #C1C2C2;
}

.loading_result {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-text {
  font-size: 16px;
  color: #000;
}

.loader-section {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}

.spinner-border {
  --bs-spinner-border-width: 0.2em;
  border-right-color: #C1C2C2;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.w-34 {
  width: 34%;
}

.suggestion-column {
  border-right: 1px solid #ebebeb;
}

/* .search-results {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  padding-top: 30px;
} */
.cancel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: black;
}

#crossButton {
  color: black;
  background-color: transparent;
  border: none;
}

.see-results-btn {
  border-radius: 4px;
  border: 1px solid var(--Mine-Shaft-Black-300, #d6d6d6);
  background: var(--White, #fff);
  color: var(--black);
  width: 350px;
  padding: 10px 16px;
}

.search-input input:-webkit-autofill,
.search-input input:-webkit-autofill:hover,
.search-input input:-webkit-autofill:focus,
.search-input input:-webkit-autofill:active {
  background: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
  -webkit-background-clip: text;
  -webkit-box-shadow: 0 0 0 50px white inset;
  -webkit-text-fill-color: #333;
}

input[data-autocompleted] {
  background-color: transparent !important;
}

.fa-solid,
.fas {
  margin-right: 10px;
}

.custom_bag_btn>a {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 12px;
}

.banner_txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.banner_description {
  max-width: 641px;
  width: 100%;
}

/* Login User Profile menu in header */
.profile-dropdown {
  position: relative;
  display: inline-block;
}

.profile-dropbtn {
  border-radius: 200px;
  border: 1px solid var(--White, #FFF);
  background: var(--Static-Background-Strong, #EBEBEB);
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.profile-dropdown-content {
  display: none;
  position: absolute;
  border-radius: 4px;
  border: 1px solid #D6D6D6;
  background: var(--White, #FFF);
  box-shadow: 0px 12px 16px -4px rgba(51, 51, 51, 0.08), 0px 4px 6px -2px rgba(51, 51, 51, 0.03);
  min-width: 185px;
  z-index: 111111;
  right: 0;
  padding: 8px;
}

.profile-dropdown-content a,
.sub-menu-item {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 6px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 100%;
  text-transform: capitalize;
}

.profile-dropdown-content a:hover,
.profile-dropdown-content a:active,
.sub-menu-item:hover,
.sub-menu-item:active {
  background: var(--Grey-100, #EAEBEB);
}

.profile-dropdown:hover .profile-dropdown-content {
  display: block;
}

/* plain header */
.white-btn-border {
  border-radius: 4px;
  border: 1px solid var(--Grey-200, #D6D9D8);
  background: var(--White, #fff);
  padding: 10px 16px;
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.plain-header a.nav-link {
  color: var(--cqf-black-500, #010101);
}

.plain-header .input-group-text,
.search .form-control {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.plain-header input::placeholder {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.plain-header {
  background: #fafafa;
}

.plain-header .input-group-text,
.plain-header .search .form-control {
  background-color: #fff;
}

.plain-header .search-icon {
  filter: invert(1);
}

.plain-header .navigation {
  border-bottom: 1px solid var(--Grey-100, #eaebeb);
}

/** Benefits of Membership **/
.bg_visual {
  height: 202px;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.membership_benefits_block {
  position: relative;
  z-index: 42;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.membership_benefits {
  position: relative;
  z-index: 2;
}

.membership_benefits_block .content_block {
  max-width: 780px;
  color: var(--cqf-black-400, #2B2E31);
  text-align: center;
  padding-top: 24px;
}

.membership_benefits .membership_middle_section {
  width: 100%;
  min-height: 275px;
}

.benefits_list {
  display: flex;
  flex-direction: row;
  width: 93%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.benefit_card {
  width: 203px;
  height: 203px;
  transform: rotate(-135deg);
  flex-shrink: 0;
  border-radius: 12.386px;
  margin: 40px auto;
}

.benefit_card_inner {
  transform: rotate(135deg);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/** Featured Events **/
.bottom_texture {
  height: 100%;
  right: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: url(../images/events_visual.svg) no-repeat;
  background-position: bottom right;
  background-size: contain;
  display: none;
}

.event_img {
  height: 232px;
  width: 100%;
  position: relative;
}
.related_topics .speaker-image {
  background: transparent !important;
}
.event_img img,
.speaker-img.speaker_placeholder {
  object-fit: cover;
  width: 80px;
  height: 80px;
  max-width: 80px;
  border: 2px solid var(--white, #FFF);
  border-radius: 4px;
}
.event-featured-image-div {
    height: 400px;
}
.events_benefits_block {
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.featured_events .events_benefits {
  background-image: url(../images/featured-event-bg.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.event_img .cate {
  display: flex;
  padding: 4px 16px;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  color: var(--cqf-black-500, #010101);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.event_img .sel_cat img {
  max-width: 22px;
  max-height: 22px;
}

.event_card_inner .top_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.event_meta .event_loc {
  color: var(--pink-600, #8e1e7b);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.event_meta .event_time {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.event_details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event_card_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.event-list-card .heading-5 {
  color: var(--cqf-black-500, #010101);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event_details p {
  color: var(--cqf-black-400, #2B2E31);
}

.event_border {
  height: 1px;
  width: 100%;
  background: var(--grey-100, #eaebeb);
  margin: 16px 0;
  display: inline-block;
}

.event_orgainser {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
}

.author_avatar {
  display: flex;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.author_name {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
  text-transform: capitalize;
}

.event_card_inner .white_btn {
  border: 1px solid var(--dark-blue-600, #0f476b);
  background: var(--white, #fff);
  color: var(--dark-blue-600, #0f476b);
}

.event_details .benefit_detail {
  height: 96px;
  overflow: hidden;
}

.event_card_inner .white_btn:hover {
  border-radius: 4px;
  border: 1px solid var(--dark-blue-600, #0f476b);
  background: var(--dark-blue-100, #e0e8ed);
}

/** Featured Video **/
.featured_video .bightcove_video_block {
  position: absolute;
  z-index: 112233;
  top: 20%;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
}

.video_inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  background: var(--grey-50, #fafafa);
}

.video_inner .left_box {
  display: flex;
  max-width: 609px;
  padding: 40px 0px 40px 48px;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  align-self: stretch;
}

.video_inner .right_box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-width: 500px;
  width: 100%;
}

.video_inner .right_box>img {
  min-height: 470px;
}

.video_inner .play_icon {
  position: absolute;
  width: 100%;
  left: calc(45%);
  margin: 0 auto;
  height: 100%;
  top: calc(45%);
}

.video_benefits_block {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.video_inner .heading-3 {
  color: var(--cqf-black-500, #010101);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video_inner .benefit_detail {
  color: var(--cqf-black-400, #2B2E31);
}

.play_icon img {
  width: 40px;
  height: 40px;
}

.video_inner .left_box .custom_btns {
  margin-top: 24px;
}

/** Certification Section **/
.certificate_benefits_block {
  display: flex;
  flex-direction: column;
  gap: 64px;
  z-index: 4;
}

.certificate_top_section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.certificate_top_section .heading-2 {
  color: var(--white, #ffffff);
}

.certificate_top_section .text_dark_blue {
  color: var(--mine-shaft-black-800, #010101);
}

.certificate_top_section .content_block {
  max-width: 750px;
  width: 100%;
  margin: 0;
}

.certificate_benefits:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 72px 113px 0px;
  border-color: transparent transparent var(--white) transparent;
  left: 0px;
  top: -21px;
  position: absolute;
  transform: rotate(90deg);
}

.certificate_benefits:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 87px 87px 0px;
  border-color: transparent var(--white) transparent transparent;
  right: 0px;
  bottom: 0;
  position: absolute;
  transform: rotate(90deg);
}

.dots_texture {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.top_dots_texture.dots_texture {
  background: url(../images/top_dots.png) no-repeat;
  height: 100%;
  left: 0;
  top: 0;
}

.bottom_dots_texture.dots_texture {
  background: url(../images/bottom_dots.png) no-repeat;
  height: 408px;
  right: 0;
  bottom: 0;
  width: 83%;
}

.certificate_middle_section {
  border-top: 1px solid var(--Blue-500, #6DAAD0);
  display: flex;
  padding-top: 64px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.carti_cards {
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.carti_card {
  border-radius: 8px;
  border: 1px solid var(--Blue-200, #d2e9f8);
  background: var(--White, #fff);
  padding: 40px;
  width: 48%;
}

.carti_cards_inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.carti_cards_inner .left_box {
  width: 77%;
}

.carti_cards_inner .heading-5 {
  color: var(--cqf-black-500, #010101);
}

.carti_cards_inner .benefit_detail {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 15px;
}

/** Job Opening CTA **/
.subscribe_insight_cta {
  border-top: 1px solid var(--grey-100, #eaebeb);
  color: var(--white, #ffffff);
}

.blue_cta_box {
  display: flex;
  padding: 56px 32px;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  background-image: url(../images/cta_bg.png);
  background-position: 85%;
  background-repeat: repeat-x;
  background-size: 58% 100%;
  transition: all 0.3s ease-in-out;
  gap: 48px;
}

.Innerblue_cta_box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.Innerblue_cta_box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 90px 100px 0px;
  border-color: transparent #ffffff transparent transparent;
  right: 0;
  bottom: -21px;
  position: absolute;
  transform: rotate(90deg);
}

.blue_cta_box:hover {
  background-size: 70% 120%;
  background-position: 100%;
}

.blue_cta_box .custom_btns {
  padding: 12px 20px;
}

/* event */
.event-featured-sub-title {
  border-radius: 2px;
  color: var(--White, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 32px;
}

.event-data h2 {
  color: var(--cqf-black-500, #010101);
  font-size: 28px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: -0.56px;
}

.single_conference_sponsors_block h2>span {
  width: 100%;
  display: inline-block;
}

.event-featured-row {
  padding-top: 40px;
}

.event-sub-title {
  margin-bottom: 32px;
}

.speakers-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.event-list-ul {
  list-style: none;
  padding-left: 0px;
  color: var(--cqf-black-300, #798080);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.event-list-ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.event-list-ul li img {
  padding-right: 10px;
}

.event-featured-image-div {
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
  padding-left: 50px;
}

.events-slider-stage {
  padding-left: 0px !important;
}

.speaker-item {
  display: flex;
  flex-direction: column;
}

.speaker-image .speaker-name {
  color: var(--white, #FFF);
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
  max-width: 140px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 8px;
}

.event-single-section .custom_btns {
  display: inline-block;
}

.event-single-section .speakers-div {
  display: block;
}

.filter-div .filter-title {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.filter-select {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* All events */
.all-events-section .speaker-img {
  border: 2px solid var(--white, #FFF);
  height: 80px;
  width: 100%;
  max-width: 80px;
  object-fit: cover;
  border-radius: 4px;
}

#single-event-featured img.speaker-img,
img.speaker-img,
.speaker-img.speaker_placeholder {
  border: 2px solid var(--white, #FFF);
  border-radius: 4px;
}

.speaker-wrapper {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 4px;
}

#event-filter-form,
.filter-btn-wrapper d-flex flex-column-reverse flex-md-row gap-4 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
}

.all-events-section .filter-btn-wrapper d-flex flex-column-reverse flex-md-row gap-4 {
  flex-direction: column-reverse;
}

.all-events-section .event_img .sel_cat,
.event_img .sel_cat {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  z-index: 1;
}

.all-events-section .event-list-container h2 {
  color: var(--cqf-black-500, #010101);
  text-overflow: ellipsis;
  font-size: 28px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: -0.56px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#selected_topic_filter h4 {
  color: var(--cqf-black-500, #010101);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--Grey-100, #EAEBEB);
}

.events_bottom_section {
  display: inline-block;
}

.border_blue_btn {
  border-radius: 4px;
  border: 1px solid var(--Dark-Blue-600, #0f476b);
  background: var(--White, #fff);
  color: var(--Dark-Blue-600, #0f476b);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 20px;
  text-decoration: none;
  display: inline-table;
}

.speakers-flex-div {
  display: flex;
  gap: 10px;
  margin-left: 0;
  margin-bottom: 0;
}

.all-events-section .owl-carousel .speaker-img {
  object-fit: cover;
}

.event-list-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#load-more-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.custom_btns {
  border: none;
}

.event-list-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-title-list {
  height: 100%;
}

.speakers-div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: nowrap;
  padding-top: 16px;
}

.event-list-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  height: 100%;
}

/** Events Confrence Page **/
.all_confrence_events .event-featured-row:before {
  content: "";
  background-color: var(--Pink-600, #8e1e7b);
  width: 98%;
  height: 6px;
  display: block;
  margin: 0 auto 40px auto;
}

.all_confrence_events_block .event_details .heading-5 {
  min-height: 105px;
}

.featured_event_speaker {
  border-radius: 50%;
}

.featured_speaker_name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.circle_visual {
  border-radius: 649px;
  background: linear-gradient(225deg,
      rgba(237, 237, 237, 0.31) 25%,
      rgba(249, 249, 249, 0) 39.41%);
  position: absolute;
  right: 101px;
  top: 26px;
  width: 649px;
  height: 649px;
}

/** From Our Attendees **/
.testimonial_item {
  border-radius: 4px;
  box-shadow: 0px 1px 0px 0px rgba(199, 199, 199, 0.25);
  display: flex;
  padding: 32px;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  width: 65%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: url(../images/globe.webp) #fff no-repeat;
  background-position: 280px bottom;
  background-size: 625px;
}

.testimonial_item.display_image {
  width: 98%;
  align-items: flex-start;
  padding: 0;
  background-position: 465px bottom;
  background-size: 785px;
}

.attendee_data_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  gap: 48px;
}

.attendee_name {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.attendee_role {
  color: var(--cqf-black-300, #798080);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.attendee_details {
  display: flex;
  gap: 48px;
  align-items: stretch;
  flex: 1 0 0;
  height: 100%;
}

.testimonial_item.display_image .attendee_details {
  width: 50%;
  padding: 32px 32px 32px 0;
}

.star-rating {
  display: flex;
  gap: 6px;
}

.star {
  font-size: 16px;
  color: var(--mine-shaft-black-200, #ebebeb);
  position: relative;
}

.star.full,
.star.half {
  color: rgba(217, 115, 13, 1);
}

#star-rating .star .fas {
  margin-right: 0;
}

.all_confrence_events::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 100px 60px;
  border-color: transparent transparent transparent var(--white);
  right: 0px;
  top: -20px;
  position: absolute;
  transform: rotate(90deg);
}

/** Become a Sponsor **/
.confrence_sponsors:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 72px 113px 0px;
  border-color: transparent transparent var(--dark-blue-100, #C4DDEA) transparent;
  left: 0px;
  top: -21px;
  position: absolute;
  transform: rotate(90deg);
}

.content_block {
  max-width: 816px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.confrence_sponsors_container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.sponsor_detail_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}

.sponsor_title {
  min-height: 72px;
}

/** Confrence Orgnizer **/
.organizer_logo {
  border-radius: 8px;
  border: 1px solid var(--Dark-Blue-200, #cfdae1);
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  align-self: stretch;
}

.organizer_logo img {
  height: 48px;
}

.organizer_bio {
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 0px 0px 8px 8px;
}

.organizer_bio p {
  color: var(--cqf-black-400, #2B2E31);
}

/* event single page */
.breadcrumbs,
.breadcrumbs a {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  z-index: 1;
  position: relative;
  vertical-align: text-bottom;
}

.breadcrumbs .breadcrumb_last,
.breadcrumbs .breadcrumb_last b,
.breadcrumbs strong {
  color: var(--cqf-black-300, #798080);
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 20px;
  text-overflow: ellipsis;
  width: max-content;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single_page_header .featured-img-container {
  min-height: 402px;
  border-radius: 4px;
}

/* single_event_block */
.single_event_block .single-event-title {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: -1.44px;
}

.single-event-data {
  max-width: 100%;
  width: 816px;
}

.single_event_block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-event-list,
.single-article-list {
  padding-left: 0px;
  list-style: none;
}

.single-event-list li {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--Grey-100, #eaebeb);
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.single_event_block .dark_blue_btn {
  display: inline-block;
}

.single-event-list img {
  padding-right: 10px;
}

.cpd-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.spreakers-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--Grey-200, #D6D9D8);
  padding-top: 64px;
}

.spreakers-row p {
  color: var(--Mine-Shaft-Black-600, #5E6263);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.spreakers-row h4 {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.speakers-title-h2 {
  overflow: hidden;
  color: var(--Mine-Shaft-Black-700, #333);
  text-overflow: ellipsis;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: -1.44px;
}

.all_confrence_events .event-date-time-div {
  padding-top: 16px !important;
}

.all_confrence_events .event-list-ul li {
  padding-bottom: 16px;
  display: flex;
}

/** Event Conference Detail Page **/
ul.single-event-meta {
  list-style: none;
  padding: 0;
  gap: 8px;
}

.single-conference-event-data {
  gap: 24px;
}

.single-event-meta-icon {
  filter: invert(88%) sepia(21%) saturate(935%) hue-rotate(23deg) brightness(37%) contrast(100%);
}

.single-event-meta>li {
  flex: 1 0 0;
  border-top: 1px solid var(--grey-200, #D6D9D8);
  padding-top: 16px;
  gap: 8px;
}

.single_conference_banner_logo {
  text-align: end;
  bottom: 40px;
  position: absolute;
  right: 40px;
}

.single_conference_speakers_block .card.speaker-card {
  border: none;
  position: relative;
}

.single_conference_speakers_block .card-img-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single_conference_speakers_block .card-img-cqfi {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 380px;
}

.card-designation-cqf {
  display: inline-block;
  margin-top: 8px;
  width: 100%;
  color: var(--mine-shaft-black-600, #5E6263);
  font-family: var(--desktop-body-medium-font-family);
  font-size: var(--desktop-body-medium-font-size);
  font-style: var(--desktop-body-medium-font-style);
  font-weight: var(--desktop-body-medium-font-weight);
  line-height: var(--desktop-body-medium-font-height);
}

.view-more-link {
  color: var(--blue-700, #1F7ABA);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: none;
}

.custom-popup-container {
  position: relative;
}

.single_conference_speakers_block .btn-close {
  right: 40px;
  position: absolute;
  top: 40px;
  cursor: pointer;
  z-index: 12;
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.popup-tab-content {
  margin-top: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.caption.selected_sponsor_title {
  color: var(--cqf-black-500, #010101);
  position: relative;
}

.sponsorship_level_divider {
  background: #D6D9D8;
  height: 1px;
  width: 43%;
}

.sponsorship_level {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
}

.sponsorship_level.moreBlock {
  padding-top: 48px;
}

.single_conference_sponsors_block .single-conference-event-data {
  gap: 56px;
}

.sponsors_list_block {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.single_conference_sponsors_block .sponsor_logo {
  display: flex;
}

.agenda .custom_btns img {
  margin-right: 8px;
}

.agenda .nav-tabs {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--white, #fff) !important;
  align-items: center;
}

.agenda .nav-link {
  color: var(--cqf-black-300, #798080) !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
  padding: 20px 32px;
}

.agenda .nav-tabs .nav-link.active,
.agenda .nav-tabs .nav-link:hover {
  color: var(--cqf-black-500, #010101) !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
  border: none;
  border-bottom: 3px solid var(--dark-blue-500, #3F6C89);
  text-decoration: none;
}

.event-table-header {
  color: var(--mine-shaft-black-500, #8E9192);
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.agenda .event-teble-time {
  color: var(--mine-shaft-black-700, #333);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.agenda .event-table-location,
.agenda .event-table-location a {
  color: var(--dark-blue-500, #3F6C89);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.agenda .event-conference-host {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  max-width: 200px;
}

.agenda .event-conference-host span {
  width: 100%;
  display: inline-block;
}

.agenda .table-striped>tbody>tr:nth-of-type(even)>* {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: #f2f6f8;
}

.agenda .table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--white, #ffffff);
}

.single_conference_event_content {
  max-width: 78%;
}

.agenda .book_now_btn {
  margin: 0 auto;
  text-align: center;
}

.agenda .book_now_btn .custom_btns {
  width: 230px;
}

.related_topic_view_all {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.related_topic_view_all .custom_btns {
  width: 306px;
}

/* custom select */
/*
.form-select:focus {
  --bs-form-select-bg-img: url(../images/arrow-up.svg);
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
  */
/* custom select */
/* event detail */
.event-detail-content-block {
  background-image: url("../images/content-arrow-background.svg");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

.clear-filter-btn {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: #fff;
  border: none;
}

.clear-filter-btn::before {
  content: "";
  background-image: url("../images/clear-filter.svg");
  padding-right: 30px;
  background-repeat: no-repeat;
  background-position: center left;
}

.cqfi_testimonial_slider.owl-carousel .testimonial_item,
.cqfi_testimonial_slider.owl-carousel .attendee_details {
  display: grid;
}

.slideBtns {
  display: flex;
  border-radius: 40px;
  border: 1px solid var(--grey-300, #B4B9B9);
  background: var(--white, #fff);
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.cqfi_testimonial_slider .owl-nav button {
  position: absolute;
  width: 100%;
  max-width: 200px;
  text-align: center;
  top: 0;
  bottom: 65px;
  margin: 0 auto !important;
}

.cqfi_testimonial_slider .owl-nav button.owl-next {
  right: 0;
}

.cqfi_testimonial_slider .owl-nav button.owl-prev {
  left: 0;
}

.cqfi_testimonial_slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  background: var(--dark-blue-300, #9DCBCF) !important;
}

.cqfi_testimonial_slider .owl-dots .owl-dot.active span,
.cqfi_testimonial_slider .owl-dots .owl-dot:hover span {
  background: var(--dark-blue-600, #0f476b) !important;
}

.cqfi_testimonial_slider .owl-dots {
  margin-top: 38px;
}

/* events */
.filter-event-btn {
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--Mine-Shaft-Black-300, #d6d6d6);
  background: var(--White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(51, 51, 51, 0.05);
}

.filter-event-btn.selectedDropdown {
  background: var(--grey-100, #EAEBEB);
}

.all-events-section .dropdown-item.active,
.all-events-section .dropdown-item:active {
  color: inherit;
  background-color: #fff;
}

.all-events-section .dropdown-toggle::after {
  border: none;
  background: url("../images/dropdown-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

.dropdown-filter-div .show::after {
  background: url("../images/dropdown-arrow-up.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.filter-div .dropdown-item {
  padding: 6px;
}

.filter-div .dropdown-item:hover,
.dropdown-filter-active {
  border-radius: 4px;
  background: var(--grey-100, #EAEBEB);
  cursor: pointer;
}

#sort_articles .dropdown-filter-active::after {
  display: none;
}

#sort_articles .dropdown-article-sort.dropdown-filter-active::before {
  border: none;
  background: url("../images/sel_sort.svg") no-repeat;
}

.timezone-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event_detail_timezone_box .timezone-filter-btn::before {
  background: url(../images/globe-timezone-light-blue.svg) no-repeat;
}

.timezone-filter-btn::before {
  content: "";
  background: url(../images/globe-timezone-light.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-flex;
  padding-left: 24px;
}

.dropdown-article-sort.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

#sort_articles .dropdown-article-sort::before {
  content: "";
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  border: 1px solid var(--grey-300, #B4B9B9);
  background: var(--white, #FFF);
  display: inline-flex;
}

.filter-toggle-div {
  display: flex;
  justify-content: space-between;
}

.clear-filter-desktop {
  border: none;
  color: var(--cqf-black-500, #010101);
}

.dropdown-menu.show {
  border-radius: 4px;
  border: 1px solid var(--Grey-100, #EAEBEB);
  background: var(--White, #FFF);
  box-shadow: 0px 12px 16px -4px rgba(51, 51, 51, 0.08), 0px 4px 6px -2px rgba(51, 51, 51, 0.03);
  padding: 8px;
  max-height: 340px;
  overflow-y: scroll;
}

/** Signin Page **/
.content {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.logo-container>.logo {
  height: 40px;
  width: auto;
  max-width: 214px;
}

.signin_page_row .heading-4 {
  color: var(--cqf-black-500, #010101);
  letter-spacing: -0.72px;
  margin-bottom: 16px;
}

.signin_text {
  width: 100%;
  text-align: left;
  margin-bottom: 32px;
}

.hide {
  display: none !important;
}

.signin_text p {
  color: rgba(51, 51, 51, 0.70);
  font-size: 16px;
  line-height: 24px;
}

.signin_text a {
  color: var(--blue-700, #1F7ABA);
}

.signin_page_row .label {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.error-message {
  display: none;
}

.error-message,
.error-message p {
  color: var(--fitch-red-700, #C03);
  font-size: 14px;
  margin-top: 10px;
  text-align: left;
  line-height: 20px;
}

.signin_page_row .is-invalid {
  border-radius: 4px;
  border: 1px solid var(--fitch-red-700, #C03);
  background: var(--white, #FFF);
  box-shadow: 0px 1px 2px 0px rgba(51, 51, 51, 0.05);
}

.required_element {
  color: var(--fitch-red-700, #C03);
  font-size: 14px;
  line-height: 20px;
}

.signin_page_row .toggle-password {
  position: absolute;
  right: 15px;
  top: 50px;
  bottom: 0;
}

.result {
  position: absolute;
  top: 17%;
  z-index: 1;
  left: 0;
  text-align: left;
  width: 100%;
}

.continue-btn {
  padding: 12px 20px;
  border-radius: 4px;
  background: var(--dark-blue-600, #0F476B);
  border: none;
  color: #fff;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 16px;
}

.signin_page_row.with_img .by-continuing-you-a {
  width: 70%;
  margin: 0 auto;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.signin_page_row.with_img .post-thumbnail {
  display: none;
}

.by-continuing-you-a p {
  color: var(--cqf-black-300, #798080);
  font-size: 12px;
  line-height: 16px;
}

.by-continuing-you-a a {
  color: var(--cqf-black-500, #010101);
}

.forgot-password {
  width: 100%;
  text-align: left;
  margin: 8px 0 24px;
}

#forgot-password-link {
  color: var(--blue-700, #1F7ABA);
  font-size: 14px;
  line-height: 20px;
}

/* Select Membership Type */
.plan_card.bottom-box {
  padding: 26px 16px;
}

.top-box-inner {
  border-radius: 8px;
  padding: 24px 16px 0 16px;
}

.mint_green .top-box-inner {
  background: linear-gradient(180deg, #CEE5E7 0%, rgba(255, 255, 255, 0.00) 100%);
}

.blue .top-box-inner {
  background: linear-gradient(180deg, #C4DDEA 0%, rgba(255, 255, 255, 0.00) 100%);
}

.pink .top-box-inner {
  background: linear-gradient(180deg, #E1C8DC 0%, rgba(255, 255, 255, 0.00) 100%);
}

.mint_green h4 {
  color: var(--seaweed-green-500, #3A989E);
}

.blue h4 {
  color: var(--blue-700, #1F7ABA);
}

.pink h4 {
  color: var(--pink-600, #8E1E7B);
}

.border_bottom {
  height: 1px;
  width: 100%;
  display: block;
}
.membership-cqfi .border_bottom {
  display:none;
}
.membership-cqfi .plan_card.top-box {
    height: 100%;
    width: 94%;
    padding-bottom: 32px;
    margin-top: 10px;
}

.mint_green .plan_card.top-box {
  border-bottom: 1px solid var(--seaweed-green-500, #3A989E);
}

.blue .plan_card.top-box {
  border-bottom: 1px solid var(--blue-700, #1F7ABA);
}

.pink .plan_card.top-box {
  border-bottom: 1px solid var(--pink-600, #8E1E7B);
}

.card-p p,
span.tax {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.local_tax {
  color: var(--cqf-black-300, #798080);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.membership-cqfi .list_box {
  border: 1px solid var(--grey-100, #EAEBEB);
  border-radius: 8px;
  position: relative;
  height: 100%;
  background: url("../images/tile_bg_visual.svg") no-repeat;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

ul.list_points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 200px;
}

ul.list_points li {
  gap: 8px;
  color: var(--cqf-black-400, #2B2E31);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

ul.list_points li::before {
  content: '';
  background: url(../images/check_circle.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  background-position: left center;
  padding-left: 30px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#back-to-btn {
  margin-top: 16px;
  border: none;
  color: var(--dark-blue-600, #0F476B);
  font-size: 16px;
  line-height: 24px;
}

.error.notify-error.forgot-notification.nortification.animateOpen {
  border-radius: 4px;
  background: var(--fitch-red-100, #FBEEF1);
  color: var(--fitch-red-700, #C03);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.forgot-notification {
  text-align: left;
  background: transparent;
  color: green;
}

.notify-error {
  color: var(--fitch-red-700, #C03);
  border: 1px solid var(--fitch-red-700, #C03);
  opacity: 1;
  background: #fff;
}

.notification {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.54);
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  font-family: Helvetica, Arial, sans-serif;
  transform: translateX(-300px);
  transition: transform .5s;
  position: absolute;
}

.membership-heading .sub-txt {
  max-width: 870px;
  margin: 0 auto;
}

/** My Account Page  **/
.myacc-header {
  flex-direction: column;
  gap: 48px;
  padding: 32px 24px 124px 24px;
}

#change_profile_password .spinner-border {
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

h1.my-account-heading,
.thankyou-heading {
  color: var(--cqf-black-500, #010101);
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: -1.44px;
}

.my_account_page .text-link {
  gap: 16px;
}

.my-acc-links {
  color: var(--blue-600, #1977B1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.my-acc-links:nth-child(2) {
  border-left: 1px solid var(--Grey-100, #EAEBEB);
  padding-left: 16px;
}
.profile-dropdown-content .my-acc-links:nth-child(2) {
    border-left: none;
    padding-left: 6px;
}
.account-icon-title {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.4px;
  gap: 16px;
}

.my_account_page .account-icon-title {
  color: var(--cqf-black-500, #010101);
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: -0.44px;
}

.person_bg {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--dark-blue-100, #e0e8ed);
}

.reg-tabs {
  padding-top: 16px;
}

.nav-tabs.reg-tabs .nav-link.active {
  border-bottom: 3px solid var(--dark-blue-500, #3F6C89);
}

.nav-tabs.reg-tabs .nav-link {
  padding: 20px 32px;
  color: var(--White, #fff) !important;
  border-bottom: 2px solid var(--White, #fff);
  background-color: transparent !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.nav-tabs.reg-tabs .nav-link.active .tab-txt {
  color: var(--cqf-black-500, #010101);
}

.tab-txt {
  color: var(--cqf-black-300, #798080);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.reg_event_content_box {
  padding: 24px;
  gap: 16px;
  border-radius: 4px;
  border: 1px solid var(--grey-100, #EAEBEB);
  background: var(--dark-blue-100, #C4DDEA);
}

.reg_event_content_box .info-img {
  width: 232px;
  height: 232px;
  border-radius: 4px;
  object-fit: cover;
}

.regEvent_text_col {
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  justify-content: space-between;
}

.page-template-event-booking-confirmation .regEvent_text_col {
  max-width: 600px;
}

.reg_event_content_box img.info-img-event {
  height: 220px;
  width: 248px;
  object-fit: cover;
}

.reg_event_content_box .image-col {
  width: 250px;
  display: contents;
}

.info-heading.userRole {
  overflow: hidden;
  color: var(--cqf-black-300, #5E6263);
  text-overflow: ellipsis;
  font-weight: 400;
  text-transform: capitalize;
}

.page-my-account .sma-desc .speakers-name {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.podcast_cate>.cate {
  border-radius: 30px;
  background: var(--dark-blue-100, #C4DDEA);
  padding: 4px 16px;
}

.icon_bg_layout {
  width: 40px;
  height: 40px;
  flex-direction: column;
  background: var(--pink-100, #F0E3EE);
  border-radius: 100px;
}

.event_cate_heading {
  color: var(--cqf-black-500, #010101);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.info-heading {
  color: var(--cqf-black-500, #010101);
  text-overflow: ellipsis;
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: -0.44px;
}

.info-description {
  color: var(--cqf-black-400, #2B2E31);
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.sma-desc {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.online {
  color: var(--seaweed-green-500, #3A989E);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 100px;
  background: var(--mint-green-200, #DDF2EE);
  padding: 4px 12px;
  /*width: 71px;*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deatils-txt {
  gap: 16px;
}

.membership_head {
  color: var(--cqf-black-300, #798080);
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.member-course {
  color: var(--cqf-black-500, #010101);
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: -0.44px;
  text-transform: capitalize;
}

.member-course>a {
  color: inherit;
  text-decoration: none;
}

.society_border {
  background: var(--Grey-100, #EAEBEB);
  width: 1px;
  height: 16px;
  margin-top: 3px;
}

#my_Societymembership_deatils .deatils-txt {
  flex-direction: column;
}

.society_detail {
  gap: 24px;
}

.input-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 30px;
  top: 24px;
  transform: translateY(-50%);
  cursor: pointer;
}

.membership_pages .form-control-checkout,
.membership_pages .form-select,
.my_account_page .form-control-checkout,
.my_account_page .form-select {
  width: 100%;
  display: flex;
  height: 48px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--Mine-Shaft-Black-300, #d6d6d6);
  box-shadow: 0px 1px 2px 0px rgba(51, 51, 51, 0.05);
}

.membership_pages .form-row,
.my_account_page .form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.membership_pages .form-select:focus,
.my_account_page .form-select:focus {
  --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
}

.membership_pages .form-row>.col,
.membership_pages .form-row>[class*=col-],
.my_account_page .form-row>.col,
.my_account_page .form-row>[class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.membership_pages .form-group,
.my_account_page .form-group {
  margin-bottom: 0px;
}

.membership_pages .btn.dark_blue_btn:hover,
:not(.btn-check)+.btn.dark_blue_btn:active,
.btn.dark_blue_btn:first-child:active,
.my_account_page .btn.dark_blue_btn:hover {
  background-color: var(--dark-blue-700, #0d324a);
  color: var(--white);
}

.membership_pages .form-control.is-valid,
.was-validated .form-control:valid,
.membership_pages .form-select.is-valid,
.was-validated .form-select:valid {
  border: 1px solid var(--Mine-Shaft-Black-300, #d6d6d6);
  background-image: none;
}

.required-asterisk {
  color: var(--fitch-red-700, #C03);
  font-weight: bold;
  margin-left: 4px;
}

.local_taxes_detail {
  gap: 8px;
}

.local_taxes_detail .card-sub-txt {
  font-size: 12px;
}

.local_tax_head {
  color: var(--cqf-black-500, #010101);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.local_tax_head.local_tax_small_head {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.payment_secure_msg {
  color: var(--cqf-black-300, #5E6263);
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.thanks_buttons {
  gap: 8px;
}

.info-description .membership_tag {
  color: var(--White, #FFF);
  font-family: Lato, sans-serif;
  font-style: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  border-radius: 2px;
  background: #29787F;
  padding: 2px 6px;
}

/*** Thank you Page ***/
.thankyou-1 {
  border-bottom: 1px solid var(--Grey-200, #D6D9D8);
}

.thankyou-header {
  flex-direction: column;
  gap: 16px;
}

.thankuou-illustration {
  width: 80px;
  height: 80px;
}

.below-thankyou h1 span {
  color: var(--cqf-black-300, #798080);
}

.benefit-container {
  gap: 24px;
}

li.event_detail_timezone_box {
  list-style: none;
}

.benefit-box {
  width: 100%;
  height: 168px;
  flex-direction: column;
  border-radius: 8px;
  background: #f2f8f8;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 24px;
  max-width: 23.3%;
}

.benefit-sm {
  color: var(--cqf-black-300, #798080);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.membership_pages .block_title {
  gap: 16px;
}

.alrdy_member {
  color: var(--cqf-black-300, #798080);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.member-signin {
  color: var(--blue-700, #1F7ABA);
  font-weight: 600;
  margin-left: 5px;
  text-decoration: none;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
}

.progress-bar {
  height: 100%;
  background-color: var(--dark-blue-600, #0f476b);
}

.membership_pages .collapse {
  overflow: hidden;
  transition: height 0.3s ease;
}

.membership_pages .collapse:not(.show) {
  height: 0;
  display: block;
}

.info_key {
  width: 20px;
  height: 20px;
}

.affliate-heading {
  color: var(--cqf-black-500, #010101);
  font-size: 28px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: -0.56px;
}

.membership_pages .form-check .form-check-label {
  font-size: 14px;
  line-height: 20px;
}

.btn-link {
  color: var(--mine-shaft-black-700, #333);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.go-back a {
  text-decoration: none;
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.go-back .arrow {
  font-size: 20px;
}

/* Add hover effects or other styles as needed */
.go-back a:hover .arrow,
.go-back a:hover .text {
  color: #0056b3;
}

.create {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.solid {
  border-bottom: 1px solid var(--Mine-Shaft-Black-200, #ebebeb);
}

.cart-details {
  width: 100%;
  margin-left: 20px;
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  border-radius: 4px;
  border: 1px solid var(--Mine-Shaft-Black-200, #ebebeb);
  height: fit-content;
}

.rightsection-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.Text-field {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 8px;
}

.participant-payment-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  padding-right: 32px;
}

.instructions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.participant-details {
  width: 100%;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Mine-Shaft-Black-200, #ebebeb);
  background: var(--Mine-Shaft-Black-50, #fafafa);
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 24px;
  width: 100%;
}

.payment-method-form {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-top: 24px;
}

.card-txt {
  color: var(--cqf-black-500, #010101);
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: -0.44px;
}

.card-sub-txt {
  color: var(--cqf-black-300, #798080);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 24px;
}

.person-img {
  width: 20px;
  height: 20px;
}

.part-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--Mine-Shaft-Black-200, #ebebeb);
}

.part-heading1 {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.custom_padding_checkout {
  padding-right: 124px;
  padding-left: 124px;
}

.checkout .checkout_row {
  border-right: 1px solid var(--Mine-Shaft-Black-200, #ebebeb);
}

.part-heading1.d-flex {
  width: 100%;
}

.participant-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
  row-gap: 24px;
  padding-top: 24px;
}

.card-total {
  color: var(--Mine-Shaft-Black-700, #333);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.by-continuing-you-a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

ul.instructions {
  list-style-type: none;
  padding: 16px 0;
  margin: 0;
}

.cart-item {
  display: flex;
  flex-direction: column;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

.btn-link:hover {
  color: var(--White);
}

.thank-you .benifit-heading {
  color: var(--cqf-black-500, #010101);
  font-size: 36px;
  font-weight: 900;
  line-height: 44px;
  /* 122.222% */
  letter-spacing: -0.72px;
}

.solid-border {
  border-top: solid var(--Grey-200, #D6D9D8);
}

.thank-you .box-txt {
  color: var(--cqf-black-500, #010101);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.thank-you .img-heading {
  color: var(--blue-700, #1F7ABA);
  font-size: 36px;
  font-weight: 900;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.thank-you .img-p {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.indus-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.time-day {
  color: var(--cqf-black-300, #798080);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.upgrate-mem {
  color: var(--blue-700, #1F7ABA);
  margin-top: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.pad-free {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Dark-Blue-100, #e0e8ed);
}

.event_booking .reg_event_content_box {
  min-height: 270px;
}

/** Event booking confirmation **/
.selected_event_details {
  flex-direction: column;
  gap: 48px;
}
.page-videos .background_visual::before {
  background-image: url(../images/video-hub-visual.svg);
  background-repeat: no-repeat;
  background-position: bottom;
}

.page-videos .single_featured_event {
  position: relative;
  overflow: hidden;
}

.page-videos .single_featured_event::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 85px 210px 0px;
  border-color: transparent transparent var(--dark-blue-600, #0F476B) transparent;
  right: 54px;
  top: -63px;
  position: absolute;
  transform: rotate(90deg);
}

.page-videos .single_featured_event::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 72px 113px 0px;
  border-color: transparent transparent var(--dark-blue-600, #0F476B) transparent;
  left: 20px;
  top: -21px;
  position: absolute;
  transform: rotate(90deg);
}

.access_to_magazine_row {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 71, 107, 0.25) 0%, rgba(15, 71, 107, 0.00) 90.7%);
}

.magazine_access_content ul {
  margin: 32px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.magazine_access_content ul li {
  color: var(--cqf-black-400, #2B2E31);
}
.magazine_access_content h1,
.magazine_access_content h2,
.magazine_access_content h3,
.magazine_access_content h4,
.magazine_access_content h5,
.magazine_access_content h6{
  color: var(--cqf-black-500, #010101);
}
.speaker-wrapper.magazineImg {
  min-height: 402px;
}
.all_magazine_border {
  border-top: 1px solid #EBEBEB;
}

.clearFilterbtn {
  color: var(--cqf-black-500, #010101);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 100%;
}

.load_more_module {
  max-width: 292px;
  width: 100%;
}

.single-video .no_sidebar_data.breadcrumbs {
  max-width: 800px;
  padding: 0;
}

.single-video .single-event-list li:last-child {
  border: none;
}

.single-video .single-event-list {
  margin-bottom: 0;
}

.additional_video_content .caption {
  overflow: hidden;
  color: var(--cqf-black-400, #2B2E31);
  text-overflow: ellipsis;
  text-align: left;
  margin-bottom: 16px;
}

ul.video_pdf_content {
  list-style: none;
  padding: 0;
  flex-direction: column;
  gap: 16px;
}

.video_pdf_content li>a {
  overflow: hidden;
  color: var(--cqf-black-400, #2B2E31);
  text-overflow: ellipsis;
  font-family: Lato, sans-serif;
  gap: 16px;
}

.video_pdf_content .pfd_icon {
  border-radius: 4px;
  background: var(--Fitch-Red-100, #FBEEF1);
  padding: 12px 16px;
}

.page-videos .event-featured-image-div,
.page-videos .all_events_block .speaker-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
}

.page-videos .speaker-wrapper .sel_cat {
  margin-top: 16px;
  margin-left: 16px;
}

.page-videos .bightcove_video_block {
  width: 100%;
  height: 100%;
}

.page-videos .speaker_block_outer {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 0 24px 24px;
}

.page-videos .event-featured-image-div {
  height: 100%;
  min-height: 232px;
}

/** Video Detail Page Sidebar **/
.related-videos-sidebar {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.sidebar_head {
  border-bottom: 1px solid var(--grey-200, #D6D9D8);
  padding-bottom: 24px;
}

.related_video_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 700px;
  overflow-y: scroll;
}

.event_detail_timezone_box1 {
  list-style: none;
}

.related_video_card>a {
  display: flex;
  flex-direction: row;
  gap: 24px;
  border-radius: 4px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.04), 0px 2px 2px 0px rgba(0, 0, 0, 0.04), 0px 4px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
  padding: 8px;
  text-decoration: none;
}

.related_video_card>a:hover {
  background: var(--Blue-50, #F4FAFD);
}

.related_video_img {
  width: 166px;
  border-radius: 4px;
}

.related_video_card .speakers-name.mint-green-text,.related_video_card .speakers-name.dark-blue-text {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.related_video_card>a>div {
  width: 46%;
}

.related_video_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--cqf-black-500, #010101);
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.event-detail-content-block h1,
.event-detail-content-block h2,
.event-detail-content-block h3 {
  width: 100%;
}

/** Articles Page **/
.page-articles .background_visual::before {
  background-image: url(../images/article_left_visual.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}

.page-articles .headerText {
  background-image: url(../images/right_article.svg);
  background-repeat: no-repeat;
  background-position: right;
  bottom: -200px;
  background-size: 375px;
}

.page-articles .banner_text_section {
  position: relative;
}

.page-articles .banner_text_section::after {
  content: "";
  background-image: url(../images/right_small_article.svg);
  background-repeat: no-repeat;
  background-position: right;
  width: 294px;
  height: 294px;
  bottom: -122px;
  position: absolute;
  right: 275px;
  z-index: -1;
}

.event-detail-content-block>div {
  width: 100%;
}

.single-article-list li {
  padding-bottom: 15px;
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.article_author_details {
  gap: 16px;
}

.author_meta_data {
  flex-direction: column;
}

.author_img>img {
  border-radius: 200px;
  border: 1px solid var(--white, #FFF);
  width: 48px;
  height: 48px;
}

.single_artcle_header_block {
  border-bottom: 6px solid var(--Dark-Blue-600, #0F476B);
}

.article_meta {
  color: var(--cqf-black-400, #2B2E31);
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.article_author_name.article_meta {
  color: var(--cqf-black-500, #010101);
}

.article_visual {
  position: absolute;
  right: 0px;
  top: 80px;
  width: 410px;
  height: 410px;
  background: url(../images/article_detail_visual.png) no-repeat;
  background-size: contain;
  opacity: 0.8;
}

.article_visual_small {
  position: absolute;
  right: 470px;
  top: 80px;
  width: 199px;
  height: 199px;
  background: url(../images/article_detail_visual_small.png) no-repeat;
  background-size: contain;
  opacity: 0.8;
}


/** Gated Content  **/
.gated_bg_overlay {
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  position: absolute;
}

.gated_content_block {
  position: relative;
  margin: 124px auto;
  border-radius: 16px;
  background: var(--White, #FFF);
  /*box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 0px 1px 0px rgba(0, 0, 0, 0.03), 0px 2px 2px 0px rgba(0, 0, 0, 0.04), 0px 4px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.07), 0px 1px 4px 0px rgba(0, 0, 0, 0.08);*/
  width: 752px;
  padding: 32px 40px;
  text-align: center;
  max-width: 100%;
}

.gated_content_message {
  flex-direction: column;
}

.lock_icon {
  max-width: 64px;
  margin: 0 auto 32px;
}

.gated_content_message p {
  margin-top: 16px;
  margin-bottom: 24px;
}

.membership_details {
  flex-direction: column;
  gap: 24px;
}

.event-list-container.magazine_list {
  gap: 16px;
}

.page-podcasts .headerText {
  background-image: url(../images/podcast-visual.svg);
  background-repeat: no-repeat;
  background-position: right;
}

.top_podcast_module .event-title-list {
  height: auto;
}

.subcribe_block .caption {
  color: var(--cqf-black-400, #2B2E31);
}

.single-magazine .content,
.single-podcast .content {
  align-items: flex-start;
}

.dark_blue_50_bg,
.single-podcast header {
  background: var(--dark-blue-100, #C4DDEA);
}

.dark_blue_50_bg .podcast_detail_block {
  margin: 0 auto;
  z-index: 2;
}

.dark_blue_50_bg .podcast_top_block::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/podcast-top-visual.svg) no-repeat;
  width: 397px;
  height: 225px;
}

.dark_blue_50_bg .podcast_top_block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/podcast-bottom-visual.svg) no-repeat;
  width: 665px;
  height: 334px;
  background-size: 89%;
}
.page-wilmott-magazine .background_visual::before {
  background-image: url(../images/wilmort-visual.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}

/** Career Page **/
/* .careerContentBlock {
  gap: 48px;
} */

.headSection {
  gap: 24px;
}

.careerInnerDes {
  max-width: 815px;
}

.careerContentSection:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 90px 90px 0px;
  border-color: transparent transparent #FFFFFF transparent;
  right: 0;
  top: -21px;
  position: absolute;
  transform: rotate(180deg);
}

img.attendee_img {
  max-height: 375px;
}

.career_icon_block>img {
  width: 64px;
  height: 64px;
}

.career_content_cards {
  gap: 16px;
  padding-bottom: 24px;
  height: 100%;
}

/** Acadmic Partners **/
.ap-card {
  border-radius: 4px;
  border: 1px solid var(--grey-100, #EAEBEB);
  background: var(--white, #FFF);
  padding: 24px 0px;
  gap: 24px;
  height: 100%;
}
.ap-card .local_tax_head {
  height: 100%;
}
.ap-card img.card-img-cqfi {
  height: 130px;
  object-fit: contain;
}

.ap_view_more {
  color: var(--blue-700, #1F7ABA);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.academic_partner_block .btn-close {
  float: right;
}

.academic_partner_block .popup-content {
  margin-top: 16px;
  display: inline-block;
}

.academic_partner_block .popup-content h5 {
  margin-bottom: 16px;
}

/** Download Forms **/
.download_forms_header_block {
  background: linear-gradient(57deg, #0F476B 21.97%, #007A87 95.72%), #D9D9D9;
}

.download_pages_banner_logo {
  width: 139px;
  height: 163px;
  border-radius: 4px;
}

.download_form_inner {
  gap: 24px;
}

.download_form_page_content,
.download_thankyou_content {
  gap: 16px;
}

.download_form_page_content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download_form_page_content ul li,
.download_form_page_content {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 20px;
  line-height: 32px;
  /* 160% */
  letter-spacing: -0.2px;
  font-family: 'Lato', sans-serif;
}

.below_form_text {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: -0.44px;
  font-family: 'Lato', sans-serif;
}

.download_form_thankyou .thankyou-header {
  gap: 40px;
  max-width: 882px;
  margin: 0 auto;
}

.download_thankyou_content_inner {
  gap: 24px;
}

#download_pdf_forms {
  gap: 14px;
}

label.form-check-label p {
  color: var(--cqf-black-400, #2B2E31);
  font-size: 14px;
  line-height: 20px;
}

label.form-check-label p a {
  color: var(--blue-700, #1F7ABA);
}

.society_region_heading h4 {
  overflow: hidden;
  color: var(--cqf-black-500, #010101);
  text-overflow: ellipsis;
  border-bottom: 6px solid var(--yellow-600, #F0AB00);
}

.society_region_heading {
  margin-bottom: 8px;
}

.society_listing_area_container {
  gap: 56px;
}

.society_block,
.about_owner {
  gap: 32px;
}

.society_top_block {
  gap: 24px;
}

.society_title {
  gap: 8px;
}

.join_society_con::after {
  content: "";
  background: url(../images/society_page_visual.svg) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 520px;
  height: 280px;
}

.join_society_content_inner {
  max-width: 815px;
  gap: 40px;
}

.about_owner_inner {
  gap: 16px;
}

.aboutSocietybox {
  gap: 52px;
}

.about_society_block_inner {
  border-radius: 4px;
  border: 1px solid var(--grey-100, #EAEBEB);
  padding: 104px 48px;
}

.about_owner>img {
  box-shadow: 7px 7px var(--yellow-600, #F0AB00);
}

.single-society .single_featured_event .pb-pt88 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.societyEventListing {
  border-top: 1px solid #E3E3E3;
  padding-top: 48px;
}

.yellow_btn.btn_dark_text.custom_btns {
  color: var(--cqf-black-500, #010101);
  /* display: flex; */
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  width: 150px;
}

.single-video h1,
.single-video h2,
.single-video h3,
.single-video h4,
.single-video h5,
.single-video h6 {
  overflow: hidden;
  color: var(--cqf-black-500, #010101);
  text-overflow: ellipsis;
  width: 100%;
}

.related-videos-sidebar .bc-player-Hk3akJKVZ_default .vjs-big-play-button {
  top: 80%;
  left: 61%;
  width: 1em;
  height: 1em;
}

.related-videos-sidebar .video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.related-videos-sidebar .video-js .vjs-play-control .vjs-icon-placeholder:before,
.related-videos-sidebar .vjs-icon-play:before {
  content: "\f101";
  font-size: 2rem;
  top: -24px;
}

.society_confirmation_block {
  max-width: 815px;
  margin: 0 auto;
  gap: 24px;
}

.society_confirmation .topBlock h1,
.society_confirmation .topBlock h2,
.society_confirmation .topBlock h3,
.society_confirmation .topBlock h4,
.society_confirmation .topBlock h5,
.society_confirmation .topBlock h6 {
  margin-bottom: 48px;
}

select#society_region {
  border-radius: 4px;
  border: 1px solid var(--Grey-200, #D6D9D8);
  background-color: var(--White, #FFF);
  box-shadow: 0px 1px 2px 0px rgba(51, 51, 51, 0.05);
  height: 48px;
  padding: 10px 16px;
  width: 280px;
  max-width: 100%;
}

/****** Footer CSS***********/
footer {
  background-color: var(--cqf-black-500);
  min-height: 400px;
}

footer p {
  color: var(--white, #ffffff);
  font-family: var(--desktop-body-small-font-family);
  font-size: var(--desktop-body-small-font-size);
  font-style: var(--desktop-body-small-font-style);
  font-weight: var(--desktop-body-small-font-weight);
  line-height: var(--desktop-body-small-line-height);
}

.footer-container {
  border-left: 1px solid #5E6263;
  border-right: 1px solid #5E6263;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-logo {
  max-height: 48px;
}

.social_media {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 24px;
}

footer .firstBlock {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bottomMenuBlock p {
  color: var(--dark-blue-300, #9DCBCF);
}

.bottomMenuBlock {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bottomMenuInner {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 400px;
  min-height: 60px;
}

.bottomFooterBox {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-menu ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0;
}

.footer-second-row {
  color: #ffffff;
}

.footer-third-section {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.footer-third-row .grey-top {
  border-top: 1px solid #5E6263;
}

.footer-third-row p,
.footer-third-row .c-right {
  color: var(--cqf-black-200, #A8A8A8);
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .caption {
  color: var(--white, #FFF);
  font-family: var(--desktop-caption-font-family);
  font-size: var(--desktop-caption-font-size);
  font-style: var(--desktop-caption-font-style);
  font-weight: var(--desktop-caption-font-weight);
  line-height: var(--desktop-caption-line-height);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.topMenuBlock {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 32px;
}

ul.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu .menu-item a {
  color: var(--white, #FFF);
  font-family: var(--desktop-body-small-font-family);
  font-size: var(--desktop-body-small-font-size);
  font-style: var(--desktop-body-small-font-style);
  font-weight: var(--desktop-body-small-font-weight);
  line-height: var(--desktop-body-small-line-height);
  text-decoration: none;
}

.footer_menu_box {
  display: flex;
  padding-left: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  min-height: 158px;
}

.menu-footer-bottom-menu-container {
  width: 100%;
}

ul#menu-footer-bottom-menu {
  flex-direction: row;
  justify-content: space-between;
}

.bottom-right {
  clip-path: polygon(100% 0, 100% 90%, 95% 100%, 0 100%, 0 0);
}

.subscribe_profiles {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}

.subcribe_block {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.about-us-banner .dark-title,
.cqf_institute_in_numbers .dark-title,
.benefits_of_hiring .dark-title {
  color: var(--cqf-black-500, #010101);
  font-family: Lato, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 88px;
  /* 110% */
  letter-spacing: -3.2px;
}

.about-us-banner .light-title,
.cqf_institute_in_numbers .light-title,
.benefits_of_hiring .light-title {
  color: var(--cqf-black-300, #5E6263);
  font-family: Lato, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 88px;
  letter-spacing: -3.2px;
}

.about-us-banner .main-content p {
  color: var(--cqf-black-500, #010101);
  font-family: Lato, sans-serif;
  font-size: 28px !important;
  font-style: normal;
  font-weight: 900;
  line-height: 36px;
  /* 128.571% */
  letter-spacing: -0.56px;
}

.about-us-banner .light-content {
  color: var(--cqf-black-400, #2B2E31);
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
  letter-spacing: -0.2px;
}

.shapes-div {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}

.shapes-div .pattern-one {
  position: absolute;
  right: 0;
  top: 9%;
}

.shapes-div .pattern-two {
  position: absolute;
  left: 50%;
  bottom: -20%;
}

.about-us-banner {
  padding-bottom: 80px;
}

.about-us-banner .content-holder {
  z-index: 99;
  position: relative;
}

.about-us-banner .content-holder .header_with_banner .breadcrumbs,
.about-us-banner .breadcrumbs a {
  color: var(--cqf-black-500, #010101);
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.about-us-banner .content-holder .header_with_banner .breadcrumbs .breadcrumb_last,
.header_with_banner .breadcrumbs .breadcrumb_last b,
.header_with_banner .breadcrumbs strong {
  color: var(--cqf-black-300, #5E6263);
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-overflow: ellipsis;
    width: max-content;
  /* 142.857% */
}

.blue-border {
  border-top: 6px solid var(--Dark-Blue-600, #0F476B);
  opacity: 1;
}

.cqf-institute-in-numbers .benefit_card {
  box-shadow: -20px 19px 0px -2px #ffffff, -20px 19px 0px #EAEBEB;
}

.cqf-institute-in-numbers .benefits_list {
  display: flex;
  flex-direction: row;
  /* width: 100%; */
  align-items: center;
  /* justify-content: center; */
  margin: 0 auto;
  gap: 80px;
}

.cqf-institute-in-numbers .heading-6 {
  color: var(--cqf-black-500, #010101);
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 56px;
  /* 116.667% */
  letter-spacing: -1.44px;
}

.cqf-institute-in-numbers .benefit_detail {
  color: var(--cqf-black-400, #2B2E31);
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.patners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.industry-groups .light-title {
  color: var(--cqf-black-300, #5E6263);
  font-family: Lato, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 72px;
  letter-spacing: -2.56px;
}

.industry-groups {
  background: var(--dark-blue-100, #C4DDEA);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 6%);
  /* clip-path: polygon(0 0, 100% 0, 100% 89%, 89% 100%, 0 100%); */
}

.industry-groups::after {
  content: '';
  clip-path: polygon(0 0, 100% 0, 100% 89%, 89% 100%, 0 100%);
}

.industry-groups .group-name {
  color: var(--cqf-black-400, #2B2E31);
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 36px;
  /* 128.571% */
  letter-spacing: -0.56px;
  border-bottom: 1px solid var(--Grey-200, #D6D9D8);
  ;
}

.industry_stage {
  display: flex;
  gap: 20px;
}

.groups-images {
  border-radius: 8px;
  width: 100%;
}

.benefits_of_hiring .description {
  color: var(--cqf-black-400, #2B2E31);
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
  letter-spacing: -0.2px;
  max-width: 815px;
}

.benefits_of_hiring .title-div {
  background-image: url(../images/benefits_of_hiring.svg);
  background-repeat: no-repeat;
  background-position: right;
}

.benefits-card .card-body {
  padding-right: 24px;
  padding-left: 24px;
}

.benefits_of_hiring .benefits-card .card-body {
  padding: 24px;
  margin-top: 16px;
}

.benefits_of_hiring .card-img-top {
  border-radius: 0px;
}

.benefits-card .card:nth-child(2) .card-body,
.benefits-card .card:nth-child(3) .card-body,
.benefits-card .card:nth-child(5) .card-body,
.benefits-card .card:nth-child(6) .card-body,
.benefits-card .card:nth-child(8) .card-body,
.benefits-card .card:nth-child(9) .card-body {
  border-left: 1px solid var(--Grey-200, #D6D9D8);
}

.benefits_of_hiring .points ul {
  list-style: none;
  padding-left: 0;
}

.benefits_of_hiring .points ul li {
  border-bottom: 1px solid var(--Grey-200, #D6D9D8);
  margin-bottom: 12px !important;
  padding-bottom: 12px;
}

.points-one {
  padding-right: 0;
}

.orrange-btn a {
  border-radius: 4px;
  background: var(--Orange-600, #DA7046);
  color: var(--White, #FFF);
  /* Desktop/Button Large */
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  padding: 16px 24px;
  text-decoration: none;
}

.employers-slider {
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--Grey-100, #EAEBEB);
  background: var(--dark-blue-100, #C4DDEA);
  background-image: url('../images/worldmap.png');
  background-repeat: no-repeat;
  background-position: bottom right;

}

.employers-slider .content,
.employers-slider .content p {
  color: var(--cqf-black-500, #010101);
  /* Desktop/Heading 6 */
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 30px;
  /* 136.364% */
  letter-spacing: -0.44px;
}

/* .page-societies .yellow_btn.btn_dark_text.custom_btns {
  float: right;
} */

.banner-r {
  position: relative;
  padding: 0;
}

.arrow-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.socity_card {
  height: 282px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 20px;
}

.socity_card:after {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.00) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.socity_card_title {
  overflow: hidden;
  color: var(--White, #FFF);
  text-overflow: ellipsis;
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 32px;
  /* 160% */
  letter-spacing: -0.2px;
}

.spreakers-row:last-child {
  border-bottom: 0px !important;
}

.recruit_banner .header_with_banner .breadcrumbs,
.recruit_banner .breadcrumbs a {
  color: var(--cqf-black-500, #010101);
}

.flowpaper-logo-bg {
  display: none !important;
}

#results {
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

#results ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#results li {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

#results li:hover {
  background-color: #f0f0f0;
}

.non_conference_events_details::after {
  content: "";
  background: url("../images/event_detail_visual.svg");
  background-position: center;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

.single .short_description {
  -webkit-line-clamp: none;
}

.suggestion-li a {
  text-decoration: none;
  color: #333;
}
.event_detail_timezone_box1
 {
    list-style: none;
}
.event_detail_timezone_box1 .timezone-filter-btn::before {
  filter: invert(42%) sepia(20%) saturate(500%) hue-rotate(170deg) brightness(90%) contrast(90%);
}

.event_detail_timezone_box1 button#dropdownTimezoneBtn {
  color: #0F476B;
  border: none;
  box-shadow: none;
  padding-left: 0;
}
.cpd-logo {
  float: right;
}
.disabledBtn {
    opacity: 0.7;
}
.footer-border {
    background: var(--dark-blue-600, #0F476B);
    height: 6px;
}
a.viewAllEvents {
    color: var(--blue-700, #1F7ABA);
    font-family: var(--desktop-link-large-font-family, 'Lato, sans-serif');
    font-size: var( --desktop-link-large-font-size, 16px);
    font-weight: var( --desktop-link-large-font-weight, 500);
    line-height: var( --desktop-link-large-line-height, 24px);
    text-decoration: none;
}
.cqfi_speaker_slider .col-4.event_card.owl-item {
    display: none!important;
}
.board_member_metadata .local_tax_head.bm_company{
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single_podcast_block .podcast_detail_block {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
a#clear-filters-mobile {
    background: transparent;
    border: none;
    cursor: pointer;
}
.job_search_form a#clear-filters-mobile {
    display: none;
}
.subscribe_profiles img {
    max-width: 20px;
}
.img-job-icon {
  width: 20px;
  max-width: 20px;
}
.job_detail_block .job_meta_data{
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.page-job-board .banner_txt_inner{
  flex-wrap: wrap;
  row-gap: 20px;
}
.podcast-template-default .event-detail-content-block1{
  gap: 10px;
}
#processed_checkout {
    display: flex;
    flex-direction: column;
    align-items: end;
}

