@import './style/swiper.css';
@import './style/map.css';
@import './style/reset.css';
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Add x-cloak styles */

[x-cloak] {
    display: none !important;
}


/* Your other custom styles... */

@layer base {
    html {
        font-family: 'Cairo', sans-serif;
    }
}

.iti__country-list {
    left: -10% !important;
}


/* // loader  */

#page-content {
    display: none;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #ddd;
    border-bottom-color: #666;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-hidden {
    display: none;
}


/* tabby card */

#tabbyCard>* {
    max-width: 100%;
    padding: 1rem;
    width: 100%;
    display: inline-block;
}