/*
 Theme Name:     Logic Hop
 Theme URI:      https://logichop.com
 Description:    Logic Hop Theme
 Author:         Logic Hop
 Author URI:     https://logichop.com
 Template:       Divi
 Version:        1.0.0
*/
 
/*@import url("../Divi/style.css");*/
.gform_ajax_spinner {
    box-sizing: border-box;
    margin-top: 11px;
    margin-left: 10px;
    border: 3px solid  rgba(1, 244, 216, 1) ;
    border-left: 3px solid rgba(1, 244, 216, 0.5);
    border-top: 3px solid rgba(1, 244, 216, 15);
    border-right: 3px solid rrgba(1, 244, 216, 5);
    animation: spinner 1.1s infinite linear;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 1;
}
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}