/**
 * =========================================================
 * REUSABLE ELEMENTS
 * =========================================================
 * Contains:
 * - Global Accordion
 * - Global Popup
 *
 * =========================================================
 */
 
/* =========================================================
 * Global Accordion
 * ========================================================= */ 
 
/* Accordion Functinality */
.accordion-expand {
	cursor: pointer;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
}
.accordion-expand-active {
	opacity: 1;
}

/* Accordion Style 2 */
.accordion-style2 .accordion-trigger {
	cursor: pointer;
	font-weight: bold;
	font-size: 1em;
	background: #f0f0f0;
	padding: 10px 15px;
	margin: 5px 0 0 0;
	text-align: left;
}
.accordion-style2 .accordion-trigger::after {
	cursor: pointer;
	color: #4c4c4c;
	content: "\e812";
	font-family: "fontello";
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	float: right;
	margin-left: 10px;
}
.accordion-style2 .accordion-trigger-active::after {
	content: "\e811";
}

.accordion-style2 .accordion-expand-active {
	margin-bottom: 40px;
}
.accordion-style2 .accordion-expand-active .accordion-expand-inner {
	padding: 10px 15px;
}

/* =========================================================
 * Global Popup
 * ========================================================= */ 
 
 /* The Modal (background) */
.pci-popup-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.5);
	z-index: 4000;
}

/* Modal Content */
.pci-popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    max-width: 90%;
	position: relative;
	z-index: 5000;
}

/* The Close Button */
.pci-popup-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
	position: absolute;
	top: 5px;
	right: 10px;
	line-height: 1;
	cursor: pointer;
}

.pci-popup-close:hover,
.pci-popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*-------------- Reusable classes --------------*/
/* Popup Heading */
.pci-popup-heading {
	margin-bottom: 20px;
}
.pci-popup-heading .pci-popup-title {
	font-size: 1.2em;
	font-weight: bold;
	padding: 0;
	margin: 0;
}
.pci-popup-heading .pci-popup-desc {
	padding: 0;
	margin: 5px 0 0 0;
}

/* Popup Heading 2 */
.pci-popup-heading2 {
	padding: 10px;
	background: #f0f0f0;
	margin-bottom: 10px;
}
.pci-popup-heading2 .pci-popup-title {
	color: #070f5b;
	font-size: 1.2em;
	font-weight: bold;
	padding: 0;
	margin: 0;
}
.pci-popup-heading2 .pci-popup-desc {
	color: #6c6b6b;
	padding: 0;
	margin: 0;
}


/* Popup Form */
.pci-popup-form label {
	display: block !important;
	width: 100% !important;
	font-weight: bold !important;
	margin: 0 0 5px 0 !important;
	padding: 0 !important
}
.pci-popup-form .wpforms-field {
	padding: 0 !important;
	margin: 15px 0 !important;
}
.pci-popup-form .wpforms-field input {
	background: #fafafa !important;
	border: 1px solid #a8b6bf !important;
	width: 100% !important;
	padding: 7px 10px !important;
	max-width: 300px !important;
	border-radius: 0 !important;
}

.pci-popup-form .wpforms-field textarea {
	background: #fafafa !important;
	border: 1px solid #a8b6bf !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 7px 10px !important;
	border-radius: 0 !important;
}
.pci-popup-form .wpforms-submit {
	background: #080f5b !important;
	color: #ffffff !important;
	border-radius: 0 !important;
	text-transform: uppercase !important;
	padding: 10px 20px !important;
	font-weight: bold !important;
}