@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #111928;
}
p,
span {
  font-family: "Manrope", sans-serif;
}
h1 {
  font-size: 40px;
  line-height: 50px;
}
h2 {
  font-size: 32px;
  line-height: 42px;
}
h4 {
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-transform: uppercase;
}
.aussiebum-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.nav-branding-container {
  display: flex;
  align-items: center;
}
.tribe-moments .nav-branding-container {
  gap: 10px;
}
.tribe-moments .filter-header {
  margin-bottom: 0;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin-bottom: 10px;
}
.blog-section,
.podcast-section {
  max-width: 100%;
}
.podcast-section {
  margin: 0;
}
.blog-carousel,
.video-carousel-container {
  width: 100%;
  padding: 16px 0 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.blog-carousel-container.swiper-container {
  display: flex;
}

.blog-carousel-container .swiper-wrapper,
.podcast-carousel-container .swiper-wrapper,
.video-carousel-container .swiper-wrapper,
.customer-contributions-carousel-container .swiper-wrapper {
  display: flex;
  height: auto;
}
.blog-carousel-container .swiper-slide,
.podcast-carousel-container .swiper-slide,
.video-carousel-container .swiper-slide,
.customer-contributions-carousel-container .swiper-slide {
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.blog-carousel-container .swiper-slide,
.podcast-carousel-container .swiper-slide,
.customer-contributions-carousel-container .swiper-slide {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.05);
}
.blog-card {
  width: 100%;
}

.blog-card .image-wrapper {
  position: relative;
  height: 200px;
}

.blog-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-card .image-wrapper form {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-right: 10px;
  position: absolute;
  top: 10px;
  right: 0px;
  border-radius: 3.5px;
  background: #fcfcfc;
  backdrop-filter: blur(1.7px);
}
.favorite-button {
  border: none;
  border-radius: 3.5px;
  background-color: #fcfcfc;
}
a.addToFavouritesSignUp {
  color: #00a5e7;
}
a.addToFavouritesSignUp:hover {
  opacity: 0.7;
}
.blog-card .image-wrapper form img {
  max-width: 30px;
  max-height: 30px;
}

.blog-detailed-container .blog-card .image-wrapper img {
  border-radius: 8px;
}

.blog-card .category,
.blog-card .favorite {
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 18.2px;
  font-weight: 600;
  border-radius: 3.5px;
  background: rgba(252, 252, 252, 0.4);
  backdrop-filter: blur(46.75px);
  color: #fff;
  font-family: "Manrope";
}
select#category-dropdown {
  border-radius: 8px !important;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  height: 40px;
  padding: 0px 15px;
  color: #333;
  font-size: 16px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
  outline: none;
}
.blog-card .favorite {
  right: 10px;
  top: 10px;
  background: white;
  width: 25px;
  height: 25px;
  padding: 0;
}

.blog-card .category {
  left: 10px;
}
.blog-card .content-blog {
  padding: 20px;
}
.blog-card .content-blog h3 {
  font-size: 24px;
  line-height: 31.2px;
  font-weight: 700;
  padding: 0;
  max-height: 4em;
  margin: 10px 0;
  text-transform: inherit;
}
.blog-card .content-blog h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Restrict to 4 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4em; /* Adjust as needed */
    font-weight: 600;
    color: #000;
}
p.excerpt-blog.instagram-caption {
  display: none !important;
}
.blog-card .content-blog a {
  color: #111928 !important;
  transition: 0.4s ease-in-out;
}
.blog-card .content-blog a:hover {
  color: #00a5e7 !important;
}
.blog-card .blog-meta {
  font-size: 14px;
  color: #000;
  line-height: 19.6px;
  font-weight: 500;
  opacity: 0.6;
  margin: 0;
}

.content-blog .blog-description p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-family: "Manrope";
}

.blog-card .blog-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-family: "Manrope";
}
.blog-card .blog-description-detailed {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  font-family: "Manrope";
}
.blog-card .blog-description-detailed p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Manrope";
}
.blog-card .blog-description-detailed img {
  margin-bottom: 20px;
}

.user-info-container-customer-contribution .user-info-container {
  display: flex !important;
}
.blog-card .user-info-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  /* position: absolute;
    bottom: 20px; */
  width: 100%;
  justify-content: space-between;
  /* left: 0;
    right: 0; */
  margin: auto;
  margin-top: 40px;
  display: none;
}

.blog-card .user-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-info-container span {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.36px;
  color: #000;
}

.user-info-container img {
  margin-right: 8px;
}

/* Common styles for both navigation buttons */
.naviagtion-buttons .swiper-button-next,
.naviagtion-buttons .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30.769px 0px 0px 30.769px;
  background: #e5e7eb;
  box-shadow: -2px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.naviagtion-buttons .swiper-button-prev {
  border-radius: 0px 30px 30px 0px;
}
/* Hide the previous button */
/* .naviagtion-buttons .swiper-button-prev {
    display: none;
} */
.blog-carousel-container [class*="swiper-button"] > *,
.video-carousel-section [class*="swiper-button"] > *,
.podcast-section [class*="swiper-button"] > *,
.customer-contribution [class*="swiper-button"] > * {
  top: auto !important;
}
.video-content {
  height: 100%;
}
.blog-carousel-container .swiper-button-next:after,
.blog-carousel-container .swiper-button-prev:after,
.video-carousel-section .swiper-button-next:after,
.video-carousel-section .swiper-button-prev:after,
.podcast-section .swiper-button-next:after,
.podcast-section .swiper-button-prev:after,
.blog-carousel .swiper-button-next:after,
.blog-carousel .swiper-button-prev:after {
  display: none;
}
.see-all-container {
  margin-top: 15px;
}
.see-all-container a {
  color: #0662b0;
  text-decoration-line: underline;
  text-transform: uppercase;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.user-info-details {
  display: flex;
  align-items: center;
}
.share-icon-container svg {
  width: 26px;
  height: 26px;
  user-select: none;
  cursor: pointer;
  fill: #999;
}
.blog-carousel-container,
.video-carousel-container,
.podcast-carousel-container {
  position: relative;
}
.naviagtion-buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  margin: auto;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 10;
}

/* Video Block */
.video-carousel-section {
  padding: 10px 0;
}
.video-player {
  width: 100%;
  object-fit: cover;
  height: 100%;
  margin-top: 10px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9;
}
.video-card {
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.video-meta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 95%;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 2;
  top: 10px;
}
.video-meta-content span.category {
  border-radius: 3.5px;
  background: rgba(252, 252, 252, 0.4);
  backdrop-filter: blur(46.75px);
  font-size: 12px;
  line-height: 18.2px;
  font-weight: 600;
  padding: 4px 5px;
  color: #fff;
}
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-thumbnail img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}

.video-play-icon {
  position: absolute;
  cursor: pointer;
  top: 45%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.71) 100%
  );
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.vide-slider-content {
  position: absolute;
  bottom: 20px;
  width: 95%;
  left: 0;
  margin: auto;
  right: 0;
  z-index: 2;
}

.video-play-icon img {
  width: 50%;
  height: auto;
}

.tribe-video-content {
  height: 100%;
}

.video-category {
  background-color: #0088cc;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.video-title {
  margin: 10px 0;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: 31.2px;
  text-transform: capitalize;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

span.video-user span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}
span.video-user {
  display: flex;
  align-items: center;
}
.podcast-section .blog-card .content-blog h3 {
  margin-bottom: 60px;
}
.customer-contribution {
  padding: 10px 0;
}
.blog-icon {
  margin-right: 8px;
  margin-bottom: -5px;
}

/* News letter section code */
.newsletter-container {
  text-align: center;
  margin: 40px 0;
}

.newsletter-form {
  display: inline-flex;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 5px;
  overflow: hidden;
  width: 500px;
  justify-content: space-between;
  box-shadow: 0px 8px 25px 0px rgba(13, 10, 44, 0.06);
}

.newsletter-form input[type="email"] {
  border: none;
  padding: 10px 20px;
  border-radius: 30px 0 0 30px;
  outline: none;
  font-family: Manrope;
  font-size: 18px;
  color: #0d0d0d;
  line-height: 20px;
}

.newsletter-form button {
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 3.224px;
  background: var(--Solid-Colours-Brand-Primary-Primary-500, #ff5050);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  line-height: 25.6px;
  width: 200px;
}

.newsletter-form button:hover {
  background-color: #ff5050;
}
.newsletter-container h2 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: "Manrope";
}

/* blog grid */
.blog-grid {
  border-radius: var(--rounded-lg, 8px);
  border: 1px solid var(--gray-200, #e5e7eb);
  background: var(--white, #fff);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  width: calc(33.33% - 9px);
}
.blog-grid:nth-child(4),
.blog-grid:nth-child(5) {
  width: calc(50% - 7px);
}
.blog-grid-block {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.search-box-blog {
  position: relative;
  width: 100%;
  margin-right: 20px;
}

.search-input-blog {
  padding-right: 0px;
  border: 1px solid #989898;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
  text-transform: inherit;
  width: 100%;
  height: 40px;
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
}
.search-input-blog::placeholder {
  color: #333;
}
.blog-search-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  outline: none;
  border-radius: 10px;
  background: #0662b0;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-box-container {
  margin-right: 20px;
}
.blog-detailed .blog-search-button {
  right: 0;
}
.blog-detailed .search-box-container {
  margin-right: 0;
}
.category-select {
  display: flex;
  align-items: center;
}

/* Pagination Block */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.pagination-info {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  line-height: 21px;
}
span.total-pages {
  color: #000;
}
.pagination-blog {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--gray-300, #d1d5db);
  height: 40px;
}
.pagination-blog a {
  text-decoration: none;
  color: #6b7280;
  padding: 9px 12px;
  border-right: 1px solid #d1d5db;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  border-left: 1px solid #d1d5db;
}
.pagination-blog a:hover {
  background-color: #0662b0;
  color: #fff;
}
.pagination-blog a.active {
  background-color: #0662b0;
  color: #fff;
}
.pagination-blog .prev,
.pagination-blog .next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-blog span {
  padding: 8px 12px;
  border: 1px solid transparent;
}
span.numbers-pages {
  color: #000;
  font-weight: 600;
}

/* Basic popup styles */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(7px);
}

.popup-blog {
  background-color: #fff;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 65%;
  width: 100%;
  position: relative;
  align-items: center;
}
.popup-main-content {
  width: 50%;
}

.popup-blog img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  display: flex;
}
.popup-content {
  padding: 0 40px;
  width: 50%;
}
.popup-content h2 {
  margin-bottom: 15px;
  color: #383838;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  margin: 0;
}
.popup-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26.4px;
  color: #000;
  margin-bottom: 24px;
}
.popup-content input[type="email"] {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
  background: #fff;
  box-shadow: 0px 8px 25px 0px rgba(13, 10, 44, 0.06);
  height: 54px;
  font-size: 18px;
  color: #0d0d0d;
  font-weight: 400;
  line-height: 20px;
  outline: none;
}
.popup-content input[type="email"]::placeholder {
  color: #0d0d0d;
}
.popup-content button {
  background-color: #ff5050;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  border-radius: 3.224px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: Manrope;
  line-height: 25.6px;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #000;
  line-height: 35px;
  z-index: 2;
}
.popup-content form {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.social-share-container {
  position: absolute;
  right: -20px;
  top: -45px;
  background: #fff;
  padding: 10px 15px;
  border-radius: var(--rounded-lg, 8px);
  border: 1px solid var(--gray-200, #e5e7eb);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.05);
  display: none;
}
.share-icon-container img {
  margin-right: 0;
  cursor: pointer;
}
.share-icon-container img {
  max-width: 30px;
}
.not-found-container p {
  font-weight: 600;
  font-size: 18px;
  left: 1px;
  font-family: "Manrope";
  color: #000;
}
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.filter-header h1 {
  color: #111928;
  margin: 0;
  padding: 0;
  font-size: 30px;
  line-height: 40px;
}
.filter-header a {
  background: #ff5050;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 15px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
.detail-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-detailed .blog-card .image-wrapper {
  height: 408px;
}
.blog-detailed .blog-card .content-blog {
  padding: 0;
}
.blog-detailed .detail-content-header {
  padding: 10px 0;
}
.blog-detailed .detailed-social-share-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
span.share-label {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-right: 20px;
}
.blog-detailed .detailed-social-share-container a {
  margin-right: 20px;
}
.blog-detailed-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-content-block {
  width: 70%;
}
.content-block-images {
  display: flex;
  gap: 16px;
}
.content-block-images img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.filter-block-detail {
  width: 27%;
}
.category-listing ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}
.category-listing ul li {
  height: 40px;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid #989898;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 47%;
  margin: 10px auto 0;
}
.category-listing ul li:hover {
  background: #0662b0;
}
.category-listing ul li:hover a {
  color: #fff;
}
.category-listing ul li a {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.related-products-container {
  margin-block: 40px;
}
.related-products-slider.swiper-container, .product-slider-images.swiper-container {
  width: 100%;
  max-width: 100%;
}
.product-slider-images.swiper-container span {
  font-size: 25px;
}
.product-slider-images img {
  width: 100%;
}
.related-products-slider .swiper-pagination {
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}
.related-products-slider .swiper-pagination-bullet-active {
  background-color: #000;
}
.related-products-container h4 {
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 110%;
  text-transform: none;
  color: #111928;
}
.related-products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 650px;
  height: 600px;
  overflow-y: scroll;
}
.related-products-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 14px 32px 14px;
  border: 1px solid #c0c0c0;
  background: #fff;
  box-shadow: -43px 17px 47px -29px rgba(119, 119, 119, 0.55);
}
.related-products-card-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-inline: 8px;
}
.related-products-card-top img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.related-products-card-top img:hover {
  opacity: 0.7;
}
.related-products-card .product-name {
  width: 70%;
  max-height: 100px;
  margin: auto;
  padding-top: 4px;
  /* padding-inline: 26px; */
  padding-bottom: 20px;
}
.related-products-card .product-image {
  width: 100%;
  max-height: 200px;
  padding-inline: 26px;
}
.related-products-card .related-products-button {
  width: 100%;
  margin-block: 20px;
  padding-block: 8px;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  background-color: #6cafe8;
  color: #fff;
  cursor: pointer;
}
.related-products-card .related-products-button:hover {
  opacity: 0.7;
}
.related-products-slider-content {
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.related-products-slider-content img {
  width: 20px;
  height: 21px;
  margin-right: 8px;
}
.related-products-slider-content span {
  font-family: paralucent-condensed, "Fira Sans Extra Condensed", Arial Narrow, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: #a9a9a9;
  text-transform: uppercase;
}
.related-products-slider-content span.icon:before {
  font-size: 23px;
  line-height: 33px;
}
.comment-section textarea {
  width: 100%;
  height: 112px;
  border-radius: 5px;
  border: 1.572px solid #dadada;
  background: #fff;
  padding: 16px 15px;
}
.comment-section button {
  height: 48px;
  padding: 6.448px 12.895px;
  justify-content: center;
  align-items: center;
  border-radius: 3.224px;
  background: #ff5050;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  border: none;
  display: flex;
  width: 204.177px;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  line-height: 160%;
}
.comment-section h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.comment-section form label {
  color: #333;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
  margin-bottom: 10px;
}
.comment-section textarea::placeholder {
  color: #000;
  font-size: 16px;
  line-height: normal;
}
.comment-form-block {
  margin-top: 40px;
}
.recent-blogs .blog-card .content-blog {
  padding: 20px;
}
.recent-blogs .blog-card .image-wrapper {
  height: 200px;
}
.recent-blogs {
  margin-top: 40px;
}
.comment-container {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 15px;
}
.comment-section {
  padding: 20px 0;
}
.user-info-details span {
  font-family: Manrope;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: #000;
  margin-left: 8px;
}
.comment-response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment-response-header .comment-date span {
  font-family: Manrope;
  font-size: 14px;
  color: #000;
  line-height: 19.6px;
  font-weight: 600;
  opacity: 0.6;
}
.comment-info p {
  font-family: Manrope;
  font-size: 16px;
  color: #000;
  opacity: 0.6;
  font-weight: 300;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 0;
}
.login-container a {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}
.comment-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.comment-actions button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.alert-success {
  background-color: #f8fbf8;
  border-color: #17a273;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}
/* Css for Tribe Moments */

.tribe-header {
  margin-bottom: 16px;
}
.user-info-details img {
  max-width: 50px;
  width: 30px;
  border-radius: 50px;
}

.tribe-card {
  position: relative;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 20px;
  width: calc(33.33% - 15px);
}

.tribe-card .image-wrapper {
  position: relative;
}

.tribe-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.tribe-card .category,
.tribe-card .favorite {
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 18.2px;
  font-weight: 600;
  border-radius: 3.5px;
  background: rgba(252, 252, 252, 0.4);
  backdrop-filter: blur(46.75px);
  color: #fff;
}

.tribe-card .category {
  left: 10px;
}

.tribe-card .favorite {
  right: 10px;
  top: 10px;
  background: white;
  width: 25px;
  height: 25px;
  padding: 0;
}

.tribe-card .blog-meta {
  font-size: 14px;
  color: #000;
  line-height: 19.6px;
  font-weight: 500;
  opacity: 0.6;
}

.tribe-card .content-blog {
  padding: 20px;
}

.tribe-card .content-blog h3 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  padding: 5px 0;
  margin: 0 0 10px;
  text-transform: capitalize;
  /* display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 5.5em; */
}

.tribe-card .excerpt-blog {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  opacity: 0.6;
  margin: 0 0 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; /* Restricts to 5 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.tribe-card .excerpt-blog.tribe-moments-read-more:hover {
  opacity: 1;
}

.tribe-card .user-info-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  position: absolute;
  bottom: 20px;
  width: 90%;
  justify-content: space-between;
  left: 0;
  right: 0;
  margin: auto;
}
a.tribe-card-link {
  display: block;
}

/* Popup container for confirmation message */
.confirmation-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 500px;
  height: 300px;
  text-align: center;
  border-radius: 8px;
}

/* Confirmation message content */
.confirmation-popup .confirmation-message {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

/* Close button for the confirmation popup */
.confirmation-popup #confirmation-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.customer-contribution-carousel .blog-card .image-wrapper {
  height: auto;
}
.customer-contribution-carousel .video-card {
  height: 350px;
}
.customer-contribution-carousel .image-wrapper img {
  height: 350px !important;
  object-fit: cover;
}
.customer-contribution-carousel .content-blog p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  opacity: 0.6;
  color: #000;
  font-family: "Manrope";
  word-break: break-word;
  overflow-wrap: break-word;
}

.newsletter-section h2 {
  margin-bottom: 0;
}
.newsletter-content {
  margin-bottom: 20px;
}
.newsletter-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26.4px;
  margin-bottom: 24px;
}
p#form-message {
  margin: 10px 0;
  font-size: 16px;
  line-height: 26px;
}
.customer-contributions-carousel-container .swiper-slide {
  display: flex;
  align-items: stretch;
}

.contribution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
.hidden-comment {
  display: none;
}
.load-more-button,
.show-less-button {
  display: block;
  padding: 0;
  background-color: transparent;
  color: #00a5e7;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.load-more-button:hover,
.show-less-button:hover {
  background-color: transparent;
  padding: 0;
}
.button-container-comment-button {
  display: flex;
  gap: 15px;
}
.related-products-wrapper::-webkit-scrollbar-thumb {
  background: #888;
}

.related-products-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.related-products-wrapper::-webkit-scrollbar {
  width: 10px;
}
.article-date-time-container {
  margin-bottom: 15px;
}
.blog-listing-page .content-blog img, .filter-page .content-blog img, .search-page .content-blog img, .blog-carousel-container .content-blog img, .recent-blogs .content-blog img {
  display: none;
}
.blog-card .user-info-container img {
  display: block !important;
}
.content-block img {
  max-width: 100%;
  border-radius: 8px;
}
.blog-content-date-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.iframe-container {
  height: 100%;
}
.video-carousel-section .video-thumbnail {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}
.instagram-caption {
  display: none;
}
.related-card-logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
}
.related-card-logo-image img {
  max-width: 150px;
}
.blog-description-detailed ol {
  list-style-position: outside;
  padding: 0 15px;
}
.blog-description-detailed ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 15px;
}
.related-products-card .social-share-container {
  position: absolute;
  right: 28px;
  top: -10px;
}
button.favorite-icon-container img {
  background: transparent;
  height: 30px;
  width: 30px;
}

button.favorite-icon-container {
  background: transparent;
  border: none !important;
  outline: none !important;
}
.pagination-blog .disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.favourtie-icon-form .item-favourite-button.pin {
  position: static;
}
.favourtie-icon-form .item-favourite-button .icon.active {
  display: block !important;
}
.item-heart-icon {
  font-size: 26px;
  color:#999 !important;
}

@media (min-width: 576px) {
  .aussiebum-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .aussiebum-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .aussiebum-container {
    max-width: 960px;
  }
}
@media (min-width: 1240px) {
  .aussiebum-container {
    max-width: 1200px;
    padding: 0;
  }
}
