.ajaxSpinner2 {
    border: 5px solid #54c4c7;
    border-top: 5px solid #f3f3f3;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
    margin-right: 10px; 
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.eleontoPriceLoad {
    position: fixed;
    left: 100px;
    bottom: 20px; 
    z-index: 99;
    border: none;
    outline: none;
    background-color: #00acb2;
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: row;
    border-radius: 5px; 
}

.eleontoPricePara {
    color: #ffffff;
    margin: 0;
}
.js-price-dropped {
    display: none;
}

@media only screen and (max-device-width: 767px) {
    .eleontoPricePara {
        display: none;
    }
    .ajaxSpinner2 {
       margin-right: 0;
    }
    .eleontoPriceLoad {
        left: 20px;
        bottom: 130px;
    }
}