.modal {
    z-index: 99999;
}

.button-login {
    margin-right: 15px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: #ffffff;
    border-radius: 7px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 4px -2px #198df0;
    background-image: linear-gradient(29deg, #2188cb 0%, #2b54ed 65%, #14798f 100%);
    ;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-login:hover {
    background-position: right center;
    color: #000;
    text-decoration: none;
}

.button-login:active {
    transform: scale(0.95);
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.slider {

    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    /* width: calc(100% - 20%);
            height: calc(100vh - 4rem); */
    /* border-radius: 8px; */
    padding: 15px;
    box-shadow: 0 0 8px -2px;
    border-radius: 10px;

}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    top: 100%;
}

.swiper-slide>img {

    object-fit: cover;
    object-position: center;
}


.swiper-slide {
    /* border-radius: 8px; */
    overflow: hidden;
}

.pagination_ {
    position: absolute;
    width: calc(100% - 10%);
}

.pagination_ div[class^="swiper-button"]::after {
    display: none;
}

.pagination_ div[class^="swiper-button"] {
    width: 35px;
    height: 35px;
    border: 1px solid rgb(75, 75, 75);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* swipper-slider CSS END */

.align {
    text-align: justify;
}

/* ANIMATION FOR ZOOM OUT IN BANNER SECTION START */
@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

.zoom-out-image {
    animation: zoomOut 7s linear infinite alternate;
    /* width: 200vw; */
}

/* ANIMATION FOR ZOOM OUT IN BANNER SECTION END */

/* This style for messege animation*/
.message {
    background: #a2ff00;
    color: #000000;
}

.errorMessage {
    background: #ff5e00;
    color: #000000;
}

.animated {
    width: fit-content;
    margin-top: 10px;
    border-radius: 4px;
    position: absolute;
    right: 0px;
    left: 0px;
    top: 15px;
    margin: auto;
    line-height: 35px;
    z-index: 9999;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.slick-next {
    display: none;
}

.slick-prev {
    display: none;
}