/*
Author: Don Jon
Name: MareleJewels Theme
Version: 1.0.0
*/
@import url(/wp-content/themes/marelejewels/bootstrap-icons/font/bootstrap-icons.css);
.hide-xs-block {
  display: none;
}
@media (min-width: 576px) {
  .hide-xs-block {
    display: block;
  }
}

.hide-sm-block {
  display: none;
}
@media (min-width: 768px) {
  .hide-sm-block {
    display: block;
  }
}

.hide-md-block {
  display: none;
}
@media (min-width: 992px) {
  .hide-md-block {
    display: block;
  }
}

.hide-lg-block {
  display: none;
}
@media (min-width: 1200px) {
  .hide-lg-block {
    display: block;
  }
}

.hide-xl-block {
  display: none;
}
@media (min-width: 1400px) {
  .hide-xl-block {
    display: block;
  }
}

@media (min-width: 576px) {
  .show-xs {
    display: none;
  }
}

@media (min-width: 768px) {
  .show-sm {
    display: none;
  }
}

@media (min-width: 992px) {
  .show-md {
    display: none;
  }
}

@media (min-width: 1200px) {
  .show-lg {
    display: none;
  }
}

@media (min-width: 1400px) {
  .show-xl {
    display: none;
  }
}

.color-test {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: top;
}
.color-test * {
  width: 30%;
  height: 100%;
  margin: 0 10px;
}
.color-test * * {
  width: 100%;
  height: 36px;
  margin-bottom: 18px;
}

.primary {
  background-color: #5D2972;
}

.primary-900 {
  background-color: black;
}

.primary-800 {
  background-color: black;
}

.primary-700 {
  background-color: #1a0b1f;
}

.primary-600 {
  background-color: #3b1a49;
}

.primary-400 {
  background-color: #7f389b;
}

.primary-300 {
  background-color: #9e4cbf;
}

.primary-200 {
  background-color: #b476ce;
}

.primary-100 {
  background-color: #d7b5e5;
}

.secondary {
  background-color: #28556D;
}

.secondary-900 {
  background-color: black;
}

.secondary-800 {
  background-color: black;
}

.secondary-700 {
  background-color: #0a151b;
}

.secondary-600 {
  background-color: #193544;
}

.secondary-400 {
  background-color: #377596;
}

.secondary-300 {
  background-color: #4994bc;
}

.secondary-200 {
  background-color: #72accb;
}

.secondary-100 {
  background-color: #b1d1e3;
}

.tertiary {
  background-color: #AC6A39;
}

.tertiary-900 {
  background-color: #030201;
}

.tertiary-800 {
  background-color: #2e1c0f;
}

.tertiary-700 {
  background-color: #58361d;
}

.tertiary-600 {
  background-color: #82502b;
}

.tertiary-400 {
  background-color: #c78656;
}

.tertiary-300 {
  background-color: #d5a480;
}

.tertiary-200 {
  background-color: #e3c2aa;
}

.tertiary-100 {
  background-color: #f9f1eb;
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/Noto_Sans/NotoSans-Light.ttf");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Noto_Sans/NotoSans-Regular.ttf");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Noto_Sans/NotoSans-Medium.ttf");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Noto_Sans/NotoSans-Bold.ttf");
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Dancing_Script/DancingScript-Regular.ttf");
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Dancing_Script/DancingScript-Medium.ttf");
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Dancing_Script/DancingScript-SemiBold.ttf");
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Dancing_Script/DancingScript-Bold.ttf");
}
@font-face {
  font-family: "Miama";
  font-style: normal;
  src: url("fonts/Miama/Miama.ttf");
}
html,
body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  color: black;
  background-color: #ffffff !important;
  max-width: 100vw;
}
html a,
body a {
  color: black;
}
html a:visited,
body a:visited {
  color: black;
}
html a:hover,
body a:hover {
  color: #3b1a49;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

select {
  position: relative;
  color: #1a0b1f;
  height: 36px;
  padding: 0 20px;
  border: 1px solid #5D2972;
  border-radius: 5px;
  appearance: none;
  background-color: #f8f1fa;
  background: url(/wp-content/themes/marelejewels/inc/chevron-down-purple.svg) no-repeat right #f8f1fa;
  background-position-x: calc(100% - 10px);
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: 1px solid #3b1a49 !important;
}
select.orderby {
  padding-right: 45px !important;
  background-color: #f8f1fa;
  color: #1a0b1f;
}
select.wppp-select {
  padding-right: 45px !important;
  background-color: #f8f1fa;
  color: #1a0b1f;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number] {
  background-color: #f8f1fa;
  border-radius: 5px;
  box-shadow: none;
  min-height: 36px;
  padding: 0 20px;
  border: 1px solid #5D2972;
  min-width: 72px;
}

textarea {
  background-color: #f8f1fa;
  border-radius: 5px;
  box-shadow: none;
  min-height: 36px;
  padding: 0 20px;
  border: 1px solid #5D2972;
  min-width: 72px;
}

.site-navbar {
  position: sticky;
  top: 0;
  max-width: 100vw;
  background-color: #f8f1fa;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
  z-index: 1000;
}
.site-navbar__logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.site-navbar__logo-wrapper {
  height: 48px;
  width: 90px;
  text-decoration: none;
  color: black;
}
.site-navbar__logo-wrapper svg,
.site-navbar__logo-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.site-navbar__icon-button {
  position: relative;
  height: 48px;
  width: 48px;
  padding: 12px;
  border-radius: 5px;
  background-color: #f8f1fa;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  box-shadow: none;
  border: none;
}
.site-navbar__icon-button:hover {
  background-color: #ebdbf2;
}
.site-navbar__icon-button:active {
  background-color: #d7b5e5;
}
.site-navbar__icon-button__badge {
  height: 20px;
  min-width: 20px;
  border-radius: 10px;
  font-size: 12px;
  background-color: black;
  color: white;
  font-weight: 500;
  text-align: center;
  padding: 0 4px;
}
.site-navbar__icon-button__badge-container {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: -4px;
  right: -4px;
  z-index: 500;
  height: 20px;
  min-width: 20px;
}
.site-navbar__mobile-nav * {
  max-width: 100vw;
  max-height: 100vh;
}
@media (min-width: 992px) {
  .site-navbar__mobile-nav {
    display: none;
  }
}
.site-navbar__mobile-nav__background {
  position: fixed;
  left: -100dvw;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: #5D2972;
  opacity: 1;
  z-index: -1;
  transition: 0.2s;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler {
  color: inherit;
  display: none;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-label {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  z-index: 100000;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-label:hover ~ #mobile-nav-menu-toggler-button, .site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-label:active ~ #mobile-nav-menu-toggler-button, .site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-label:focus ~ #mobile-nav-menu-toggler-button {
  background-color: #7f389b;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-button {
  position: relative;
  height: 48px;
  width: 48px;
  padding: 12px;
  border-radius: 5px;
  background-color: #f8f1fa;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  box-shadow: none;
  border: none;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-button:hover {
  background-color: #f8f1fa;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-button:active {
  background-color: #f8f1fa;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler ~ #mobile-nav-menu-toggler-button::before {
  content: "\f479";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler:checked {
  z-index: 999999;
  background-color: transparent;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler:checked ~ #mobile-nav-menu-toggler-button {
  z-index: 999999;
  background-color: transparent;
  color: white;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler:checked ~ #mobile-nav-menu-toggler-label {
  z-index: 9999999;
  background-color: transparent;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler:checked ~ #mobile-nav-menu-toggler-button::before {
  content: "\f659";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler:checked ~ .site-navbar__mobile-nav__background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: #5D2972;
  opacity: 1;
  pointer-events: all;
  z-index: 99999;
}
.site-navbar__mobile-nav #mobile-nav-menu-wrapper #mobile-nav-menu-toggler:checked ~ .site-navbar__mobile-nav__content {
  display: flex;
  z-index: 99999;
  left: 0;
  width: 100dvw;
  height: 100dvh;
}
.site-navbar__mobile-nav__content {
  position: fixed;
  left: -100dvw;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -1;
  transition: 0.2s;
  pointer-events: all;
}
.site-navbar__mobile-nav__content__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
}
.site-navbar__mobile-nav__content__menu li {
  position: relative;
  display: inline-block;
  color: inherit;
  font-size: 20px;
  text-decoration: none;
  margin: 0 10px 20px 10px;
  white-space: nowrap;
  transform-origin: center;
}
.site-navbar__mobile-nav__content__menu li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px !important;
  text-decoration: none;
  color: white;
}
.site-navbar__search-desktop {
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid gray;
  outline: none;
  margin-right: 5px;
  padding: 7px 20px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}
.site-navbar__search-desktop > span {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  margin-left: 10px;
  cursor: pointer;
  outline: none;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .site-navbar__search-desktop {
    display: inline-flex;
  }
}
.site-navbar__search-desktop:hover {
  background-color: #ebdbf2;
}
.site-navbar__contact-link {
  text-decoration: none;
  font-weight: 500;
  font-family: "Dancing Script", cursive;
}
.site-navbar__contact-link:not(:last-child) {
  margin-right: 30px;
}
.site-navbar__nav-menu {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  height: 32px;
}
.site-navbar__nav-menu > span {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8f1fa;
  height: auto;
}
.site-navbar__nav-menu > span::before {
  content: "";
  position: absolute;
  display: none;
  top: -4.6666666667px;
  left: -13.3333333333px;
  width: calc(100% + 26.6666666667px);
  height: calc(100% + 9.3333333333px);
  background-color: #f8f1fa;
  z-index: 1000;
}
.site-navbar__nav-menu > span:hover {
  z-index: 3000;
}
.site-navbar__nav-menu > span:hover > ul {
  display: flex;
}
.site-navbar__nav-menu > span:hover::before {
  display: block;
}
.site-navbar__nav-menu > span > a {
  display: block;
  width: 100%;
  height: 32px;
  padding: 4.6666666667px 13.3333333333px;
  text-decoration: none;
  border-radius: 5px;
  z-index: 3000;
}
.site-navbar__nav-menu > span > a:hover {
  background-color: #ebdbf2;
}
.site-navbar__nav-menu > span > ul {
  list-style-type: none;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #f8f1fa;
  padding: 7px 0;
  z-index: 3000;
}
.site-navbar__nav-menu > span > ul > li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
}
.site-navbar__nav-menu > span > ul > li > a {
  padding: 4.6666666667px 6.6666666667px;
  text-decoration: none;
  width: calc(100% - 6.6666666667px);
  max-width: calc(100% - 6.6666666667px);
  text-overflow: ellipsis;
  text-align: center;
  border-radius: 5px;
}
.site-navbar__nav-menu > span > ul > li > a:hover {
  background-color: #ebdbf2;
}

.search-modal {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: none;
}
.search-modal__searchfield {
  margin: auto;
  width: 100%;
  max-width: 70%;
  height: 60px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.98) !important;
  color: #5D2972;
  border: 1px solid #5D2972;
  outline: none;
  font-size: 24px;
}
.search-modal__searchfield-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.search-modal__searchfield:focus {
  outline: none;
}
@media (min-width: 576px) {
  .search-modal__searchfield {
    max-width: 600px;
  }
}
.search-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  color: #5D2972;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
}
.search-modal__results {
  margin-top: 30px;
}
.search-modal__results__heading {
  font-size: 20px;
  text-align: left;
  font-weight: 800;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .search-modal__results__heading {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .search-modal__results__heading {
    font-size: 28px;
  }
}
.search-modal__results__post {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  color: #5D2972;
  padding: 10px;
  border-radius: 5px;
  height: 100%;
  max-height: 120px;
  min-height: 96px;
  background-color: rgba(255, 255, 255, 0.75);
}
.search-modal__results__post:hover {
  color: #5D2972;
  background-color: rgba(93, 41, 114, 0.05);
}
.search-modal__results__post__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: transparent;
  border-radius: 5px;
}
.search-modal__results__post__image-container {
  height: 100%;
  width: calc(30% - 20px);
  margin-right: 20px;
  background-color: transparent;
}
@media (min-width: 460px) {
  .search-modal__results__post__image-container {
    width: calc(20% - 20px);
  }
}
@media (min-width: 576px) {
  .search-modal__results__post__image-container {
    width: calc(30% - 20px);
  }
}
.search-modal__results__post__info {
  display: inline-block;
  width: calc(70% - 20px);
  color: #5D2972;
}
.search-modal__results__post__info:hover {
  color: #5D2972;
}
.search-modal__results__post__info__title {
  font-size: 16px;
  color: #5D2972;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.search-modal__results__post__info__title:hover {
  color: #5D2972;
}
.search-modal__results__post__info__price {
  font-size: 16px;
  color: #5D2972;
  font-weight: 400;
  margin: 0;
}
.search-modal__results__post__info__price .struck {
  text-decoration: line-through;
  font-weight: 300 !important;
  font-size: 12px;
}
.search-modal__results__post__info__price .offer {
  text-decoration: none;
  font-weight: 500 !important;
  font-size: 14px;
  margin-left: 3px;
}
.search-modal__results__post__info__price:hover {
  color: #5D2972;
}
.search-modal__results__post__info__sku {
  font-size: 12px;
  color: #383838;
  font-weight: 400;
  margin: 0;
}
.search-modal__results__post__info__sku:hover {
  color: #383838;
}

.front-page-h2 {
  font-family: "Miama" !important;
  font-weight: 900 !important;
  font-size: 36px;
}
@media (min-width: 768px) {
  .front-page-h2 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .front-page-h2 {
    font-size: 48px;
  }
}
.front-page__carousel {
  user-select: none;
}
.front-page__carousel-item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .front-page__carousel-item-content {
    flex-direction: row;
  }
}
.front-page__carousel-item-content__top-or-left {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
}
@media (min-width: 768px) {
  .front-page__carousel-item-content__top-or-left {
    width: 60%;
    padding-top: 50%;
  }
}
@media (min-width: 992px) {
  .front-page__carousel-item-content__top-or-left {
    padding-top: 40%;
  }
}
.front-page__carousel-item-content__bottom-or-right {
  position: relative;
  width: 100%;
  padding-top: 90%;
  margin-top: -30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  background: white;
  background: linear-gradient(180deg, transparent 0%, white 29%);
}
@media (min-width: 440px) {
  .front-page__carousel-item-content__bottom-or-right {
    padding-top: 66.66%;
  }
}
@media (min-width: 576px) {
  .front-page__carousel-item-content__bottom-or-right {
    padding-top: 50%;
  }
}
@media (min-width: 768px) {
  .front-page__carousel-item-content__bottom-or-right {
    width: 50%;
    padding-top: 50%;
    margin-top: 0;
    margin-left: -10%;
    background-color: white;
    background: white;
    background: linear-gradient(90deg, transparent 0%, white 4%);
  }
}
@media (min-width: 992px) {
  .front-page__carousel-item-content__bottom-or-right {
    padding-top: 40%;
  }
}
.front-page__carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-page__carousel__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .front-page__carousel__image-container {
    padding-top: 50%;
  }
}
@media (min-width: 768px) {
  .front-page__carousel__image-container {
    padding-top: 33.33%;
  }
}
.front-page__carousel__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.front-page__carousel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: black;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 20px 20px;
}
.front-page__carousel__content__heading {
  margin-bottom: 10px;
  font-family: "Miama";
  font-weight: 700;
  font-size: 28px;
  max-width: 90%;
  text-align: center;
}
@media (min-width: 768px) {
  .front-page__carousel__content__heading {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .front-page__carousel__content__heading {
    font-size: 48px;
  }
}
.front-page__carousel__content__description {
  margin-bottom: 10px;
  font-size: 14px;
  max-width: 90%;
  text-align: center;
}
@media (min-width: 768px) {
  .front-page__carousel__content__description {
    max-width: 70%;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .front-page__carousel__content__description {
    font-size: 18px;
  }
}
.front-page__carousel__content__buttons {
  width: 80%;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .front-page__carousel__content__buttons {
    width: 100%;
  }
}
.front-page__carousel__content .btn {
  width: 100%;
  border-color: #28556D !important;
}
.front-page__carousel__content .btn:hover {
  background-color: #28556D !important;
}
@media (min-width: 992px) {
  .front-page__carousel__content .btn {
    width: auto;
  }
}
.front-page__carousel__content .btn-dark {
  color: white;
  background-color: #28556D !important;
  border-color: #28556D !important;
}
.front-page__carousel__content .btn-dark:hover {
  background-color: #367292 !important;
}
.front-page__custom-jewels .btn-dark {
  background-color: #28556D !important;
  color: white;
  border-color: transparent !important;
  outline: transparent !important;
}
.front-page__custom-jewels .btn-dark:hover {
  background-color: #367292 !important;
}
.front-page__custom-jewels__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-page__custom-jewels__image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.front-page__custom-jewels__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.front-page__repairment-services {
  margin-top: 60px;
}
.front-page__repairment-services-wrapper {
  position: relative;
  background-color: #f0f0f0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.front-page__repairment-services__service__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-page__repairment-services__service__image-container {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
}
.front-page__repairment-services__service__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.front-page__our-shop {
  margin-top: 60px;
}
.front-page__blog {
  margin-top: 60px;
}
.front-page__blog__article {
  text-decoration: none;
}
.front-page__blog__article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-page__blog__article__image-container {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
}
.front-page__blog__article__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.front-page__blog__article__title {
  text-align: center;
}
.front-page__blog__article__title-container {
  margin-top: 10px;
}

.single-repairmentservice__nav-container {
  position: sticky;
  top: 158px;
  padding: 20px;
  background-color: #f0f0f0;
}
.single-repairmentservice__nav__heading {
  text-align: center;
  font-family: "Miama";
  font-weight: 700;
  font-size: 28px;
}
.single-repairmentservice__nav__list {
  padding: 0;
  list-style-type: none;
}
.single-repairmentservice__nav__list-item__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
  margin-bottom: 2px;
  text-decoration: none;
}
.single-repairmentservice__nav__list-item__link:hover {
  background-color: #fefefe;
}
.single-repairmentservice__nav__list-item__link.active {
  background-color: #fafafa;
}
.single-repairmentservice__nav__list-item__link__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-repairmentservice__nav__list-item__link__image-container {
  position: relative;
  width: 48px;
  height: 32px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 5px;
}
.single-repairmentservice__nav__list-item__link__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-repairmentservice__nav__list-item__link__text {
  width: calc(100% - 58px);
}
.single-repairmentservice__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-repairmentservice__image-container {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
}
.single-repairmentservice__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.woocommerce-breadcrumb {
  margin: 0 !important;
  color: black !important;
}
.woocommerce-breadcrumb-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.woocommerce-breadcrumb-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 20px;
  background-color: #f8f1fa;
  border-radius: 15px;
}
.woocommerce-breadcrumb > a {
  color: black !important;
  text-decoration: none;
}
.woocommerce-breadcrumb > a:hover {
  text-decoration: underline;
}
.woocommerce-breadcrumb > i.bi {
  margin: 0 6.6666666667px;
  color: gray;
}
.woocommerce-variation-price {
  margin-bottom: 20px !important;
}
.woocommerce-MyAccount-navigation ul {
  list-style-type: none !important;
  padding: 0 !important;
}
.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 6px !important;
  background-color: #eeeeee;
  border-radius: 5px !important;
  overflow: hidden !important;
}
.woocommerce-MyAccount-navigation ul li a {
  width: 100%;
  height: 100%;
}
.woocommerce-MyAccount-navigation ul li:hover {
  background-color: #dddddd;
}
.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: #383838 !important;
  color: white !important;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: white !important;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
  content: "\f425";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
  content: "\f5ea";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
  content: "\f64c";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
  content: "\f8a7";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
  background-color: #28556D !important;
  color: white !important;
  margin-top: 36px !important;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: white !important;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  content: "\f1c3";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.woocommerce-MyAccount-navigation ul li a {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  text-decoration: none !important;
  color: black !important;
  padding: 0 5px !important;
  height: 36px !important;
  width: 100% !important;
}

.wc-block-components-totals-coupon__button {
  background-color: #5D2972 !important;
  color: white !important;
  border: 0 !important;
  border-radius: 5px !important;
  text-decoration: none;
}
.wc-block-components-button {
  background-color: #5D2972 !important;
  color: white !important;
  border: 0 !important;
  border-radius: 5px !important;
  text-decoration: none;
}
.wc-block-cart__submit-container > a::before {
  content: "\f633";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}

.shop__side__custom-order-wrapper {
  position: sticky;
  top: 128px;
}
.shop__side__product-filters {
  display: none !important;
}
@media (min-width: 768px) {
  .shop__side__product-filters {
    display: block !important;
  }
}
.shop__side__product-filters .irs-handle {
  color: black !important;
  background-color: black !important;
  border-radius: 50% !important;
  height: 12px !important;
  width: 12px !important;
}
.shop__side__product-filters .irs-handle i {
  display: none !important;
  color: black !important;
  border-top-color: black !important;
}
.shop__side__product-filters .irs-bar {
  background-color: black !important;
}
.shop__side__product-filters .irs-from, .shop__side__product-filters .irs-to, .shop__side__product-filters .irs-single {
  background-color: black !important;
}
.shop__side__product-filters .irs-from::before, .shop__side__product-filters .irs-to::before, .shop__side__product-filters .irs-single::before {
  display: none !important;
  border-top-color: black !important;
}
.shop__side__product-filters .irs-min, .shop__side__product-filters .irs-max {
  background-color: #383838 !important;
}
.shop__products {
  display: block !important;
}
.shop__products .row {
  width: 100%;
}
.shop__products__product {
  position: relative !important;
  max-width: 420px !important;
  width: 100%;
  height: 100%;
  min-height: 36px;
}
.shop__products__product__image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}
.shop__products__product__image-container {
  position: relative;
  display: block !important;
  text-decoration: none;
  width: 100%;
  max-width: 420px !important;
  padding-top: 100%;
}
.shop__products__product__image-container:not(.related .shop__products__product__image-container):hover .shop__products__product__to-bag-button {
  display: none !important;
}
@media (min-width: 768px) {
  .shop__products__product__image-container:not(.related .shop__products__product__image-container):hover .shop__products__product__to-bag-button {
    display: inline-flex;
  }
}
.shop__products__product__image-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.shop__products__product__image-pseudo-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.shop__products__product__to-bag-button {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute !important;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) !important;
  height: 45px;
  width: auto;
  padding: 0 24px;
  border-radius: 6.665px !important;
  background-color: white !important;
  color: black;
  z-index: 100;
  box-shadow: none;
  pointer-events: all;
  white-space: nowrap;
  border: 1px solid gray;
  font-size: 2.5vw;
}
@media (min-width: 576px) {
  .shop__products__product__to-bag-button {
    font-size: 1.75vw;
  }
}
@media (min-width: 768px) {
  .shop__products__product__to-bag-button {
    font-size: 1.5vw;
  }
}
@media (min-width: 992px) {
  .shop__products__product__to-bag-button {
    font-size: 1.25vw;
  }
}
@media (min-width: 1200px) {
  .shop__products__product__to-bag-button {
    font-size: 1vw;
  }
}
.shop__products__product__to-bag-button .bi {
  margin-right: 6px;
}
.shop__products__product__info {
  margin-top: 6px;
}
.shop__products__product__info__name {
  font-size: 12px;
  color: #383838;
}
.shop__products__product__info__price-and-sku {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .shop__products__product__info__price-and-sku {
    flex-direction: row;
    align-items: center;
  }
}
.shop__products__product__info__price-and-sku__price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: 500 !important;
  max-width: 100%;
}
@media (min-width: 576px) {
  .shop__products__product__info__price-and-sku__price {
    max-width: 50%;
  }
}
.shop__products__product__info__price-and-sku__price .struck {
  text-decoration: line-through;
  font-weight: 300 !important;
  font-size: 12px;
}
.shop__products__product__info__price-and-sku__price .offer {
  text-decoration: none;
  font-weight: 500 !important;
  font-size: 14px;
  margin-left: 3px;
}
.shop__products__product__info__price-and-sku__sku {
  display: inline-block !important;
  font-size: 14px !important;
  color: #383838 !important;
  font-weight: 300 !important;
  user-select: all;
  max-width: 100%;
}
@media (min-width: 576px) {
  .shop__products__product__info__price-and-sku__sku {
    max-width: 50%;
  }
}
.shop__products__product__info__colors__color {
  display: inline-block;
  height: 18px;
  width: 18px;
  margin: 0 3px 3px 0;
  text-decoration: none;
  color: black;
  border-radius: 50%;
  margin-top: 6px;
  border: 1px solid #383838;
}
.shop__products__product__info__colors__color img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-container {
  width: calc(100% + 20px) !important;
}
@media (min-width: 576px) {
  .shop-product-container {
    width: calc(100% + 42px) !important;
  }
}

.product-page__images,
.product-modal__images {
  position: sticky;
  top: 24px;
  width: 100%;
  max-height: 100vh;
  max-width: calc(75vh - 60px);
  display: block;
  overflow: auto;
}
.product-page__images__thumbnails,
.product-modal__images__thumbnails {
  width: 54px;
  margin-right: 6px;
}
.product-page__images__thumbnails__thumbnail,
.product-modal__images__thumbnails__thumbnail {
  width: 54px;
  height: 72px;
}
.product-page__images__thumbnails__thumbnail-wrapper,
.product-modal__images__thumbnails__thumbnail-wrapper {
  float: left;
  width: 54px;
  height: auto;
  margin-bottom: 6px;
  margin-right: 6px;
  border: 1px solid transparent;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.product-page__images__thumbnails__thumbnail-wrapper.active,
.product-modal__images__thumbnails__thumbnail-wrapper.active {
  border: 1px solid black;
}
.product-page__images__thumbnails__thumbnail-wrapper.active img,
.product-modal__images__thumbnails__thumbnail-wrapper.active img {
  transform: scale(0.9);
}
.product-page__images__main-image,
.product-modal__images__main-image {
  display: none;
  height: 100% !important;
  width: 100% !important;
  object-fit: contain !important;
  object-position: top right;
}
.product-page__images__main-image-container,
.product-modal__images__main-image-container {
  width: calc(100% - 60px);
  height: 100%;
  float: right;
}
.product-page__images__main-image.active,
.product-modal__images__main-image.active {
  display: block;
}

.single-post__top-div {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .single-post__top-div {
    height: 320px;
    margin-bottom: 40px;
  }
}
.single-post__top-div__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 0;
}
.single-post__top-div__background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-post__top-div__title {
  color: white;
  z-index: 1;
  padding: 24px;
  text-align: center;
  font-size: 24px;
}
@media (min-width: 576px) {
  .single-post__top-div__title {
    font-size: 28px;
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .single-post__top-div__title {
    font-size: 32px;
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .single-post__top-div__title {
    font-size: 36px;
  }
}
.single-post__date {
  font-weight: 300;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.single-post__date-container {
  margin-bottom: 20px;
}
.single-post__date .material-symbols-rounded {
  margin-right: 5px;
  margin-bottom: 3px;
}
.single-post__side__heading {
  font-size: 24px;
  margin-bottom: 12px;
}
.single-post__side__related-service {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
.single-post__side__related-service:hover {
  text-decoration: underline;
}
.single-post__side__related-service__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.single-post__side__related-service__image-container {
  width: 15%;
  margin-right: 20px;
}
.single-post__side__related-service__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 67%;
}
.single-post__side__related-service__image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-post__side__related-service__title {
  width: calc(85% - 20px);
  font-weight: 500;
}

.product .price {
  color: #28556D !important;
}
.product .single_add_to_cart_button {
  background-color: #28556D !important;
  margin-left: 10px !important;
}
.product .single_add_to_cart_button::before {
  content: "\f23f";
  font-family: "bootstrap-icons";
  margin-right: 5px;
  text-decoration: none !important;
}

.checkout-button {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: #28556D !important;
  border-radius: 5px !important;
}
.checkout-button::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  text-decoration: none !important;
  line-height: 0.5 !important;
  font-size: 24px !important;
  margin: 0 !important;
  margin-right: -24px !important;
  opacity: 0 !important;
  transition: 300ms !important;
}
.checkout-button:hover::before {
  opacity: 1 !important;
  margin-right: 5px !important;
  transform: scale(1.2) !important;
}

.page-custom-order__title-and-content {
  position: sticky;
  top: 128px;
}
.page-custom-order__gallery-wrapper {
  margin-top: 64px;
}
.page-custom-order__gallery__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-custom-order__gallery__photo-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.page-custom-order__gallery__photo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-side-nav__menu {
  position: sticky;
  top: 108px;
  background-color: #ebdbf2;
  padding: 12px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .page-side-nav__menu {
    top: 128px;
  }
}
.page-side-nav__menu > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.page-side-nav__menu > ul > li:not(:last-child) {
  margin-bottom: 6px;
}
.page-side-nav__menu > ul > li.current_page_item > a {
  background-color: #d7b5e5 !important;
}
.page-side-nav__menu > ul > li > a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: black;
  font-size: 12px;
  padding: 12px;
  border-radius: 5px;
  background-color: #f8f1fa;
}
.page-side-nav__menu > ul > li > a.active {
  background-color: #5D2972;
  color: white;
}
@media (min-width: 1200px) {
  .page-side-nav__menu > ul > li > a {
    font-size: 14px;
  }
}
.page-side-nav__menu > ul > li > a:hover {
  background-color: #d7b5e5;
  color: black;
}
.page-side-nav__menu > ul > li > a:hover.active {
  background-color: #5D2972;
  color: white;
}
.page-side-nav__menu > ul > li > a::before {
  content: none;
  display: none !important;
}
.page-side-nav__image {
  max-height: 360px;
  max-width: 100%;
}
.page-side-nav__image-container {
  margin-bottom: 30px;
}
.page__heading {
  margin: 30px auto;
}

.my-account-page__greeting {
  font-size: 24px;
}
.my-account-page__greeting-logout-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  background-color: #28556D;
  color: white;
  text-decoration: none;
  padding: 0 5px;
  border-radius: 5px;
  height: 36px;
}
.my-account-page__greeting-logout-button:hover {
  color: white;
}
.my-account-page__greeting-logout-button::before {
  content: "\f1c3";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.my-account-page__subpage-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid gray;
  color: black;
  text-decoration: none;
  height: 100%;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 0) {
  .my-account-page__subpage-link {
    font-size: 2.777vw;
  }
}
.my-account-page__subpage-link:hover {
  background-color: #28556D;
  color: white;
}
.my-account-page__subpage-link .bi {
  font-size: 36px;
}
@media (max-width: 0) {
  .my-account-page__subpage-link .bi {
    font-size: 6.25vw;
  }
}

.site-footer {
  background-color: #f8f1fa;
  margin-top: 60px !important;
  padding: 20px 0;
}
.site-footer__logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}
.site-footer__logo-wrapper {
  height: 64px;
  width: 90%;
  text-decoration: none;
  color: black;
}
.site-footer__logo-wrapper svg,
.site-footer__logo-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.site-footer__developer {
  text-align: center;
}
.site-footer__developer__developed-by {
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
}
.site-footer__developer__gaw {
  position: relative;
  display: inline-block;
  margin-left: 32px;
  margin-bottom: 30px;
  color: black;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  transition: 0.5s;
  transform: scale(1);
}
.site-footer__developer__gaw-wrapper {
  margin: 0;
  text-align: center;
}
.site-footer__developer__gaw::before {
  position: absolute;
  content: "";
  height: 32px;
  width: 32px;
  left: -32px;
  top: calc(50% + 2px);
  z-index: 1;
  transform: translateY(-50%);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/wp-content/themes/marelejewels/inc/gawlogo.png);
}
.site-footer__developer__gaw:hover {
  transform: scale(1.1);
  color: black;
}
.site-footer__title {
  margin-bottom: 20px;
}
.site-footer__heading {
  position: relative;
  margin-bottom: 20px;
}
.site-footer__link-list {
  padding: 0;
  padding-left: 20px;
  list-style-type: none;
}
.site-footer__link-list li {
  position: relative;
  margin-bottom: 10px;
  text-decoration: none;
}
.site-footer__link-list li a {
  text-decoration: none;
}
.site-footer__link-list li::before {
  position: absolute;
  left: -20px;
  top: 0;
  content: "\f470";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 5px;
  transition: 0.2s !important;
}

.google-map__iframe-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
}
.google-map__iframe-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.google-map__iframe-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
}

.wp-block-jetpack-contact-form-container .form-error {
  border: 1px solid red;
  padding: 20px;
  margin-top: 20px;
}
.wp-block-jetpack-contact-form-container form {
  padding: 0;
  margin-top: 20px;
}
.wp-block-jetpack-contact-form-container form a {
  color: #5D2972;
}
.wp-block-jetpack-contact-form-container form a:hover {
  color: #28556D;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div {
    flex-direction: row;
  }
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div > *:first-child {
  width: 100%;
  margin-right: 10px;
}
@media (min-width: 576px) {
  .wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div > *:first-child {
    width: 30%;
  }
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div > *:first-child.contact-form__checkbox-wrap {
  width: 100%;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div > *:not(:first-child) {
  flex-grow: 1;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div label {
  color: black;
  font-weight: 500;
  font-size: 16px;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div label > span {
  display: none;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div label::after {
  content: " *";
  color: #5D2972;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset {
  display: block;
  width: 100% !important;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset legend {
  float: left;
  color: black;
  font-weight: 500;
  width: 100%;
  margin-right: 10px;
  font-size: 16px;
}
@media (min-width: 576px) {
  .wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset legend {
    width: 30%;
  }
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset legend > span {
  display: none;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset legend::after {
  content: " *";
  color: #5D2972;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset p.contact-form-field {
  float: right;
  clear: right;
  width: 100%;
}
@media (min-width: 576px) {
  .wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset p.contact-form-field {
    width: calc(70% - 10px);
  }
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset p.contact-form-field label::after {
  content: "" !important;
  color: #5D2972;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset p.contact-form-field label span {
  display: inline-block !important;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset p.contact-form-field::after {
  content: "" !important;
  color: #5D2972;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div fieldset p.contact-form-field input {
  accent-color: #5D2972;
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div input {
  padding: 3.5px 10px;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div input:focus {
  outline: 1px solid #5D2972;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div textarea {
  max-height: 96px;
  padding: 3.5px 10px;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form div textarea:focus {
  outline: 1px solid #5D2972;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form button {
  background-color: #5D2972;
  color: white;
  font-weight: 700;
  border-radius: 5px !important;
  padding: 7px 20px;
  width: auto !important;
  margin-left: auto;
  transition: 300ms;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form button:before {
  content: "\f6c0";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 10px;
  transform: translate(-3px, 3px);
  transition: 300ms;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form button:hover {
  background-color: #7f389b;
}
.wp-block-jetpack-contact-form-container form .wp-block-jetpack-contact-form button:hover:before {
  transform: translate(-3px, 3px) rotate(45deg);
}