/* assets/css/wrs-modal.css */
.wrs-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
	justify-content: center;
	align-items: center;
}
.wrs-modal.active {
	display:flex;
}
.wrs-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
	text-align:center;
}
.wrs-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    float: right;
}
.wrs-close:hover,
.wrs-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.wrs-delivery-option {
	background-color:#eee;
	padding:20px;
	border-radius:20px;
	margin:20px;
}
.wrs-modal .wrs-modal-content #postcode-check-result {
	background-color:#fff;
}
.wrs-modal .wrs-modal-content #postcode-check-result .wrs-delivery-option {
	background-color:#eee;
	padding:20px;
	border-radius:20px;
}
/*Installation Modal*/
.installationModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.installationModalContainer {
    background: #fff;
    padding: 20px;
    width: 50%;
    margin: 10% auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	text-align:center;
	max-width:500px;
}
.installationModalContainer .heading {
	font-size:24px;
	margin-bottom:20px;
}
.installationModalContainer p {}
.installationModalContainer .installationOptions {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	background-color:#eee;
	padding:40px;
	border-radius:15px;
	margin-bottom:20px;
}
.installationModalContainer .installationOptions .quantity-wrapper {
	max-width:80px;
}
.installationModalContainer label {
    display: block;
    margin-bottom: 10px;
	text-align:left;
}
#add-to-cart-button,
.installationButton {
    display: inline-block;
    margin-top: 0px;
	background-color:var(--primary-colour, #672657);
	border-bottom:4px solid var(--secondary-colour, #a4a288);
	padding:10px 25px;
	border-radius:8px;
	color:#fff;
	font-weight:bold;
	text-align:center;
	line-height:inherit;
	cursor:pointer;
	float:inherit;
}
#add-to-cart-button.added {}
#add-to-cart-button.loading {
	padding:10px 40px 10px 30px;
}
.closeModal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
}
