/*Validate*/
.message_response {
    width: 100%;
    color: #fff !important;
    text-align: center;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.message_response.success {
    margin-top: 20px;
    padding: 15px;
    background: #71C685;
    opacity: 1;
    visibility: visible;
}

.message_response.error {
    margin-top: 20px;
    padding: 15px;
    background: #de3939;
    opacity: 1;
    visibility: visible;
}

.error_input {
    border: 1px solid #de3939 !important;
    background: #ffd2d2 !important;
}

/*For google button*/
.g-signin2 .abcRioButton {
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

/*Catalog Preloader*/
.preloader {
    height: 200px;
    display: none;
}

.backdrop {
    height: 100px;
    width: 100%;
    margin: 0;
}

.backdrop {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    /*background: linear-gradient(45deg, #6200ea, #d500f9);*/
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    background: #1072b9;
    margin: 5px;
    -webkit-animation-name: loader;
    animation-name: loader;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.dot:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.dot:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.dot:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.dot:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.dot:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes loader {
    from {
        width: 2px;
        height: 2px;
        border-radius: 1px;
    }
    to {
        width: 20px;
        height: 20px;
        border-radius: 10px;
    }
}

@keyframes loader {
    from {
        width: 2px;
        height: 2px;
        border-radius: 1px;
    }
    to {
        width: 20px;
        height: 20px;
        border-radius: 10px;
    }
}