/*
Theme Name:           Flatsome
Theme URI:            http://flatsome.uxthemes.com
Author:               UX-Themes
Author URI:           https://uxthemes.com
Description:          Multi-Purpose Responsive WooCommerce Theme
Version:              3.19.11
Requires at least:    6.4
Requires PHP:         7.4
WC requires at least: 8.3
Text Domain:          flatsome
License:              https://themeforest.net/licenses
License URI:          https://themeforest.net/licenses
*/


/***************
All custom CSS should be added to Flatsome > Advanced > Custom CSS,
or in the style.css of a Child Theme.
***************/

.clear_space_bottom .col {
	padding-bottom: 0;
}

.air-datepicker .custom-button-today {
	margin: 0 !important;
}

.wpcf7 .select-date-time p {
	display: flex;
    justify-content: space-between;
}

.wpcf7 .select-date-time p select {
	width: 140px;
}

.welcome-text h2 {
    color: transparent;
    background: linear-gradient(90deg, #A3D39C, #73a258, #ffff);
    background-size: 300% 100%;
    -webkit-background-clip: text; 
    background-clip: text; 
    animation: flick 8s infinite, moveText 5s ease-out forwards; 
}

@keyframes moveText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes flick {
    0% {
        background-position: 300% 0;
    }
    50% {
        background-position: 0 0; 
    }
    100% {
        background-position: 300% 0;
    }
}
.btn-online-booking {
	transition: transform 0.5s ease-in-out;
    animation: scaleButton 3s infinite alternate;
}

.btn-online-booking:hover {
    transform: scale(1.1);
}

@keyframes scaleButton {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}