/*!
Theme Name: Airpedic Theme
Theme URI: http://underscores.me/
Author: Airpedic Team
Author URI: http://underscores.me/
Description: Best responsive layout theme referenced by underscores.me .
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: airpedic
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Airpedic Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@font-face {
    font-family: 'Mont';
    src: url('assets/fonts/mont-regular.woff') format('woff'),
        url('assets/fonts/mont-regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Mont Book';
    src: url('assets/fonts/mont-book.woff') format('woff'),
        url('assets/fonts/mont-book.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Mont';
    src: url('assets/fonts/mont-semibold.woff') format('woff'),
        url('assets/fonts/mont-semibold.woff2') format('woff2');
    font-weight: 600;
}
@font-face {
    font-family: 'Mont';
    src: url('assets/fonts/mont-bold.woff') format('woff'),
        url('assets/fonts/mont-bold.woff2') format('woff2');
    font-weight: 700;
}
.clear{
    clear: both;
}

.sitePreloaderBoxWrap {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 999;
}
.sitePreloaderBoxWrap.hide {
    animation: popupFadeOut 0.75s;
    display: none;
}
.sitePreloaderBoxWrap .logo-box svg {
    width: 420px;
    height: auto;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots {
    animation: dotWave 1.5s infinite alternate;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(1) {
    animation-delay: 0.1s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(2) {
    animation-delay: 0.2s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(3) {
    animation-delay: 0.3s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(4) {
    animation-delay: 0.4s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(5) {
    animation-delay: 0.5s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(6) {
    animation-delay: 0.6s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(7) {
    animation-delay: 0.7s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(8) {
    animation-delay: 0.8s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(9) {
    animation-delay: 0.9s;
}
.sitePreloaderBoxWrap .logo-box svg .waveAnimDots:nth-child(10) {
    animation-delay: 1s;
}

.woocommerce div.product div.summary .variations_form .thwvsf-wrapper-ul li.thwvsf-wrapper-item-li.thwvsf-selected:after,
.woocommerce div.product div.summary .wpf_prduct_addons label .wpf_image_border:after {
    background-image: url(assets/images/check-icon-circle.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    content: "";
}
.adjustable-beds-features-sec.single_blog_slider .card-box img{
	height:auto;
}
@media(max-width: 640px) {
    .sitePreloaderBoxWrap .logo-box svg {
        width: 280px;
    }
}

@keyframes popupFadeOut {
    0% {
        display: flex;
        opacity: 1;
    }
    100% {
        display: none;
        opacity: 0;
    }
}
@keyframes dotWave {
    0% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(0px, -6px); 
    }
    100% {
        transform: translate(0px, 0);
    }
}




