﻿input:focus, textarea:focus, select:focus, a, button {
    outline-style: none !important;
    box-shadow: none !important;
}

.site-disabled {
    pointer-events: none;
    opacity: 0.6;
}

/*Loading*/
.site-loading {
 
}

.site-loading.full {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.5);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


    .site-loading .lds-ring {
        display: inline-block;
        position: relative;
        width: 54px;
        height: 54px;
    }

        .site-loading .lds-ring div {
            box-sizing: border-box;
            display: block;
            position: absolute;
            width: 54px;
            height: 54px;
            margin: 8px;
            border: 8px solid red;
            border-radius: 50%;
            animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            border-color: red transparent transparent transparent;
        }

            .site-loading .lds-ring div:nth-child(1) {
                animation-delay: -0.45s;
            }

            .site-loading .lds-ring div:nth-child(2) {
                animation-delay: -0.3s;
            }

            .site-loading .lds-ring div:nth-child(3) {
                animation-delay: -0.15s;
            }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
