/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 25, 2018, 5:48:48 PM
    Author     : RONDO
*/
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar .divider-vertical {
    height: 40px;
    margin: 0 9px;
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #ffffff;
}

.navbar-nav > li
{
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

input[type=radio] {
    width:20px; 
    height:20px;
    vertical-align: middle;
}

.table > tbody > tr > td {
    vertical-align: middle;
}

.btn-primary-outline {
    background-color: transparent;
    border-color: #ccc;
}