@import url(./font.css);
body{
    overflow-x: hidden;
}
.swiper-pagination{
    display: flex !important;
    flex-direction: column !important;
    gap:10px !important;
    align-items: center !important;
    justify-content: center !important;
}
.swiper-pagination span{
    display:  block !important;
}
.swiper-pagination-bullet{
    width: 7px !important;
    height: 7px !important;
    color:transparent !important;
   
    /* display: none !important; */
}
.swiper-pagination-bullet-active {
    border: 1px solid  #122D42 !important;
    background: transparent !important;
    color: #122D42 !important;
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.animate{
    /* transition:all 10s; */
    animation: change 10s infinite ;
     width: 90px;
    height: 90px;
}
@keyframes change {
    0%{
    transform: scale(1);
    }
    50%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}
@media only screen and (min-width:320px) {
    .swiper-pagination-bullet-active {
        width: 25px !important;
        height: 25px !important;
    }
}

.messages {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.messages li {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    transform: translateY(-50%);
    width: 30%;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    z-index: 10000;
}

.messages .success {
    background-color: #d4edda;
    color: #155724;
}

.messages .error {
    background-color: #f8d7da;
    color: #721c24;
}