.bg-orange {
    background: #dd8c0c;
}

.bg-black {
    background: black;
}

.bg-green {
    background: #2d9236;
}

.c-white {
    color: white;
}

.c-green {
    color: #2d9236;
}

.h-100 {
    height: 100%;
}

.pr-10 {
    padding-right: 10px;
}

label {
    padding-bottom: 5px !important;
}

.content {
    padding: 0px 50px;
}

.text-bold {
    font-weight: bold;
}

.text-light {
    font-weight: 100;
}

.text-family-montserrat {
    font-family: Montserrat;
}

.text-right {
    text-align: right;
}

#page-infos .block-info div:first-child {
    padding: 10px 20px;
}

body .ui-growl .ui-growl-item-container.ui-growl-error {
    background: blue !important;
}

.label-required {
    color: orange;
    font-weight: bold;
}

body .ui-chkbox .ui-chkbox-box.ui-state-active {
    background: #2d9236;
    border: none;
}

/**
 * loader
 **/
.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/**
 * lds-ripple
 **/
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

/**
 * lds-spinner
 **/
.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#pageDescritor {
    height: 0px;
    display: none;
    visibility: hidden;
}

@media (min-width: 1025px) {
    #pageDescritor {
        height: auto;
        display: block;
        visibility: visible;
    }
}

/** Les boutons **/
body .ui-button,
button {
    background: #029b02 ;
    border-radius: 4px ;
    width: auto !important ;
    padding: 3px 10px;
    margin-right: 15px ;
    margin-left: 0px ;
    margin-bottom: 5px ;
}

/** Inputs **/
input {
    height: 40px !important;
}

label {
    display: inline-block;
    margin-bottom: 0px !important;
}

.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.active-menuitem>a {
    color: white;
    border-left-color: green;
}

.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.active-menuitem>a i {
    color: green;
}

body .ui-inputswitch .ui-inputswitch-handle.ui-state-focus {
    background-color: white !important;
}

.ui-datatable-scrollable-body:focus {
    outline-color: transparent !important;
}

.check {
    background-color: #28a745;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.uncheck {
    background-color: #de4e0ac7;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.c-orange {
    color: #dd8c0c;
}