﻿

.primaryBtn {
    padding: 5px 10px;
    background-color: #54BFD1;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    color: white;
    font-weight: 400;
    min-width: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .primaryBtn:hover, .primaryBtn:active, .primaryBtn:focus {
        background-color: #368491;
        color: white;
    }

    .primaryBtn:disabled {
        background-color: #ddd;
        color: #888;
        border: 1px solid #ddd;
        cursor: not-allowed;
    }

    .primaryBtn img {
        width: 12px;
        height: 12px;
    }

.cleanBtn {
    padding: 5px 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    color: black;
    font-weight: 600;
    min-width: 20px;

}


        .cleanBtn img {
            width: 12px;
            height: 12px;
        }

        .cleanBtn .glyphicon {
            font-size: 10px;
        }

        .cleanBtn:hover {
            background-color: #ddd;
        }

    .cleanBtn:disabled {
        background-color: #ddd;
        color: #888;
        border: 1px solid #ddd;
        cursor: not-allowed;
    }

.iconStandardSize {
    max-width: 25px;
}

.vertical-divider {
    width: 1px;
    border: 1px solid #ddd;
    height: 100%;
}



/**

    LOADING

*/
.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}
.spinningHide {
    /*display: none;*/
}