/*
Theme Name:   Twenty Twenty-Two Child Theme
Theme URI:    https://bruma.frozenfishdev.com/
Description:  A Twenty Twenty-Two child theme 
Author:       FFD
Author URI:   https://bruma.frozenfishdev.com
Template:     twentytwentytwo
Version:      1.0.0
Text Domain:  twentytwentytwochild
*/

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.d-none {
	display: none !important;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.cb_loading {
	position: relative;
}
.cb_loading:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	position: fixed;
	background-color: rgba(51, 51, 51, 0.5);
}
.cb_loading:after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 40px;
	height: 40px;
	content: '';
	margin: auto;
	position: fixed;
	border-radius: 50%;
	border: 2px solid #CCC;
	border-left-color: transparent;
	border-right-color: transparent;
	animation: spin .5s linear infinite;
}
.form_wrapper {
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 80px;
}
.form_wrapper, .form_wrapper * {
	box-sizing: border-box;
}
.form_wrapper .form-logo {
    margin: 0;
    margin-top: 20px;
    text-align: center;
}
.form_wrapper .form-logo img {
	max-width: 240px;
}
.form-row {
	margin-bottom: 12px;
}
.form-row .form_field {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #999;
}
.form-row textarea.form_field{
	min-height: 230px;
}
.option_radio {
	padding: 4px 0;
	position: relative;
}
.option_radio [type="radio"] {
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.option_radio label {
	padding-left: 30px;
	position: relative;
}
.option_radio label:before,
.option_radio label:after {
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
    margin: auto;
    width: 18px;
    height: 18px;
    position: absolute;
    border-radius: 15px;
    border: 2px solid #777;
    transition: all ease-in-out .100s;
}
.option_radio label:after {
	left: 5px;
    opacity: 0;
    width: 12px;
    height: 12px;
    border: none;
    background: #00b1d3;
}
.option_radio input:checked+label:before {
    border-color: #00b1d3;
}
.option_radio input:checked+label:after {
	opacity: 1;
}
.adult_row {
    margin: 20px 0;
    margin-bottom: 30px;
}
.adult_row h4 {
    margin: 0;
    font-size: 22px;
}
span.validation_msg:empty {
	display: none;
}
span.validation_msg {
	color: #F00;
    font-size: 85%;
}
.btn_submit {
	border: none;
    color: #FFF;
	cursor: pointer;
	font-size: 16px;
    padding: 12px 30px;
    border-radius: 3px;
    background: #00b1d3;
	text-transform: uppercase;
	transition: all ease-in-out .2s;
}
.btn_submit:hover {
    background: #0096b4;
}
.btn_loading {
	opacity: 0.5;
	position: relative;
	pointer-events: none;
	background-color: #666;
}
.btn_loading:after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 30px;
	height: 30px;
	content: '';
	margin: auto;
	border-radius: 50%;
	position: absolute;
	border: 2px solid #CCC;
	border-left-color: transparent;
	border-right-color: transparent;
	animation: spin .5s linear infinite;
}
/* Popup css */
.success_popup {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.8);
}
.success_popup.show {
    display: flex !important;
}
.success_popup .success_popup_box {
    width: auto;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    overflow: visible;
    position: absolute;
    background-color: #fff;
    box-shadow: 2px 8px 23px 3px rgba(0,0,0,.2);
}
.success_popup .success_popup_box .ffd-close-popup {
    top: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
    display: flex;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    align-items: center;
    justify-content: center;
}
.success_popup .success_popup_box .success_popup_content {
    width: 100%;
    display: flex;
    overflow: auto;
    min-height: 50px;
    max-width: 100vw;
    max-height: 100vh;
    padding: 4rem 5.5rem;
    box-sizing: border-box;
    background: #f4f2f1;
    align-items: center;
    justify-content: center;
}
.popup_content_wrapper {
    text-align: center;
    max-width: 500px;
}
.popup_content_wrapper h3 {
    margin: 1rem 0;
}
.popup_content_wrapper p {
    font-size: 1.2rem
}