#user-sidebar {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #f2f6f8;
  font-family: "Poppins", sans-serif;
  width: 340rem;
}

#user-sidebar>div,
#user-sidebar .panel,
#user-sidebar .panel-content {
  height: 100%;
}

#user-sidebar .panel-content {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#user-sidebar .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  border-bottom: 0;
}

#user-sidebar .panel-header-content {
  flex: 1;
  min-width: 0;
}

#user-sidebar .panel-header-name,
#user-sidebar .panel-header-title {
  margin: 0;
  line-height: 1.2;
  color: var(--black);
}

#user-sidebar .panel-header-title {
  font-weight: 400;
}

#user-sidebar .panel-header-cross {
  flex-shrink: 0;
  margin-left: var(--12);
}

#user-sidebar .panel-close-btn {
  width: 24rem;
  height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background-color: var(--black);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#user-sidebar .panel-close-btn::before {
  content: "";
  display: block;
  width: 12rem;
  height: 12rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2713%27%20height%3D%2715%27%20viewBox%3D%270%200%2013%2015%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M11.9062%201.78125L7.4375%207.125L11.9062%2012.5C12.25%2012.9062%2012.1875%2013.5312%2011.7812%2013.9062C11.3438%2014.25%2010.7188%2014.1875%2010.3438%2013.7812L6.125%208.6875L1.90625%2013.7812C1.53125%2014.1875%200.90625%2014.25%200.5%2013.9062C0.0625%2013.5312%200%2012.9062%200.34375%2012.5L4.8125%207.125L0.34375%201.78125C0%201.34375%200.0625%200.71875%200.5%200.34375C0.90625%200%201.53125%200.0625%201.90625%200.5L6.125%205.5625L10.3438%200.5C10.7188%200.0625%2011.3438%200%2011.7812%200.34375C12.1875%200.71875%2012.25%201.34375%2011.9062%201.78125Z%27%20fill%3D%27white%27/%3E%3C/svg%3E");
}

#user-sidebar .panel-body {
  display: flex;
  flex-direction: column;
  margin-bottom: 42rem;
}

#user-sidebar .panel-body-item {
	display: inline-block;
	color: var(--black);
	text-decoration: none;
	cursor: pointer;
	border-bottom: 0;
	border-radius: 4rem;
	padding-right: 30rem;
	/* width: 271rem; */
	transition: background-color 0.2s ease;
}

#user-sidebar .panel-body-item p {
  margin: 0;
  color: var(--black);
  font-size: var(--text-size-100);
}

#user-sidebar .panel-body-item:hover,
#user-sidebar .panel-body-item:focus-visible {
  background-color: var(--teal-10);
}

#user-sidebar .panel-body-item:focus-visible {
  outline: 2rem solid var(--teal);
  outline-offset: 2rem;
}

#user-sidebar .panel-signout {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 56rem;
  flex-shrink: 0;
}

#user-sidebar .panel-signout a {
  margin: 0;
}

#mobile-nav .panel-support,
#user-sidebar .panel-support {
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  background-color: var(--teal);
  display: none;
}

#mobile-nav .pure-inner {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 140rem);
}

#mobile-nav .panel-support {
  height: auto;
  min-height: 0;
  flex: 1 1 auto;
  padding-bottom: 42rem;
}

#mobile-nav .panel-support-title,
#user-sidebar .panel-support-title {
  margin-bottom: 12rem;
  margin-top: 0;
  color: var(--white);
  font-size: var(--text-size-200);
  font-weight: 700;
  line-height: 1.2;
}

#mobile-nav .panel-support-item,
#user-sidebar .panel-support-item {
  display: flex;
  align-items: center;
  gap: 12rem;
  margin-top: 12rem;
  text-decoration: none;
}

#mobile-nav .panel-support-item:first-of-type,
#user-sidebar .panel-support-item:first-of-type {
  margin-top: 0;
}

#mobile-nav .panel-support-text,
#user-sidebar .panel-support-text {
  color: var(--white);
  font-size: var(--text-size-200);
  line-height: 1.3;
  font-weight: 400;
  text-decoration: none;
}

#mobile-nav .panel-support-icon,
#user-sidebar .panel-support-icon {
  position: relative;
  width: 30rem;
  height: 30rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

#mobile-nav .panel-support-icon::before,
#user-sidebar .panel-support-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: var(--white);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: opacity 0.2s ease;
}

#mobile-nav .panel-support-item:hover .panel-support-text,
#mobile-nav .panel-support-item:focus-visible .panel-support-text,
#user-sidebar .panel-support-item:hover .panel-support-text,
#user-sidebar .panel-support-item:focus-visible .panel-support-text {
  text-decoration: underline;
}

#mobile-nav .panel-support-item:hover .panel-support-icon,
#mobile-nav .panel-support-item:focus-visible .panel-support-icon,
#user-sidebar .panel-support-item:hover .panel-support-icon,
#user-sidebar .panel-support-item:focus-visible .panel-support-icon {
  background-color: transparent;
}

#mobile-nav .panel-support-item:hover .panel-support-icon::before,
#mobile-nav .panel-support-item:focus-visible .panel-support-icon::before,
#user-sidebar .panel-support-item:hover .panel-support-icon::before,
#user-sidebar .panel-support-item:focus-visible .panel-support-icon::before {
  opacity: 0;
}

#mobile-nav .panel-support-item:hover .panel-support-icon-phone,
#mobile-nav .panel-support-item:focus-visible .panel-support-icon-phone,
#user-sidebar .panel-support-item:hover .panel-support-icon-phone,
#user-sidebar .panel-support-item:focus-visible .panel-support-icon-phone {
  background-image: url("../images/user-sidebar-phone-hover.svg");
}

#mobile-nav .panel-support-item:hover .panel-support-icon-email,
#mobile-nav .panel-support-item:focus-visible .panel-support-icon-email,
#user-sidebar .panel-support-item:hover .panel-support-icon-email,
#user-sidebar .panel-support-item:focus-visible .panel-support-icon-email {
  background-image: url("../images/user-sidebar-mail-hover.svg");
}

#mobile-nav .panel-support-item:hover .panel-support-icon-chat,
#mobile-nav .panel-support-item:focus-visible .panel-support-icon-chat,
#user-sidebar .panel-support-item:hover .panel-support-icon-chat,
#user-sidebar .panel-support-item:focus-visible .panel-support-icon-chat {
  background-image: url("../images/user-sidebar-message-hover.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30rem 30rem;
}

#mobile-nav .panel-support-icon-phone,
#user-sidebar .panel-support-icon-phone {
  --support-mask: url("../images/icon-phone.svg");
  background-image: url("../images/user-sidebar-phone.svg");
}

#mobile-nav .panel-support-icon-phone::before,
#user-sidebar .panel-support-icon-phone::before {
  -webkit-mask-image: var(--support-mask);
  mask-image: var(--support-mask);
}

#mobile-nav .panel-support-icon-email,
#user-sidebar .panel-support-icon-email {
  --support-mask: url("../images/icon-mail.svg");
  background-image: url("../images/user-sidebar-mail.svg");
}

#mobile-nav .panel-support-icon-email::before,
#user-sidebar .panel-support-icon-email::before {
  -webkit-mask-image: var(--support-mask);
  mask-image: var(--support-mask);
}

#mobile-nav .panel-support-icon-chat,
#user-sidebar .panel-support-icon-chat {
  --support-mask: url("../images/icon-chat.svg");
  background-image: url("../images/user-sidebar-text.svg");
}

#mobile-nav .panel-support-icon-chat::before,
#user-sidebar .panel-support-icon-chat::before {
  -webkit-mask-image: var(--support-mask);
  mask-image: var(--support-mask);
}

/* FOOTER STYLES */

#footer .pure-inner h5 {
  font-size: 18rem;

  @media (max-width: 1023px) {
    font-size: 24rem;
  }
}

#footer .pure-inner ul {
  padding-bottom: 0;

  @media (max-width: 1023px) {
    padding-bottom: 12rem;
  }
}

#footer .pure-inner ul li {
  line-height: 20rem;
  padding-bottom: 12rem;
}

#footer .footer-logo-container #social-links ul li {
  padding-bottom: 0;
}

#footer .footer-logo-container .logo-wrap {
  margin-top: -35rem;
}

#footer .footer-logo-container .pure-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Catergory Page header */

.module-banner-navigation .header-container:hover {
  color: var(--teal-dark);
}

.module-banner-navigation .h-border::after {
  border: 2px solid var(--teal);
}

.module-banner-navigation .header-link:hover {
  text-decoration: none;
  color: var(--teal-dark);
}

.module-banner-navigation .h4.h-border.header-link:hover::after {
  border: 2px solid var(--teal-dark);
}

/* HEADER STYLES */

#header .tt-mobile-actions {
  display: none;
}

@media (max-width: 1023px) {
  #header .tt-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12rem;
    z-index: 3;
  }

  #header .tt-mobile-phone {
    display: block;
    position: relative;
    width: 38rem;
    height: 38rem;
    border: 2px solid var(--black);
    border-radius: 50%;
  }

  #header .tt-mobile-phone::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: var(--black);
    mask-image: url("../images/icon-phone.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }

  #header .tt-mobile-phone:hover,
  #header .tt-mobile-phone:focus-visible {
    background-image: url("../images/user-sidebar-phone-hover.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: none;
  }

  #header .tt-mobile-phone:hover::before,
  #header .tt-mobile-phone:focus-visible::before {
    opacity: 0;
  }

  #header .space-between {
    justify-content: space-between;
  }

  #header .tt-mobile-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38rem;
    text-decoration: none;
    padding: 10rem 18.5rem;
    border: 2px solid var(--black);
    border-radius: 50rem;
    font-family: "Poppins", sans-serif;
    font-size: 14rem;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
  }

  body.logged-in #header .tt-mobile-login {
    padding: 10rem 4rem;
    min-width: 38rem;
  }

  #header .tt-mobile-login:hover {
    background-color: var(--teal);
    border: 2px solid var(--teal);
    color: var(--white);
    text-decoration: none;
  }

  #header .tt-mobile-actions #mobile-menu {
    position: relative;
    right: auto;
    top: auto;
    width: 38rem;
    height: 38rem;
    flex: 0 0 38rem;
  }

  #md_body #user-sidebar {
    right: -100%;
  }

  #user-sidebar {
    overflow-y: scroll;
  }
}

.md-module-accordion.border-remove {
  border-bottom: none !important;
}

/* EVENTS CALENDAR */

.module-calender-accordion {
  color: var(--black);
}

.module-calender-accordion .accordion-wrap {
  margin-bottom: 18rem;
  border: 1rem solid var(--grey-10);
  border-radius: 4rem;
  overflow: hidden;
  background-color: var(--white);
  font-family: "Poppins", sans-serif;
}

.module-calender-accordion .accordion-parent {
  margin: 0;
}

.module-calender-accordion .accordion-parent button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  width: 100%;
  min-height: 70rem;
  margin: 0;
}

.module-calender-accordion .accordian-button-header {
  display: block;
  flex: 1 1 auto;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.module-calender-accordion .accordian-button-header {
  color: var(--black) !important;
}

.module-calender-accordion .accordion-parent button::after {
  content: "";
  position: absolute;
  width: 70rem;
  height: 100%;
  background-color: var(--black);
  border-left: 1px solid var(--grey-10);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18rem 10rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1.5 1.5L9 8.5L16.5 1.5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: none;
  -webkit-mask-image: none;
  rotate: 0deg;
  top: 0;
  right: 0;
}

.module-calender-accordion .accordion-child .accordion-inner-full {
  border-top: 1px solid var(--grey-10);
}

.module-calender-accordion .accordion-wrap:not(.inactive) .accordion-parent button::after {
  background-color: var(--teal);
  border-left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='13' viewBox='0 0 22 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5625 0.609375C10.1719 1.37509e-07 11.1094 1.48688e-07 11.7188 0.609375L20.7188 9.60938C21.2813 10.1719 21.2813 11.1563 20.7188 11.7188C20.1094 12.3281 19.1719 12.3281 18.5625 11.7188L10.6406 3.79688L2.71875 11.7188C2.10938 12.3281 1.17188 12.3281 0.5625 11.7188C4.80722e-08 11.1563 5.98107e-08 10.1719 0.5625 9.60938L9.5625 0.609375Z' fill='white'/%3E%3C/svg%3E");
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1.5 1.5L9 8.5L16.5 1.5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
}

.module-calender-accordion .councillor,
.module-calender-accordion .secretary {
  display: flex;
  gap: 10rem;
}

.module-calender-accordion .councillor p,
.module-calender-accordion .secretary p {
  margin: 0;
  font-size: 20rem;
  color: var(--grey-dark);
}

.module-calender-accordion .councillor p.heading,
.module-calender-accordion .secretary p.heading {
  font-weight: 700;
}

.module-calender-accordion .accordion-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
}

.module-calender-accordion .accordian-content-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.module-calender-accordion .calendar-button {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  border: 2px solid var(--black);
  border-radius: 50rem;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 20rem;
  width: fit-content;
  margin-top: 0;
}

.module-calender-accordion .calendar-button::before {
  content: "";
  width: 16rem;
  height: 16rem;
  flex: 0 0 16rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/Calendar-icon-button.svg");
}

.module-calender-accordion .accordion-inner-full .accordian-content-grid {
  grid-template-columns: minmax(0, 1fr) 306rem 210rem;
  display: grid;
  align-items: start;
}

.module-calender-accordion .calendar-button:hover,
.module-calender-accordion .calendar-button:focus-visible {
  background-color: var(--teal-05);
}

.module-calender-accordion .accordion-child {
  background-color: var(--white);
}

.module-calender-accordion .accordion-inner-full>div:first-of-type,
.module-calender-accordion .accordion-inner-full>div:nth-of-type(2) {
  margin-bottom: 2rem;
  color: var(--grey-dark);
  font-size: 15rem;
  line-height: 1.45;
}

.module-calender-accordion .accordion-inner-full>div:first-of-type strong,
.module-calender-accordion .accordion-inner-full>div:nth-of-type(2) strong {
  color: var(--black);
  font-weight: 700;
}

.module-calender-accordion .accordion-inner-full .accordian-content {
  background-color: var(--teal-05);
  margin-top: 24rem;
  border-radius: 12rem;
}

.module-calender-accordion .accordion-inner-full .accordian-content-title-container {
  display: flex;
  align-items: center;
  gap: 14rem;
  margin-bottom: 18rem;
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

.module-calender-accordion .accordion-inner-full .accordian-content-title-icon {
  content: "";
  flex: 0 0 50rem;
  width: 50rem;
  height: 50rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-circle-calendar.svg");
}

.module-calender-accordion .accordion-inner-full .accordian-content-item {
  display: block;
}

.module-calender-accordion .accordion-inner-full .accordian-content-details {
  border-top: 0;
  width: 650rem;
}

.module-calender-accordion .accordion-inner-full .accordian-content-textarea p {
  font-family: "Inter", sans-serif;
  max-width: 650rem;
}

/* .module-calender-accordion .accordion-inner-full .accordian-content-details > div:first-child {
	font-size: 15rem;
	line-height: 1.45;
	color: var(--grey-dark);
} */

.module-calender-accordion .accordian-content-details .heading-wrap {
  display: inline;
  font-weight: 700;
  color: var(--black);
  font-family: "Inter", sans-serif;
}

.module-calender-accordion .accordian-content-details a.heading-wrap {
  display: inline;
  font-weight: 700;
  color: var(--teal);
  font-family: "Inter", sans-serif;
}

.module-calender-accordion .accordion-inner-full .accordian-content-title+.accordian-content-item .accordian-content-details .heading-wrap {
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2rem;
}

.module-calender-accordion .accordion-inner-full .accordian-content-date,
.module-calender-accordion .accordion-inner-full .accordian-content-time {
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  font-family: "Inter", sans-serif;
}

/* EVENTS FOR ALL CLUBS */
.module-calender-all {
  font-family: "Poppins", sans-serif;
}

.module-calender-all .main-header {
  color: var(--black);
}

.events-all-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410rem 250rem 50rem;
  gap: 20rem;
  align-items: start;
  padding: 18rem;
  margin-bottom: 12rem;
  background-color: var(--teal-05);
  border-radius: 4rem;
}

.events-all-title {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.events-all-title .heading-wrap {
  font-family: "Inter", sans-serif;
  display: inline;
  font-weight: 700;
  color: var(--black);
  /* text-decoration: underline; */
  text-underline-offset: 2rem;
  font-size: 16rem;
}

.events-all-description {
  font-size: 14rem;
  line-height: 1.45;
  color: var(--grey-dark);
  margin-top: 4rem;
  font-family: "Inter", sans-serif;
}

.events-all-location,
.events-all-datetime {
  font-size: 16rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

.events-all-calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 24rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/Calendar-icon-button.svg");
  cursor: pointer;
  flex-shrink: 0;
}

.events-all-calendar-btn:hover {
  opacity: 0.8;
}

/* REGION FILTER */

.module-columns_x2 .column-header {
  margin-bottom: 25rem;
}

.module-columns_x2 .region-filter-form {
  max-width: 288rem;
  margin-top: 18rem;
}

.module-columns_x2 .region-filter-select {
  width: 100%;
  height: 50rem;
  padding: 14rem 64rem 13rem 24rem;
  border: 2px solid var(--black);
  border-radius: 50rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1.5 1.5L9 8.5L16.5 1.5' stroke='%23000000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18rem center;
  background-size: 14rem 8rem;
  background-color: var(--white);
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  font-family: "Inter", sans-serif;
  font-size: 16rem;
  color: var(--black);
  box-shadow: none;
  cursor: pointer;
  margin-bottom: 82rem;
}




/* Conferences */

.conference-banner-lg .conference-banner-container {
  align-content: end;
  padding-bottom: 50rem;
  align-items: end;
}

.conference-banner-lg .conference-banner-header {
  margin: 0;
  font-size: 46rem;
}

/* .conference-banner-lg .text-editor {
	margin-bottom: 10rem;
} */

.conference-banner-lg .text-editor p {
  margin-bottom: 10rem;
}

.conference-banner-lg .conference-banner-content {
  background-color: var(--black-85);
  padding: 30rem 50rem 50rem;
  margin-bottom: 0rem;
}

.conference-banner-lg .overlay-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.conference-banner-lg .overlay-image-mobile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* .conference-banner-lg .overlay-image-mobile{

	@media (min-width: 1024px) {
		display: none;
	}
} */

.conference-banner-lg .overlay-image-mobile-container {
  padding: 0;
  display: none;
}

.conference-banner-lg .conference-banner-content .button {
  padding: 10rem 60rem;
  margin: 0;
}

.conference-banner-lg .conference-banner-content .button-container {
  display: flex;
  gap: 20rem;
  flex-direction: row;
  align-items: center;
}

.conference-banner-lg .calendar-button {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
  padding: 10rem 30rem;
  border-radius: 40rem;
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  text-decoration: none;
  margin-top: 0;
  height: fit-content;
}

.conference-banner-lg .calendar-button::after {
  content: "";
  width: 16rem;
  height: 16rem;
  flex: 0 0 16rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/Calendar-icon-button.svg");
  filter: brightness(0) invert(100%);
}

.conference-banner-lg .calendar-button:hover,
.conference-banner-lg .calendar-button:focus-visible {
  background-color: var(--teal);
}

.conference-two-column .column-header {
  font-family: "Poppins", sans-serif;
}

.conference-two-column .link-list li {
  font-weight: 700;
  font-size: 18rem;
  font-family: "Poppins", sans-serif;
}

.module-columns_x2.conference-two-column li::before {
  display: none;
}

/* Support Cards Styling */
.support-card-primary {
  background-color: var(--teal-10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.support-card-primary .sub-heading {
  font-size: 20rem;
  margin-bottom: 42rem;
}

.support-card-primary .support-contact-items .contact-text {
  font-size: 20rem;
}

.support-card-primary h4 {
  color: var(--black) !important;
  margin-bottom: 24rem;
}

.support-card-primary p {
  color: var(--black);
  margin-bottom: 30rem;
  font-size: 16rem;
  line-height: 1.4;
}

.support-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12rem;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.contact-item {
  text-decoration: none;
}

.contact-item:hover .contact-text,
.contact-item:focus-visible .contact-text {
  text-decoration: underline;
}

.contact-item:focus-visible {
  outline: 2rem solid var(--teal);
  outline-offset: 4rem;
  border-radius: 6rem;
}

.contact-icon {
  width: 40rem;
  height: 40rem;
}

/* SVG icons applied via background images */
.contact-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30rem 30rem;
}

.contact-icon.icon-phone {
  background-image: url("../images/Teal-phone.svg");
}

.contact-item:hover .contact-icon.icon-phone,
.contact-item:focus-visible .contact-icon.icon-phone {
  background-image: url("../images/user-sidebar-phone-hover.svg");
}

.contact-icon.icon-mail {
  background-image: url("../images/Teal-mail.svg");
}

.contact-item:hover .contact-icon.icon-mail,
.contact-item:focus-visible .contact-icon.icon-mail {
  background-image: url("../images/user-sidebar-mail-hover.svg");
}

.contact-icon.icon-message {
  background-image: url("../images/Teal-message.svg");
}

.contact-item:hover .contact-icon.icon-message,
.contact-item:focus-visible .contact-icon.icon-message {
  background-image: url("../images/user-sidebar-message-hover.svg");
}

.contact-text {
  color: var(--black);
  font-weight: 500;
}

/* Events 3 card moudle */

.module-columns_x3.conference-heading .header-container {
  display: block;
  flex-direction: column;
  margin-bottom: 20rem;
}

.module-columns_x3.conference-heading .header-button-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.module-columns_x3.conference-heading .header-button-wrap .button {
  margin: 0;
}

.module-columns_x3.conference-heading .link-uc {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  text-transform: capitalize;
  position: relative;
  bottom: 0;
  padding-top: 18rem
}

.module-columns_x3.conference-heading .link-uc::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16rem;
  height: 16rem;
  background-repeat: no-repeat;
  mask-image: url("../images/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  margin-left: 6rem;
  position: relative;
  top: 0rem;
  transition: margin-left 0.25s ease;
}

.module-columns_x3.conference-heading .link-block:hover .link-uc::after,
.module-columns_x3.conference-heading .link-uc:hover::after {
  margin-left: 12rem;
}

a.link-block:hover {
  text-decoration: none;
}

/* .module-columns_x3.conference-heading .image-wrap {
	height: 200rem;
	width: 100%;
	border-radius: 12rem;

	@media (min-width: 1024px) {
		width: 416rem;
		height: 212rem;
	}
} */

/* .module-columns_x3.conference-heading .image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
} */

/* Banner small styles */
.banner-heading-wrap h1 {
  font-size: 46rem;
}

/* Conference Accordian */

.accordion-conference .accordion-child .image-wrap {
  width: 90rem;
  height: 90rem;
}

.accordion-conference .accordion-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.accordion-conference .accordian-image-container {
  width: fit-content;
}

.accordion-conference .accordian-content-container .h6,
.accordion-conference .accordian-content-container .h5 {
  margin: 0;
  padding-bottom: 6rem;
  color: var(--black);
}

.accordion-conference .accordian-content-container p {
  font-family: "Inter", sans-serif;
  margin: 0;
}

.accordion-conference .accordion-inner-single-item {
  display: flex;
  gap: 12rem;
  padding-bottom: 42rem;
  flex-direction: row;
  align-items: center;
}

.accordion-conference .sub-heading {
  margin-bottom: 40rem;
}

/* Two colum layout accordian */


.list-ticks ul {
  padding-left: 24rem;
}

.list-ticks li {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.list-ticks li::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: -25rem;
  width: 18rem;
  height: 18rem;
  background-color: var(--teal);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* preferred masks (modern browsers) */
  -webkit-mask-image: url("../images/Blue-check.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 14rem auto;
  mask-image: url("../images/Blue-check.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 14rem auto;
  pointer-events: none;
}


.list-standard ul {
  padding-left: 22rem;
}

.list-none ul {
  padding-left: 0;
}


.list-none li::before {
  background-color: transparent;
  mask-image: unset;
  top: -3rem;
}

.list-none,
.list-none li {
  list-style: none;
  padding-left: 0;
}

.list-standard li::before {
  mask-image: url("../images/bullet-point.svg");
  top: -12rem;
  mask-size: 35rem auto;
  left: -25rem;
  height: 32rem;
}

.list-standard.theme-dark li::before {
  mask-image: url("../images/bullet-point.svg");
  top: -12rem;
  mask-size: 35rem auto;
  background-color: var(--white);
  left: -25rem;
  height: 32rem;
}

.module-columns_x2 .accordion-wrap li::before {
  background-color: var(--grey-dark);
  mask-image: unset;
  top: 0rem;
  width: 4rem;
  height: 4rem;
  mask-position: unset;
  position: relative;
  left: 0;
}

.module-columns_x2 .accordion-wrap ul {
  padding-left: 10rem;
  color: var(--grey-dark);
  margin-top: 0;
}

.module-columns_x2 .accordion-wrap li {
  padding-bottom: 5rem;
  color: var(--grey-dark);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.module-columns_x2 .column-layout-accordion-full .accordion-wrap button {
  height: 60rem;
}

/* .module-columns_x2 .column-layout-accordion-full .accordion-wrap button::after {
  height: 60rem;
} */

.module-columns_x2 .column-layout-accordion-full .accordion-wrap .accordion-child .accordion-inner {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-10);
}

.module-columns_x2 .column-layout-accordion-full .accordion-wrap .accordion-child .accordion-inner p {
  font-family: "Inter", sans-serif;
  color: var(--grey-dark);
}

.module-columns_x2 .column-layout-accordion .accordion-wrap button {
  height: 60rem;
}

.module-columns_x2 .column-layout-accordion .accordion-wrap button::after {
  height: 60rem;
}



/* Shortcode support card */

.shortcode-supportCard .support-card-primary {
  background: transparent;
}



/* Clublife / blog header styles */
.clublife-logo {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  font-weight: 400;
}

.module-banner-small .clublife-logo {
  font-size: 46rem;
  font-weight: 500;
}

.clublife-logo .clublife-accent {
  color: #ff6600;
  font-weight: 700;
}

.clublife-date-container {
  display: flex;
  flex-direction: row;
  gap: 42rem;
}

/* Blog Content Section */

.blog-type-section {
  margin-bottom: 40rem;
}

.blog-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16rem;

  @media (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

#md_body .blog-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-size: 16rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  white-space: nowrap;
}


.cat-club-news::before {
  content: "";
  width: 24rem;
  height: 24rem;
  background: url("../images/ct-clubnews.svg") no-repeat center / contain;
}

a:hover .blog-type-badge.cat-club-news::before, .blog-type-badge.cat-club-news:hover::before {
  background: url("../images/ct-clubnews-hover.svg") no-repeat center / contain;
}

.cat-clubtv::before {
  content: "";
  width: 24rem;
  height: 24rem;
  background: url("../images/ct-clubtv.svg") no-repeat center / contain;
}

a:hover .blog-type-badge.cat-clubtv::before, .blog-type-badge.cat-clubtv:hover::before {
  background: url("../images/ct-clubtv-hover.svg") no-repeat center / contain;
}

.cat-learning-development::before {
  content: "";
  width: 24rem;
  height: 24rem;
  background: url("../images/ct-learning.svg") no-repeat center / contain;
}

a:hover .blog-type-badge.cat-learning-development::before, .blog-type-badge.cat-learning-development:hover::before {
  background: url("../images/ct-learning-hover.svg") no-repeat center / contain;
}

.cat-podcast::before {
  content: "";
  width: 24rem;
  height: 24rem;
  background: url("../images/ct-podcast.svg") no-repeat center / contain;
}

a:hover .blog-type-badge.cat-podcast::before, .blog-type-badge.cat-podcast:hover::before {
  background: url("../images/ct-podcast-hover.svg") no-repeat center / contain;
}

.cat-webinar::before {
  content: "";
  width: 24rem;
  height: 24rem;
  background: url("../images/ct-webinar.svg") no-repeat center / contain;
}

a.link-block:hover .blog-type-badge.cat-webinar::before {
  background: url("../images/ct-webinar-hover.svg") no-repeat center / contain;
}



.blog-type-text {
  display: inline-block;
  color: var(--black);
}


.blog-tags {
  display: flex;
  gap: 12rem;
  flex-wrap: wrap;

  @media (max-width: 767px) {
    width: 100%;
  }
}

.blog-tag {
  background-color: #fce1d3;
  padding: 4rem 10rem;
  border-radius: 20rem;
  font-family: "Inter", sans-serif;
  font-size: 12rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: var(--black) !important;
  text-decoration: none !important;
}

.blog-tag:hover {
  background-color: #f7a87e;
}

/* Summary Section */

.blog-summary-section {
  margin-bottom: 32rem;
}

.summary-text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18rem;
  color: var(--black);
}

/* Key Points Section */

.section-key-points {
  border: 2px solid #F26921;
  background-color: var(--white);
}

.section-key-points ul {
  margin: 0;
  padding-left: 20rem;
}

.section-key-points li {
  font-family: "Inter", sans-serif;
  font-size: 16rem;
  line-height: 1.65;
  padding-bottom: 14rem;
  color: var(--grey-dark);
}

.section-key-points li:last-child {
  padding-bottom: 0;
}

.section-key-points a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-key-points a:hover {
  text-decoration: underline;
  color: var(--teal-dark);
}

/* Blog Sidebar */

.blog-sidebar {
  padding-left: 30rem;

  @media (max-width: 1023px) {
    padding-left: 0;
    margin-top: 40rem;
  }
}

/* Blog body text section */

.blog-rte-section {
  margin-bottom: 42rem;
}

.blog-rte-heading {
  margin: 0 0 18rem;
  font-family: "Poppins", sans-serif;
  font-size: 40rem;
  font-weight: 500;
  line-height: 1.25;
  color: #5f5f5f;
}

.blog-rte-section p:last-child {
  margin-bottom: 0;
}

.blog-rte-link {
  color: #0074B0;
  text-decoration: none;
  font-weight: 500;
}

.blog-rte-link:hover,
.blog-rte-link:focus-visible {
  text-decoration: underline;
}

.blog-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote component styles */
.section-post-quotation {
  /* background: var(--teal-05); */
  position: relative;
}

.section-post-quotation * {
  font-size: 20rem;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}

.section-post-quotation::before {
  content: "";
  position: absolute;
  top: 20rem;
  left: 16rem;
  height: 30rem;
  width: 45rem;
  background: url(data:image/svg+xml,%3Csvg%20width%3D%2244%22%20height%3D%2229%22%20viewBox%3D%220%200%2044%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M43.1002%2021.5004C43.1002%2023.7004%2042.3002%2025.4671%2040.7002%2026.8004C39.1669%2028.1337%2037.1002%2028.8004%2034.5002%2028.8004C31.2335%2028.8004%2028.6335%2027.6671%2026.7002%2025.4004C24.8335%2023.1337%2023.9002%2020.0671%2023.9002%2016.2004C23.9002%2010.0671%2026.2669%205.60039%2031.0002%202.80039C34.2002%200.93372%2037.0335%200.000384569%2039.5002%200.000384569C39.9669%200.000384569%2040.2002%200.167053%2040.2002%200.50039C40.2002%200.900389%2039.9335%201.13372%2039.4002%201.20039C31.8002%203.20039%2028.0002%207.06706%2028.0002%2012.8004C28.0002%2016.5337%2029.3002%2019.1671%2031.9002%2020.7004C31.9002%2016.9004%2033.5669%2015.0004%2036.9002%2015.0004C38.7002%2015.0004%2040.1669%2015.6337%2041.3002%2016.9004C42.5002%2018.1004%2043.1002%2019.6337%2043.1002%2021.5004ZM19.2002%2021.5004C19.2002%2023.7004%2018.4002%2025.4671%2016.8002%2026.8004C15.2669%2028.1337%2013.2002%2028.8004%2010.6002%2028.8004C7.33353%2028.8004%204.73353%2027.6671%202.8002%2025.4004C0.933529%2023.1337%200.000195414%2020.0671%200.000195414%2016.2004C0.000195414%2010.0671%202.36686%205.60039%207.1002%202.80039C10.3002%200.93372%2013.1335%200.000384569%2015.6002%200.000384569C16.0669%200.000384569%2016.3002%200.167053%2016.3002%200.50039C16.3002%200.900389%2016.0335%201.13372%2015.5002%201.20039C12.6335%202.06705%2010.5335%202.86705%209.2002%203.60039C5.8002%205.60039%204.1002%208.70039%204.1002%2012.9004C4.1002%2016.5671%205.4002%2019.1671%208.0002%2020.7004C8.0002%2016.9004%209.66686%2015.0004%2013.0002%2015.0004C14.8669%2015.0004%2016.3669%2015.6004%2017.5002%2016.8004C18.6335%2018.0004%2019.2002%2019.5671%2019.2002%2021.5004Z%22%20fill%3D%22%230076AD%22%2F%3E%3C%2Fsvg%3E);
  background-size: cover;
  background-repeat: no-repeat;
}

.section-post-quotation::after {
  content: "";
  position: absolute;
  bottom: 20rem;
  right: 20rem;
  height: 30rem;
  width: 45rem;
  background: url(data:image/svg+xml,%3Csvg%20width%3D%2244%22%20height%3D%2229%22%20viewBox%3D%220%200%2044%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M43.1002%2021.5004C43.1002%2023.7004%2042.3002%2025.4671%2040.7002%2026.8004C39.1669%2028.1337%2037.1002%2028.8004%2034.5002%2028.8004C31.2335%2028.8004%2028.6335%2027.6671%2026.7002%2025.4004C24.8335%2023.1337%2023.9002%2020.0671%2023.9002%2016.2004C23.9002%2010.0671%2026.2669%205.60039%2031.0002%202.80039C34.2002%200.93372%2037.0335%200.000384569%2039.5002%200.000384569C39.9669%200.000384569%2040.2002%200.167053%2040.2002%200.50039C40.2002%200.900389%2039.9335%201.13372%2039.4002%201.20039C31.8002%203.20039%2028.0002%207.06706%2028.0002%2012.8004C28.0002%2016.5337%2029.3002%2019.1671%2031.9002%2020.7004C31.9002%2016.9004%2033.5669%2015.0004%2036.9002%2015.0004C38.7002%2015.0004%2040.1669%2015.6337%2041.3002%2016.9004C42.5002%2018.1004%2043.1002%2019.6337%2043.1002%2021.5004ZM19.2002%2021.5004C19.2002%2023.7004%2018.4002%2025.4671%2016.8002%2026.8004C15.2669%2028.1337%2013.2002%2028.8004%2010.6002%2028.8004C7.33353%2028.8004%204.73353%2027.6671%202.8002%2025.4004C0.933529%2023.1337%200.000195414%2020.0671%200.000195414%2016.2004C0.000195414%2010.0671%202.36686%205.60039%207.1002%202.80039C10.3002%200.93372%2013.1335%200.000384569%2015.6002%200.000384569C16.0669%200.000384569%2016.3002%200.167053%2016.3002%200.50039C16.3002%200.900389%2016.0335%201.13372%2015.5002%201.20039C12.6335%202.06705%2010.5335%202.86705%209.2002%203.60039C5.8002%205.60039%204.1002%208.70039%204.1002%2012.9004C4.1002%2016.5671%205.4002%2019.1671%208.0002%2020.7004C8.0002%2016.9004%209.66686%2015.0004%2013.0002%2015.0004C14.8669%2015.0004%2016.3669%2015.6004%2017.5002%2016.8004C18.6335%2018.0004%2019.2002%2019.5671%2019.2002%2021.5004Z%22%20fill%3D%22%230076AD%22%2F%3E%3C%2Fsvg%3E);
  background-size: cover;
  background-repeat: no-repeat;
  rotate: 180deg;
}



/* Blog Support Card Component */
.support-card-wrapper {
  margin-top: 48rem;
  margin-bottom: 20rem;
}

.support-card-wrapper .support-card-primary {
  border-radius: 16rem;
  background-color: var(--teal);
}


.support-card-wrapper .support-card-primary .support-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  font-size: 28rem;
  margin-bottom: 16rem;
}

.support-card-wrapper .support-card-primary .support-card-subtitle {
  margin: 0 0 28rem 0;
  font-family: "Inter", sans-serif;
  font-size: 18rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.support-card-wrapper .support-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.support-card-wrapper .contact-item {
  display: flex;
  align-items: center;
  gap: 14rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.support-card-wrapper .contact-item:hover {
  opacity: 0.9;
}

.support-card-wrapper .contact-item:focus-visible {
  outline: 2rem solid rgba(255, 255, 255, 0.5);
  outline-offset: 2rem;
  border-radius: 4rem;
}

.support-card-wrapper .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 30rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Support card icon styles - default state */
.support-card-wrapper .contact-icon.icon-phone {
  background-image: url("../images/user-sidebar-phone.svg");
}

.support-card-wrapper .contact-icon.icon-mail {
  background-image: url("../images/user-sidebar-mail.svg");
}

.support-card-wrapper .contact-icon.icon-message {
  background-image: url("../images/user-sidebar-text.svg");
}

/* Support card icon styles - hover state */
.support-card-wrapper .contact-item:hover .contact-icon.icon-phone {
  background-image: url("../images/user-sidebar-phone-hover.svg");
}

.support-card-wrapper .contact-item:hover .contact-icon.icon-mail {
  background-image: url("../images/user-sidebar-mail-hover.svg");
}

.support-card-wrapper .contact-item:hover .contact-icon.icon-message {
  background-image: url("../images/user-sidebar-message-hover.svg");
}

.support-card-wrapper .contact-text {
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

.support-card-wrapper.blog-page .support-contact-items .contact-text {
  font-size: 20rem;
}

/* Course Module Styles */

.module-banner-small .md_width,
.module-banner-small .md_width .pure-u-1 {
  padding: 0 12rem;
}

.courses-accordian-table-content .pure-g {
  border-bottom: 1px solid var(--grey-10);
}

/* .courses-accordian-table .time{
	text-align: right;
} */
.module-banner-small .banner-heading-wrap .button {
  margin-top: 30rem;
}

/* Section course for  */

.section-courses-for .eyebrow {
  color: var(--black);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.section-courses-for .courses-for__title {
  margin: 0;
  color: var(--black);
  font-family: 'Poppins', sans-serif;
}


.section-courses-for .courses-for__lead,
.section-courses-for .courses-for__note {
  margin: 0;
  color: var(--grey-dark);
  font-family: 'Poppins', sans-serif;
}

.section-courses-for .courses-for__lead a,
.section-courses-for .courses-for__note a {
  color: var(--teal);
  font-family: 'Poppins', sans-serif;
}

/* .section-courses-for .courses-for__right.pure-u-1,
.section-courses-for .module-calender-accordion .pure-g {
	padding: 0;
} */

.section-courses-for .module-calender-accordion .accordion-child {
  color: var(--grey-dark);
}

.qualified-section .main-header h2 {
  color: var(--white);
}

.qualified-section .courses-for-transfer__content p,
.qualified-section .courses-for-transfer__content a {
  color: var(--white);
}

.qualified-section .courses-for-transfer__content a {
  text-decoration: underline;
}

/* Recommended courses grid */

.module-recommended-courses {
  background: var(--teal-05, #f1f8fb);
}

.module-recommended-courses .recommended-title {
  font-size: 34rem;
  margin: 6rem 0 8rem;
  font-weight: 700;
}

.module-recommended-courses .recommended-lead {
  color: var(--grey-mid);
  max-width: 720rem;
}

.module-recommended-courses .button.btn--outline {
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  padding: 8rem 20rem;
  border-radius: 24rem;
  text-decoration: none;
}

.recommend-card {
  background: var(--white);
  border-radius: 8rem;
  height: 100%;
}

.recommend-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.recommended-action {
  text-align: right;
  margin-top: 30rem;
}

/* Explore content card */
.explore-content-card {
  border-radius: 12rem;
  background-color: var(--teal-dark);
}

.explore-content-card:hover {
  background-color: var(--teal);
}

.explore-content-card .blog-type-badge {
  background-color: var(--white);
  color: var(--black);
  border-radius: 20rem
}

.explore-content-card .blog-type-badge .blog-type-text {
  color: var(--black);
  font-size: 14rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* Blog cards badge and likes row */
/* .module-cards_x3 .badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
  margin-bottom: 18rem;
} */

.module-cards_x3 .badge-wrapper {
  margin-bottom: 18rem;
}

.module-cards_x3 .badge-container,
.thumbs-up-container {
  min-height: 24rem;
}

.thumbs-up-container {
  display: inline-flex;
  gap: 6rem;
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1;
  padding: 0;
}

.module-cards_x3 .thumbs-up-container {
  align-items: center;
  justify-content: flex-end;
}

.thumbs-up-count {
  font-size: 16rem;
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
}

.thumbs-up-container:hover .thumbs-up-count {
  color: var(--teal);
}

.thumbs-up-container .thumbs-up-icon {
  background-color: var(--black);
  -webkit-mask-image: url("../images/Thunbs-up-black.svg");
  mask-image: url("../images/Thunbs-up-black.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 18rem;
  height: 18rem;
  display: block;
  transition: background-color 0.2s ease;
}

.thumbs-up-container:hover .thumbs-up-icon {
  background-color: var(--teal);
}

.read-time p {
  color: var(--grey-dark);
  font-size: 14rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* Module cars x3 */
.module-cards_x3 .link-block .text-wrap.u-lead ul {
  padding-left: 20rem;
}

.module-cards_x3.list-ticks .link-block .text-wrap.u-lead ul {
  padding-left: 25rem;
}

.link-block.news .image-wrap .link-block-img {
  height: 220rem;
}

/* Website Notifications */
.website-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16rem 24rem;
  border-radius: 4rem;
  gap: 16rem;
  text-align: center;
}

.website-notification.bg-teal p,
.website-notification.bg-teal strong {
  color: var(--white);
}

.website-notification p {
  margin: 0;
  font-size: 14rem;
  line-height: 1.5;
  font-family: "poppins", sans-serif;
  color: var(--black);
}

.website-notification p strong {
  font-weight: 600;
  font-size: 14rem;
  color: var(--black);
}

.website-notification a {
  font-weight: 500;
  color: var(--black);
  text-decoration: underline;
}

.theme-dark.website-notification a {
  color: var(--white);
}

.website-notification.notification-amber {
  background-color: #FFE6D7;
  color: var(--black);
}

.website-notification.notification-amber a {
  color: var(--black);
}

.website-notification.notification-critical {
  background-color: #ECC5C6;
  color: var(--black);
}

.website-notification.notification-critical a {
  color: var(--black);
}

.website-notification.notification-success {
  background-color: #A9CCAF;
  color: var(--black);
}

.website-notification.notification-success a {
  color: var(--black);
}

.website-notification .close-btn {
  background: none;
  border: none;
  font-size: 24rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.website-notification .close-btn:hover {
  opacity: 0.7;
}

/* Two colum kissy button */
.module-columns_x2 .mb-button {
  margin-bottom: 0rem;
}


/* ===== max-width: 639px ===== */
@media (max-width: 639px) {
  .gfield--width-half {
    width: 100%;
  }
}

/* ===== max-width: 767px ===== */
@media (max-width: 767px) {

  .blog-type-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-tags {
    width: 100%;
  }

.module-columns_x2 .region-filter-select {

	margin-bottom: 30rem;
}
}

/* ===== min-width: 425px and max-width: 1023px ===== */
@media (min-width: 425px) and (max-width: 1023px) {
  .module-banner-lg.conference-banner-lg {
    height: 100%;
  }
}

/* ===== max-width: 1023px ===== */
@media (max-width: 1023px) {

  /* User sidebar */
  #user-sidebar {
    overflow-y: scroll;
  }

  #md_body #user-sidebar {
    right: -100%;
  }

  /* Header */
  #header .tt-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12rem;
    z-index: 3;
  }

#header .tt-mobile-phone {
	display: block;
	position: relative;
	width: 38rem;
	height: 38rem;
	border: 2px solid var(--black);
	border-radius: 50%;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
}

  #header .tt-mobile-phone::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: var(--black);
    mask-image: url("../images/icon-phone.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }

  #header .tt-mobile-phone:hover,
  #header .tt-mobile-phone:focus-visible {
    background-image: url("../images/user-sidebar-phone-hover.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: none;
  }

  #header .tt-mobile-phone:hover::before,
  #header .tt-mobile-phone:focus-visible::before {
    opacity: 0;
  }

  #header .space-between {
    justify-content: space-between;
  }

  #header .tt-mobile-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38rem;
    padding: 10rem 18.5rem;
    border: 2px solid var(--black);
    border-radius: 50rem;
    font-family: "Poppins", sans-serif;
    font-size: 14rem;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
  }

  body.logged-in #header .tt-mobile-login {
    padding: 10rem 4rem;
    min-width: 38rem;
  }

  #header .tt-mobile-login:hover {
    background-color: var(--teal);
    border: 2px solid var(--teal);
    color: var(--white);
    text-decoration: none;
  }

  #header .tt-mobile-actions #mobile-menu {
    position: relative;
    right: auto;
    top: auto;
    width: 38rem;
    height: 38rem;
    flex: 0 0 38rem;
  }

  /* Footer */
  #footer .pure-inner h5 {
    font-size: 24rem;
  }

  #footer .pure-inner ul {
    padding-bottom: 12rem;
  }

  #footer .pure-inner ul li {
    line-height: unset;
    padding-bottom: unset;
  }

  #footer .footer-logo-container .logo-wrap {
    margin-top: unset;
  }

  #footer .footer-logo-container .pure-inner {
    display: unset;
  }

  #footer .footer-logo-container #social-links ul li {
    padding-bottom: unset;
  }

  /* Calendar accordion */
  .module-calender-accordion .accordion-parent button::after {
    width: 50rem;
  }

  .module-calender-accordion .councillor p,
  .module-calender-accordion .secretary p {
    font-size: 12rem;
  }

  .module-calender-accordion .accordian-content-header {
    flex-direction: column;
  }

  .module-calender-accordion .accordion-inner-full .accordian-content-grid {
    display: block;
  }

  .module-calender-accordion .accordion-inner-full .accordian-content-details {
    width: unset;
  }

  .module-calender-accordion .accordion-inner-full .accordian-content-textarea {
    max-width: unset;
  }

  /* Events all */
  .events-all-row {
    grid-template-columns: 1fr;
    gap: 12rem;
    padding: 14rem;
  }

  .events-all-location,
  .events-all-datetime {
    font-size: 13rem;
  }

  .events-all-title .heading-wrap {
    font-size: 18rem;
  }

  /* Conference banner */
  .conference-banner-lg .conference-banner-container {
    padding-bottom: 20rem;
  }

  .conference-banner-lg .conference-banner-header {
    font-size: 26rem;
  }

  .conference-banner-lg .conference-banner-content {
    padding: 30rem 20rem 50rem;
  }

  .conference-banner-lg .overlay-image-mobile-container {
    display: block;
  }

  .conference-banner-lg .conference-banner-content .button-container {
    flex-direction: column;
    align-items: start;
  }

  /* Conference heading columns */
  .module-columns_x3.conference-heading .header-container {
    display: flex;
    flex-direction: column;
  }

  .module-columns_x3.conference-heading .header-button-wrap {
    display: unset;
  }

  .module-columns_x3.conference-heading .header-button-wrap .button {
    margin: unset;
  }

  .module-columns_x3.conference-heading .link-uc {
    position: unset;
    bottom: unset;
    padding-top: unset;
  }

  /* User sidebar panel support */
  #mobile-nav .panel-support,
  #user-sidebar .panel-support {
    display: flex;
  }

  /* Support card wrapper */
  .support-card-wrapper .support-card-primary .support-card-title {
    font-size: 24rem;
    margin-bottom: 12rem;
  }

  .support-card-wrapper .support-card-primary .support-card-subtitle {
    font-size: 16rem;
    margin-bottom: 24rem;
  }

  .support-card-wrapper.blog-page .support-contact-items .contact-text {
    font-size: 14rem;
  }

  /* Blog */
  .summary-text {
    font-size: 20rem;
  }

  .section-key-points li {
    font-size: 14rem;
    padding-bottom: 12rem;
  }

  .blog-rte-heading {
    font-size: 30rem;
    margin-bottom: 14rem;
  }

  .blog-sidebar {
    padding-left: 0;
    margin-top: 40rem;
  }

  /* Course module */
  .module-banner-small .md_width,
  .module-banner-small .md_width .pure-u-1 {
    padding: 0;
  }

  .module-banner-small .banner-heading-wrap .button {
    margin-top: 20rem;
  }

  /* Recommended action */
  .recommended-action {
    margin-top: unset;
  }

  /* Conference accordion */
  .accordion-conference .accordion-inner-single-item {
    flex-direction: column;
    align-items: unset;
  }

  /* Two column button */
  .module-columns_x2 .mb-button {
    margin-bottom: 10rem;
  }

  /* Banner heading */
  .banner-heading-wrap h1 {
    font-size: 32rem;
  }

  #user-sidebar {
    width: 100%;
  }

  #user-sidebar ul {
    border-top: 1px solid var(--teal-20);
  }
  #user-sidebar .panel-body-item {
    width: 100%;
    border-bottom: 1px solid var(--teal-20);
    border-radius: 0;
	padding: var(--24) var(--12);


  }

#md_body .section-post-quotation {
  padding-top: 65rem;
  padding-bottom: 60rem;
  padding-left: 24rem;
  padding-right: 24rem;
}


}