.parsley-error-list {
    all: unset;
	display: none;
}

.focus{
    border: 1px solid tomato;
}
.js_v_error{
    color:tomato;
    font-size: 16px;
    margin-left: 5px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;

}


@keyframes dot-keyframes {

    0%,
    20% {
        opacity: 0.4;
        transform: scale(1, 1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5, 1.5);
    }

    100% {
        opacity: 0.4;
        transform: scale(1, 1);
    }
}

.loader-button {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
}

.loading-dots {
    text-align: center;
    width: 100%;
}

.loading-dots--dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin: 0 4px;
    animation: dot-keyframes 1.5s infinite ease-in-out;
}

.dot-1 {
    background-color: #fff;
    animation-delay: 0s;
}

.dot-2 {
    background-color: #fff;
    animation-delay: 0.3s;
}

.dot-3 {
    background-color: #fff;
    animation-delay: 0.6s;
}

.dot-4 {
    background-color: #fff;
    animation-delay: 0.9s;
}

.dot-5 {
    background-color: #fff;
    animation-delay: 1.2s;
}

