:root {
    /* --btr-color-1: #e5152b; */
    --btr-color-1: #6fb7a9;
    --btr-color-2: #90ab26;
    --btr-color-3: #989c7e;
}


.btr_popup_wrapper {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw !important;
    height: 100%;
    max-height: 100vh;
    background-color: rgba(0, 0, 120, .3);
    overflow-y: auto;
    z-index: 2000000001;
}

.btr_popup_wrapper .btr_popup_box {
    position: relative;
    align-self: center;
    width: max-content;
    max-width: 1080px;
    margin: 40px 20px 20px;
}

/* --- Poup close button -- */
.btr_popup_box .popup_close {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: white;
    right: -1.6rem;
    top: -1.6rem;
    box-shadow: 0px 0px 10px #00000029;
    transition: all .5s;
    cursor: pointer;
}
.btr_popup_box .popup_close:before {
    position: absolute;
    top: 46%;
    left: 50%;
	font-family: monospace, monospace;
    content: "\00d7";
    font-weight: 700;
    font-size: 2rem;
	line-height:1;
    color: var(--btr-color-1);
	transform: translate(-50%,-50%);
}
.btr_popup_box .popup_close:hover {
    transform: scale(.9);
}

#popup_booking_canvas {
    display: none;
}


.btr_popup_button {
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid #ED1C24;
    color: #ED1C24;
    text-transform: uppercase;
	font-family: "Unica One", Sans-serif;
	font-size: 20px;
	font-weight: 500;
	padding: 2% 4% 2% 4%;
	display: inline-block;
	line-height: 1;
	transition: all 0.3s ease;
}

.btr_popup_button--featured {
    font-family: "Advent Pro";
    background-color: #ED1C24;
    color: #ffffff;
    font-size: 30px;
    padding: 0 40px;
    line-height: 70px!important;
    text-transform: none!important;
    transform: translateY(50px);
}

.btr_popup_button:hover {
    background-color: #ED1C24;
    color: #000;
}


#popup_cancel_canvas {
    display: grid;
}

#popup_cancel_booking {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 6px;
    background-color: white;
    padding: 1rem;
}

#popup_cancel_booking .btr_popup_wrapper .btr_popup_box {
    position: relative;
    align-self: center;
    max-width: 1080px;
    margin: 20px;
}

#popup_approval_canvas {
    display: grid;
}

#popup_approval_booking {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 6px;
    background-color: white;
    padding: 1rem;
}

#popup_approval_booking .btr_popup_wrapper .btr_popup_box {
    position: relative;
    align-self: center;
    max-width: 1080px;
    margin: 20px;
}


/* =========== RESPONSIVE ================= */
@media only screen and (max-width: 768px) {
	.btr_popup_wrapper {
		padding: 30px 0;
	}
    .btr_popup_wrapper .btr_popup_box {
        max-width: 100vw;
        margin: 0px;
    }
    .btr_popup_box .popup_close {
        left: .6rem;
    }
}
