/** Shopify CDN: Minification failed

Line 8:7 Expected ":"

**/
.custom-footer {
  background: var(--color_primary_darker); 
  color #FFFDF9;
  padding: 60px 0px 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;

}
.footer-columnDiv{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
  .footer-columnDiv {
    gap: 50px;
    grid-template-columns: repeat(3,1fr);
  }
}

.footer-column h4 {
  font-family: var(--font_secondary);
  font-size: 12px;
  color: var(--color_beige_dark);
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  font-family: var(--font_secondary);
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #FFFDF9;
  font-size: 14px;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-newsletter form {
  display: flex;
  margin-bottom: 10px;
}

.NewsLetter-Title{
  color: var(--color_beige_dark);
  font-family: var(--font_secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.MembershipTitle{
  color: var(--color_beige_lighter);
  font-family: var(--font_secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  margin-top: 10px;
}

.footer-newsletter button {
  background: #8b3a8b;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}
.footer-block__newsletter .field,
.footer-block__newsletter .field::before,
.footer-block__newsletter .field::after{
  border-radius: 8px;
  box-shadow: none;
  
}

.footer-block__newsletter .field:hover.field:after{
  box-shadow: none;
}

.footer-block__newsletter .field__input:focus{
  box-shadow: none;
}

.footer-block__newsletter .field__label{
  overflow: hidden;
  color: var(--color_beige_lighter);
  font-family: var(--font_secondary);
  font-size:  14px;
  font-style: normal;
  font-weight: 400;
}

.footer-block__newsletter .field__input{
  background: var(--color_primary_default);
  border-radius: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links{
  text-align: right;
  margin-bottom: 20px;
  color: #FFFDF9;
}

.footer-links a {
  color: #FFFDF9;
  margin: 0 5px;
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social a {
  margin: 0 5px;
  color: #FFFDF9;
  font-size: 18px;
}


.footer-left {
  flex: 1;
}

.footer-left p{
  color:#FFFDF9;
  font-family: var(--font_secondary);
  font-size:  12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
}

.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #FFFDF9;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer_mobile .NewsLetterDiv{
  border-bottom: 1px solid #FFF7ED20;
  padding-bottom: 40px;
}

.footer_mobile .footer-container{
  padding-top: 40px;
  padding-bottom: 40px;
  grid-template-columns: repeat(2,1fr);
}
.footer_mobile .footer-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: unset;

}
.footer_mobile .footer-links a {
  color: var(--color_beige_lighter);
  font-family: var(--font_secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 247, 237, 0.20);
}

.footer_mobile .footer-links a:first-child{
  border-top: 1px solid rgba(255, 247, 237, 0.20);
}

.footer_mobile .footer-bottom{
  display: flex;
  flex-direction: column;
  border-top: none;
}


@media screen and (max-width: 767px){
  .footer_desktop{
    display: none;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 768px){
  .footer_mobile{
    display: none ;
  }
}