@font-face {
  font-family: Gready;
  src: url("../fonts/Gready-Regular.7b1ec836314b.otf");
}

@font-face {
  font-family: Playfair;
  src: url("../fonts/PlayfairDisplay-Medium.7598c57b787f.woff");
}

:root {
  --color-blue: #172e45;
  --color-pink: #ce3758;
  --color-orange: #d78451;
  --color-white: #f7f2e9;
}

html {
  scroll-padding-top: 100px; /* positions screen in the right place for anchor links so text isn't hidden behind header */
}

body {
  background: var(--color-white);
  color: var(--color-blue);
  font-family: 'Avenir Next';
  letter-spacing: 0.4px;
  line-height: 23px;
}

main {
  min-height: calc(100vh - 230px);
  margin-top: 70px;
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) {
  main {
    margin-top: 89px;
  }
}

img {
  max-width: 100%;
}

h1,
.h1 {
  font-family: Playfair;
  font-size: 32px;
  line-height: 34px;
  letter-spacing: -0.02px;
}

h2,
.h2 {
  font-family: Playfair;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.02px;
}

h3,
.h3 {
  font-family: Playfair;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: 0px;
}

.link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.subheading,
label {
  font-family: 'Avenir Next';
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.6px;
}

.label {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.1px;
}

.text-small,
.helptext {
  font-size: 14px;
}

.text-xsmall {
  font-size: 12px;
}

.text-fade {
  opacity: 0.5;
}

p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.3px;
}

p,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 h5,
.h5 {
  margin-bottom: 0;
}

input,
select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-blue);
  width: 100%;
  color: var(--color-blue);
}

.input-wrapper {
  margin-bottom: 40px;
}

textarea {
  background: transparent;
  min-width: 240px;
  width: 100%;
  border-color: var(--color-blue);
  border-radius: 8px;
  padding: 10px;
  max-height: 100px;
}

textarea::placeholder {
  color: var(--color-blue);
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

.btn-primary {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
}

.text-pink {
  color: var(--color-pink);
}

.btn-primary:hover {
  color: var(--color-pink);
  background-color: white;
  border-color: var(--color-pink);
}

.link {
  text-decoration: none;
  color: var(--color-pink);
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
  position: relative;
  background-color: transparent;
  border: none;
  padding: 0;
}

.link-blue {
  color: var(--color-blue);
}

.link:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color-pink);
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
}

.link--uppercase {
  text-transform: uppercase;
  font-weight: 600;
}

.link--uppercase:after {
  display: none;
}

.link:hover {
  opacity: 0.8;
}

.internal-link {
  display: inline;
}

.link svg {
  width: 10px;
  margin-left: 10px;
  transition: transform 0.2s ease-in-out;
}

.link:hover svg {
  transform: translateX(5px);
}

.inbox__back-button.link svg {
  margin-left: 0;
  margin-right: 10px;
  transform: rotate(180deg);
}

.inbox__back-button.link:hover svg {
  transform: rotate(180deg) translateX(5px);
}

a {
  color: var(--color-pink);
  text-decoration: none;
}

.button {
  background: var(--color-pink);
  border: 1px solid var(--color-pink);
  color: var(--color-white);
  padding: 6px 10px;
  min-width: 100px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.button--white {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-blue);
}

.button--blue {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
}

.button--full {
  width: 100%;
}

.button--large {
  min-width: 180px;
}

.button--small {
  padding: 3px 5px;
  min-width: 80px;
  font-size: 12px;
  margin-right: 10px;
}

.button svg {
  width: 14px;
  height: 14px;
  margin-left: 5px;
}

.button svg path {
  fill: var(--color-white);
  transition: fill 0.3s ease-in-out;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.7;
}

@media screen and (pointer: fine) {
  .button:hover {
    color: var(--color-white);
    background: var(--color-blue);
    border-color: var(--color-white);
  }

  .button--blue:hover {
    color: var(--color-white);
    background: var(--color-pink);
    border-color: var(--color-white);
  }

  .button:hover svg path {
    fill: var(--color-pink);
  }
}

input.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-pink);
  color: var(--color-pink);
  border-radius: 0;
  padding-left: 0;
  min-width: 250px;
}

input.form-control:focus {
  background: transparent;
  color: var(--color-pink);
  outline: none;
  border-color: var(--color-pink);
  box-shadow: none;
}

input.form-control::placeholder {
  color: var(--color-pink);
}

/* Modal */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: auto;
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  padding: 40px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) {
  .modal-content {
    width: 500px;
    padding: 60px 40px;
  }
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  cursor: pointer;
}

.modal-content th.label {
  display: table-cell;
  width: 25%;
}

.modal-content thead tr,
.modal-content tbody tr {
  border-bottom: 1px solid var(--color-blue);
}

.modal-content tbody td {
  padding-top: 10px;
}

/* Navigation */
.navbar {
  padding: 0;
  position: fixed;
  width: 100%;
  z-index: 11;
  top: 0;
  display: flex;
  flex-direction: column;
}

.navbar-nav {
  gap: 25px;
}

.navbar .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
}

.navbar__content {
  width: 100%;
  background: var(--color-blue);
  padding: 20px;
}

.navbar__sub-menu {
  width: 100%;
  background: var(--color-white);
}

.navbar__sub-menu ul {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 3px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.outer {
  margin-top: -40px;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler svg {
  width: 25px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler__icon {
  width: 30px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.navbar__sub-menu .nav-link:hover,
.footer .nav-link:hover,
.nav-link:hover {
  color: var(--color-pink);
}

.navbar__sub-menu .nav-link {
  color: var(--color-blue);
}

.navbar__search-bar {
  background: var(--color-white);
  padding: 9px 15px;
}

.navbar__search-bar input {
  background: transparent;
  border: none;
  color: var(--color-blue);
}

.navbar__search-bar input:focus {
  outline: none;
}

.navbar__search-bar input::placeholder {
  color: var(--color-blue);
}

.logo {
  max-height: 50px;
  padding: 0;
}

@media only screen and (min-width: 1200px) {
  .navbar .container-fluid {
    justify-content: flex-end;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }

  .navbar__content {
    padding: 35px 20px;
  }

  .navbar__logo-wrapper,
  .navbar__search-bar {
    grid-column: span 3;
  }

  .navbar__nav-links {
    grid-column: span 6;
  }
}

@media only screen and (min-width: 1200px) {
  .navbar__content {
    padding: 20px 20px;
  }
}

/* End of Navigation */

/* Homepage Hero */
.homepage-hero {
  height: calc(100vh - 90px);
  min-height: 600px;
  color: var(--color-white);
  position: relative;
  margin-top: 90px;
}

.homepage-hero__title {
  max-width: 320px;
  margin-top: 12px;
}

.homepage-hero__content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  height: max-content;
  background: var(--color-white);
  color: var(--color-blue);
  padding: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.homepage-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  object-position: 50% 60%;
}

.homepage-hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(23, 46, 69, 0.2);
  left: 0;
}

.homepage-hero__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

/* End of Homepage Hero */

/* Content card styling */
.content-card {
  position: relative;
  height: max-content;
}

.content-card__image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.73;
}

.content-card__label {
  background-color: var(--color-white);
  color: var(--color-blue);
  border: 1px solid var(--color-white);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  text-align: center;
  padding: 8px 10px;
  transition: all 0.3s ease;
}

.content-card__label:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.content-card__label .subheading {
  margin: 0;
}
/* End of content card styling */

/* Edit card */
.edit-card__image {
  aspect-ratio: 1;
  object-fit: cover;
}

.edit-card__content {
  color: var(--color-white);
}

.edit-card__name {
  margin-top: 8px;
}

.edit-card__copy {
  margin-top: 4px;
}
/* End of Edit card */

/* Product & Blog card */
a.product-card, a.blog-card, a.the-edit__item {
  color: var(--color-blue);
}

.blog-card__image,
.product-card__image {
  aspect-ratio: 0.73;
  object-fit: cover;
}

.product-card__title {
  margin-top: 8px;
}

.product-card__prices {
  margin-top: 10px;
  display: grid;
}

.blog-card__title {
  margin-top: 4px;
  margin-bottom: 8px;
}

.blog-card__date {
  margin-top: 8px;
}
/* End of Product & blog card */

/* Occasion selectors */
.occasion-selectors {
  padding: 68px 40px;
}

.generic__top-level {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.occasion-selectors__content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
/* End of Occasion selectors */

/* Brand partnerships */
.brand-partnerships {
  padding: 68px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.brand-partnerships__top-wrapper {
  grid-column: span 2;
}

.brand-partnerships__title {
  max-width: 320px;
  margin-bottom: 24px;
}

.brand-partnerships__copy {
  max-width: 356px;
}

.brand-partnerships__content {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* End of Brand partnerships */

/* The Edit */
.the-edit {
  padding: 68px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: var(--color-pink);
  color: var(--color-white);
}

.the-edit__top-wrapper {
  grid-column: span 2;
}

.the-edit__title {
  max-width: 320px;
  margin-bottom: 12px;
}

.the-edit__subheading {
  max-width: 282px;
  margin-bottom: 8px;
}

.the-edit__copy {
  max-width: 322px;
}

.the-edit__button,
.brand-partnerships__top-wrapper .button {
  margin-top: 24px;
  display: inline-block;
}

.the-edit__content {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.desktop-hidden {
  display: none;
}

/* End of The Edit */

/* Designers */
.designers {
  padding: 68px 40px;
}

.designers__top-level {
  margin-bottom: 55px;
}

.designers__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 8%;
}

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

.designers__logo img {
  max-width: 100%;
}

/* End of Designers */

/* Carousel */
.carousel {
  padding: 68px 40px;
}

.carousel__swiper {
  overflow-x: hidden;
}

.carousel__swiper .swiper-wrapper {
  height: max-content;
  overflow-y: clip;
}

.carousel .swiper-button-next,
.carousel .swiper-button-prev {
  background-image: none;
  width: 30px;
  height: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-top: -30px;
}

.carousel .swiper-button-next {
  right: 40px;
}

.carousel .swiper-button-prev {
  left: 40px;
}
/* End of Carousel */

/* Blog section */
.blog-section {
  padding: 68px 40px;
}
/* End of Blog section */

/* How it works */
.how-it-works {
  background: var(--color-pink);
  padding: 68px 40px;
  text-align: center;
  color: var(--color-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-it-works__title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.how-it-works__tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.how-it-works__tab {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

.how-it-works__tab.active {
  opacity: 1;
  border-bottom: 2px solid var(--color-blue);
  padding: 0;
  color: var(--color-blue);
}

.how-it-works__panel {
  display: none;
  width: 100%;
  max-width: 1100px;
}

.how-it-works__panel.active {
  display: block;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.how-it-works__card {
  background: var(--color-white);
  padding: 20px;
  text-align: left;
}

.how-it-works__card span {
  font-weight: 600;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}

.how-it-works__step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.how-it-works__card-title {
  margin-bottom: 4px;
}

.how-it-works__card-copy {
  max-width: 204px;
}

.how-it-works__cta {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .how-it-works__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .how-it-works__steps {
    grid-template-columns: 1fr;
  }
}
/* End of How it works */

/* Rental Info */
.rental-info {
  margin: 60px 20px;
}

.rental-info__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  max-width: 80%;
  margin: 40px auto 60px;
}

.rental-info__icon {
  width: 60px;
  margin-bottom: 20px;
}

.rental-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.rental-info__copy {
  max-width: 250px;
}
/* End of Rental Info */

/* About */
.about,
.the-edit-home {
  display: flex;
  align-items: center;
  padding: 60px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.about p {
  margin-bottom: 1rem;
}

.the-edit-home {
  background-color: var(--color-pink);
  color: var(--color-blue);
}

.about__content {
  max-width: 600px;
  padding: 0 80px;
}

.about__content h1 {
  font-family: Gready;
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  max-height: 700px;
  /* border-radius: 8px; */
  /* border: 2px solid var(--color-blue); */
}
/* End of About */

/* Footer */
.footer {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 200px;
}

.footer .nav-link {
  color: var(--color-white);
  text-align: left;
}

.mc-field-group {
  margin-right: 10px;
  width: 100%;
}

.footer__logo-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-wrapper img {
  max-height: 50px;
}

.footer__nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer__links-wrapper {
  display: flex;
  gap: 60px;
}

.footer__socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 68px;
}

.footer__socials a {
  color: transparent !important;
}

.footer__socials img {
  max-height: 20px;
}

.footer__item form {
  margin-bottom: 0;
}

.footer__item a {
  color: var(--color-pink);
}

.signup .button {
  min-width: 60px;
}

.signup__container {
  display: flex;
  height: 40px;
}

.signup__container input.form-control {
  margin-bottom: 0;
}
/* End of Footer */

/* FAQs */
.faqs {
  padding: 68px 40px;
}

.faqs__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faqs--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.faqs__title {
  margin-bottom: 12px;
}

.faqs__copy {
  margin-bottom: 24px;
  max-width: 248px;
}

.faqs__search-wrapper {
  margin-bottom: 32px;
}

.faqs__search {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-blue);
  background: transparent;
  font-size: 1rem;
  outline: none;
}

.faqs__search::placeholder {
  color: inherit;
  opacity: 0.5;
}

.faqs__content {
  border-top: 1px solid var(--color-blue);
}

.faqs__faq {
  border-bottom: 1px solid var(--color-blue);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.faqs__question {
  margin: 0;
  padding: 18px 0;
  flex: 1;
  order: 1;
  cursor: pointer;
  text-transform: unset;
}

.faqs__plus {
  font-size: 2.5em;
  user-select: none;
  transition: 0.3s ease;
  flex-shrink: 0;
  order: 2;
  line-height: 1;
  cursor: pointer;
}

.faqs__answers {
  width: 100%;
  flex-basis: 100%;
  order: 3;
  height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faqs__questions:checked ~ .faqs__answers {
  height: auto;
  padding: 15px 0;
}

.faqs__questions:checked ~ .faqs__plus {
  transform: rotate(45deg);
}

.faqs__questions {
  display: none;
}

.faq-view {
  max-width: 150px;
  margin: auto;
}
/* End of FAQs */

/* Mobile styling */
@media only screen and (max-width: 748px) {
  .footer {
    flex-direction: column;
    gap: 0;
    padding: 2.5rem 1.25rem;
  }

  .footer__logo-wrapper {
    margin-bottom: 2.5rem;
    width: 100%;
    align-items: flex-start;
  }

  .footer__item {
    width: 100%;
  }

  .footer__socials {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .footer__links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    text-align: left;
  }

  .about {
    flex-direction: column-reverse;
    padding: 30px 20px;
  }

  .about__content {
    margin-top: 30px;
    padding: 0;
  }

  .about__subheading {
    max-width: 220px;
  }

  .about__image-wrapper img {
    aspect-ratio: 1 / 1;
  }

  .homepage-hero__content {
    left: 20px;
    bottom: 20px;
    padding: 20px;
  }

  .homepage-hero__content p {
    max-width: 250px;
  }

  .rental-info__items {
    max-width: 100%;
    margin-bottom: 100px;
  }

  .rental-info__item {
    width: calc(50% - 10px);
  }

  .navbar-brand {
    position: relative;
    left: unset;
    transform: none;
  }

  .outer {
    margin-top: 0;
  }

  .logo {
    padding: 5px 0;
  }

  .generic__top-level {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .faqs,
  .how-it-works,
  .the-edit,
  .brand-partnerships,
  .designers,
  .occasion-selectors {
    padding: 40px 20px;
  }

  .occasion-selectors__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .designers__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15%;
  }

  .carousel {
    padding: 40px 0;
  }

  .carousel .generic__top-level {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .carousel .swiper-button-next {
    right: 20px;
  }

  .carousel .swiper-button-prev {
    left: 20px;
  }

  .the-edit,
  .brand-partnerships {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .the-edit__content,
  .brand-partnerships__content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .desktop-hidden {
    display: block;
  }

  .how-it-works__step {
    margin-bottom: 20px;
  }

  .how-it-works__card-copy {
    display: none;
  }

  .how-it-works__steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .how-it-works__card {
    padding: 12px;
  }

  .how-it-works__cta {
    margin-top: 0;
  }

  .faqs {
    padding: 40px 20px;
  }

  .faqs--split {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar__logo-wrapper {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-nav {
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px !important;
  }

  .navbar .navbar-nav .nav-link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar__sub-menu ul,
  .navbar__search-bar {
    display: none;
  }

  .navbar__content {
    padding: 10px 20px;
  }

  .navbar .container-fluid {
    padding: 0;
  }

  .homepage-hero {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }
}
/* End of Mobile styling */

.checkout__radio {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

.checkout__radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.checkout__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-pink);
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.checkout__radio input:checked ~ .checkout__checkmark {
  background-color: var(--color-pink);
}

/* Styles for tabs */
.tab-container {
  display: flex;
  justify-content: center;
  padding: 10px;
}

/* Styles for content sections */
.tab-content {
  display: none;
}

.tab-content__buttons {
  display: flex;
}

.tab-content__button,
.tablinks {
  border: none;
  background: none;
  padding: 5px 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-blue);
  font-size: 16px;
  transition: color 0.3s ease-in-out;
  position: relative;
  margin: 0 20px;
}

.tab-content__button:after,
.tablinks:after {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--color-blue);
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.tab-content__button.active:after,
.tab-content__button:hover:after,
.tablinks.active:after,
.tablinks:hover:after {
  width: 100%;
}

.tab-content__order {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  border: 1px solid;
  border-radius: 8px;
  padding: 20px;
}

.tab-content__details {
  display: flex;
}

.tab-content__details img {
  aspect-ratio: 9 / 11;
  object-fit: cover;
  width: 100%;
  max-width: 100px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.tab-content__dates {
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .tab-content__order {
    flex-direction: row;
  }

  .tab-content__details img {
    margin-bottom: 0;
  }
}

.badge-primary {
  background-color: var(--color-pink);
  vertical-align: text-top;
}

.pink-text {
  color: var(--color-pink);
}

/* Button max-width for View all buttons */
.the-edit__button.button--large,
.faqs__top-wrapper .button.button--large {
  max-width: 200px;
}

/* Blue headings for carousel sections */
.carousel .generic__top-level h2,
.blog-section .generic__top-level h2 {
  color: var(--color-blue);
}

/* Navbar search bar form - no margin bottom */
.navbar__search-bar form {
  margin-bottom: 0;
}
