﻿.transparent {
    opacity: 0.2;
}

* {
    font-family: 'Lato', sans-serif;
}

.loading {
    position: fixed;
    top: calc(50% - 60px);
    right: calc(50% - 60px);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #011264;
    border-right: 16px solid #1d402c;
    border-bottom: 16px solid #0bccea;
    border-left: 16px solid #6ef046;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 9999;
    background: transparent;
}

.btn-primary {
    background-color: #009c4e;
    border-color: #009c4e;    
}

.btn-primary:hover {
    background-color: #6ebe49;
    border-color: #6ebe49;
}

.k-button.k-primary {
    background-color: #009c4e;
    border-color: #009c4e;
}

.k-button.k-primary:hover {
    background-color: #6ebe49;
    border-color: #6ebe49;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
