	/* Custom jQuery Plugin Styles */
body {
    /* Example: background-color: #fafafa; */
}
/* Prevent page scroll when popup is open */
body.popup-open {
    overflow: hidden;
}

/* ===============================
   Popup Overlay
================================= */
.elementor-element-ee1615d.popup-overlay,
.elementor-element-30e0cf5.popup-overlay {
	display: none;
	transition: all .3s ease;

}

/* Open State */
.popup-overlay.active {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    opacity: 1;
    visibility: visible;
}

/* ===============================
   Popup Box
================================= */
.popup-overlay .popup-content {
    position: relative;

    width: 100%;
    max-width: 670px;

    max-height: 90vh;

    overflow-y: auto;

    background: #ffffff;

    border: 2px solid #1f2937;

    box-shadow: 14px 14px 0 #f6c400;

    padding: 1rem;

    transform: translateY(-30px);

    transition: all .3s ease;
}

/* Animate Popup */
.popup-overlay.active .popup-content {
    transform: translateY(0);
	margin: 0 auto;
	padding: 1rem;
}

/* ===============================
   Close Button
================================= */
.popup-overlay .elementor-widget-text-editor.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;

    color: #444;

    cursor: pointer;

	z-index: 99;
/*     transition: .3s; */
}

.popup-overlay .elementor-widget-text-editor.popup-close:hover {
    color: #000;
/*     transform: rotate(90deg); */
}

.popup-overlay .popup-content .head-block-content h2.elementor-heading-title {
    color: #e85d24;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
}
.popup-overlay .popup-content .head-block-content  h3.elementor-heading-title {
		font-size: 1.875rem;
		line-height: 2.25rem;
		font-family: Chivo, sans-serif;
    letter-spacing: -.02em;
	text-transform: uppercase;
	}
.popup-overlay .popup-content .head-block-content .elementor-widget-text-editor p {
    font-size: .875rem;
    line-height: 1.25rem;
	margin:0.5rem 0 0;
}
.elementor-element.elementor-element-839f874.elementor-widget.elementor-widget-shortcode {
    padding: 0 1.5rem 1rem;
}
.elementor-element.elementor-element-d83019d.e-con-full.head-block-content.e-flex.e-con.e-child {
    padding: 1rem 1.5rem;
	border-bottom: 1px solid rgb(226, 232, 240);
}


/* ===============================
   Contact Form 7
================================= */

.popup-content .wpcf7 {
    margin-top: 20px;
}
.cf7-field p {
    margin: 0;
}

.popup-content input,
.popup-content textarea,
.popup-content select {

    width: 100%;

    border: 0.8px solid rgb(226, 232, 240);

    padding: 4px 12px;
    font-size: .875rem;
   line-height: 1.25rem;

    border-radius: 0;

    transition: .3s;
}

.popup-content textarea {
    min-height: 120px;
    resize: vertical;
}

.popup-content input:focus,
.popup-content textarea:focus,
.popup-content select:focus {

    outline: none;

    border-color: #000;
}

/* Submit Button */

.popup-content input[type="submit"] {

    background: #f6c400;

    color: #111;

    border: none;

    padding: 14px 35px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;
}

.popup-content input[type="submit"]:hover {

    background: #e0b000;

}

/* ===============================
   Scrollbar
================================= */

.popup-content::-webkit-scrollbar {

    width: 6px;

}

.popup-content::-webkit-scrollbar-thumb {

    background: #bbb;

}

/* ===============================
   Mobile
================================= */

@media (max-width:768px) {

    .popup-overlay {
        padding: 20px;
    }

    .popup-content {

        padding: 25px;

        box-shadow: 8px 8px 0 #f6c400;

        max-height: 85vh;
    }

}