/*
 Theme Name:   AIHub Child
 Theme URI:    https://smartallocations.com/
 Description:  Child theme for AIHub theme
 Author:       AIHub
 Author URI:   https://yourwebsite.com
 Template:     aihub
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  aihub-child
*/

/* Add custom CSS below this line */
html {
    scroll-behavior: auto !important;
}

/* Scroll Bar Style */

/* width */
*::-webkit-scrollbar {
	width: 4px;
}

/* Track */
*::-webkit-scrollbar-track {
	background: transparent;
}

/* Handle */
*::-webkit-scrollbar-thumb {
	background: rgba(136, 136, 136, 0.5);
	border-radius: 5px;
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
	background: rgba(85, 85, 85, 0.9);
}

/* End of Scroll Bar Style */

.grecaptcha-badge {
    opacity: 0;
    visibility: hidden;
}

.backdrop {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(46, 47, 66, 0.40);
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-guard {
	display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    background: #FCFCFC;
    z-index: 9999;
    padding: 74px 40px 40px;
    max-width: 1140px;
    width: 90%;
    max-height: 80vh;
    overflow-x: hidden;
    overflow-y: auto;
	font-family: "Jost", sans-serif;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #e7e9fc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    cursor: pointer;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), border 250ms cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 20px;
    color: #a6a8af;
}

.modal-title {
    color: #2E2F42;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-top: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
	font-family: "Jost", sans-serif;
}

.modal-subtitle {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-size: 19px;
	font-family: "Jost", sans-serif;
}

.form-side label {
	position: relative;
}

.form-side .wpcf7-spinner {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form-side input, .form-side select,
.elementor-widget-shortcode .form-side input, elementor-widget-shortcode .form-side select {
    width: 100%;
    height: 62px !important;
}

.elementor-widget-shortcode .wpcf7 select:not([size]):not([multiple]),
.elementor-widget-shortcode select.form-control:not([size]):not([multiple]) {
    height: 62px !important;
}

input, select, input::placeholder, select::placeholder, option {
    font-family: "Jost", sans-serif !important;
	font-size: 18px !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.7em !important;
    text-transform: none;
    position: absolute;
    top: 0;
    left: 10px;
}

.form-wrap {
    display: flex;
    gap: 40px;
}

.form-side {
    width: calc((100% - 20px) / 2);
}

.btn-outline-primary, .wpcf7 input[type=submit] {
    color: #7DB1FF !important;
    border-color: #7DB1FF !important;
}

.btn-outline-primary:hover, .wpcf7 input[type=submit]:hover, .btn-outline-primary:active, .wpcf7 input[type=submit]:active {
    color: #fff !important;
    background-color: #7DB1FF !important;
    border-color: #7DB1FF !important;
}

.modal-divider {
	display: block;
	width: 90px;
	height: 2px;
	margin: 20px auto 40px;
	background: #7DB1FF;
}

@media screen and (max-width: 768px) {
    .form-wrap {
        flex-direction: column;
    }
    
    .form-side {
        width: 100%;
    }
}





