/* THEME */

@media (max-width: 991.98px) {
    .app-container {
        max-width: none;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}


#kt_app_wrapper {
    transition: all .3s linear;
}

.modal {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* THEME */


/* SLIDERS */
[class^="number-slide"],
[class*=" number-slide"] {
    background: grey;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    font-weight: 500;
    height: 300px;
    max-height: 100vh;
}

.dots {
    display: flex;
    padding: 10px 0;
    justify-content: center;
}

.dot {
    border: none;
    width: 10px;
    height: 10px;
    background: rgb(7 20 55);
    border-radius: 50%;
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
}

.dot:focus {
    outline: none;
}

.dot--active {
    background: var(--bs-primary);
}

.navigation-wrapper {
    position: relative;
}

.arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    fill: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;

}

.arrow--left:before {
    content: "\f060";
    font-family: "FontAwesome", serif;
}

.arrow--left {
    left: 5px;
    font-size: 16px;
}

.arrow--right:before {
    content: "\f061";
    font-family: "FontAwesome", serif;
}

.arrow--right {
    left: auto;
    right: 5px;
    font-size: 16px;
}

/*
.arrow--disabled.arrow--left {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--right {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}
*/
/* SLIDERS */


/* SHIMMER */
.shimmer {
    background-color: #f6f7f8;
    background-image: linear-gradient(0deg, #f6f7f8 25%, #e2e2e2 37%, #f6f7f8 63%);
    background-size: 100% 200%;
    animation: shimmer-animation 1.5s linear infinite;
}

@keyframes shimmer-animation {
    0% {
        background-position: 0 100%;
    }
    100% {
        background-position: 0 -100%;
    }
}

/* SHIMMER */


/*TELEGRAM*/

.bg-telegram {
    background: #0088cc !important;
}

.text-telegram {
    color: #0088cc !important;
}

.bg-telegram i, .bg-telegram span {
    color: white !important;;
}

.bg-telegram:hover {
    background: #0073af !important;;
}

/*TELEGRAM*/


/*WHATSAPP*/
.bg-whatsapp {
    background: #25D366 !important;;
}

.bg-whatsapp i, .bg-whatsapp span {
    color: white !important;;
}

.bg-whatsapp:hover {
    background: #1eb053 !important;;
}

/*WHATSAPP*/