/** Shopify CDN: Minification failed

Line 240:1 Expected "}" to go with "{"

**/
.email-popup-modal-content {
    box-sizing: border-box;
    position: fixed;
    z-index: -1;
    display: none;
}

.email-popup-modal-content.email-popup-position-center {
    margin: 0 auto;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(124, 129, 139,.5);
    height: 100%;
    align-items: center;
    width: 100%;
    overflow: auto;
} 

@media only screen and (max-width: 749px){
  .email-popup-modal-content:not(.email-popup-position-center) {
    left: 0;
    bottom: 0;
    right: 0;
  }
  .email-popup-position-center .email-popup-wrapper {
    max-width: calc(100% - 50px);
  }

  .email-popup-modal-content:not(.email-popup-position-center) .email-popup-wrapper {
    max-width: calc(100% - 16px);
  }
  
  .email-popup-wrapper {
    max-height: calc(100vh - 16px);
    overflow: auto;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
  }

@media only screen and (min-width: 750px){
  .email-popup-modal-content.email-popup-position-right {
    right: 3rem;
    bottom: 30px;
  }
  .email-popup-modal-content.email-popup-position-left {
    left: 3rem;
    bottom: 30px;
  }
}
.email-popup-wrapper {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    background-color: #fff;
    overflow: auto;
    max-height: 60rem;
    width: 100%;
    z-index: 9;
}
.email-popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 8;
    cursor: crosshair;
}
.email-popup-modal-content.popup-open {
    opacity: 1;
    visibility: visible;
    z-index: 101;
    display: flex;
    animation: fade-in var(--duration-long) ease;
}
.email-popup-modal-content.popup-closing {
    animation: fade-out var(--duration-long) ease;
}
.email-popup-toggle .icon {
    height: auto;
    margin: 0;
    width: 1.6rem;
}
button.email-popup-toggle {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: #fff;
    border: none;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 9;
    box-shadow: 0 0 1.5rem rgba(124, 129, 139,.15);
    transition: var(--duration-long);
}

.email-popup-field-wrapper .button {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 15px 41px;
}

.email-popup-field-wrapper .button:hover {
  color: #fff;
  background: rgba(var(--color-base-accent-2));
}

button.email-popup-toggle:hover {
  color: #fff;
  background: rgba(var(--color-base-accent-1));
}
button.email-popup-hide {
    background: none;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: #08091B;
}
button.email-popup-hide:hover {
  color: rgba(var(--color-base-accent-1));
}

.email-popup-meida-active .email-popup-wrapper-inner {
    display: flex;
    position: relative;
}


.email-popup-medium {
  max-width: 54rem;
}


.email-popup-meida-active .email-popup-content {
    padding-top: 30px;
    padding-bottom: 30px;
    flex-grow: 1;
}

.email-popup-media-position-top .email-popup-content {
    padding-left: 30px;
    padding-right: 30px;
}
.email-popup-content{
	z-index: 8;
}

.email-popup-content {
    color: rgba(124, 129, 139,.75);
}

.email-popup-position-center .email-popup-wrapper {
    margin: 0 auto;
    
}
.email-popup-wrapper {
  max-width: 54rem;
}
@media only screen and (max-width: 749px){
  
  .email-popup-wrapper {
    margin: 0 auto;
  }
}

.email-popup-modal-content:not(.email-popup-position-center) {
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.2);
    border-radius: 30px;
}
.email-popup-content>*+*, .email-popup-form > * + * {
    margin-top: 1.5rem;
}
.email-popup-content > *:first-child {
    margin-bottom: 0;
}
.description.rte {
    color: rgba(124, 129, 139, 0.7);
}

.email-popup-field-wrapper .input-field-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}

.heading-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #08091B;
}

.description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #7C818B;
}
@media only screen and (max-width: 600px){
  .email-popup-form .input-field-form {
    flex-direction: column;
  }
  .email-popup-form .input-field-form:not(.email-button-full)  .button {
    width: 100%;
  }
}
@keyframes popup-open {
  0% {
    transform: translateY(50px);
  }
  to {
    transform:  translateY(0);
  }
}
.popup-open .email-popup-wrapper {
  animation: popup-open var(--duration-long) ease;
}

.newsletter-form-message-success {
  font-size: 16px;
}

.hide-content {
  display: none !important;
}