﻿/*loader*/
.loaderbody {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    background-color: rgba(128,128,128,0.2);
    z-index: 2147483647;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 45%;
    left: 40%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none;
}

.fa-clone {
    color: black;
}

.fa-file-excel {
    color: green;
}

.fa-file-alt {
    color: blue;
}

.fa-file-pdf {
    color: red;
}

.fa-print {
    color: black;
}

.center-buttons {
    display: flex;
    justify-content: center;
}

.recipients-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1px;
}

.recipient {
    padding: 1px 5px 1px 5px;
    border: 1px solid skyblue;
    border-radius: 10rem;
    background-color: rgb(0, 121, 191);
    color: white;
    margin: 1px;
    display: block;
}

.recipient-details {
    padding: 1px 5px 1px 5px;
    border: 1px solid skyblue;
    border-radius: 10rem;
    background-color: rgb(0, 121, 191);
    color: white;
    margin: 1px;
    display: block;
}

.delete-recipient {
    font-size: 14px;
    cursor: pointer;
    color: black;
}

    .delete-recipient:hover {
        color: red;
    }

.delete-file {
    font-size: 14px;
    cursor: pointer;
    color: red;
}

.modal-header-primary {
    background-color: #00928A;
    color: white;
    border-radius: 3px;
}

.ocultar {
    display: none;
}

.disabled {
    background: #e9ecef;
}

.margintop{
    margin-top:30px;
}



select {
    padding: 8px 5px;
    border-radius: 5px;
    color: #333;
    width: 250px;
    font-size: 20px;
}

optgroup {
    font-size: 80px;
}

.comma-list {
    display: inline;
    padding: 0px;
    list-style-type: none;
}

.comma-list li {
    display: inline;
    list-style-type: none;
    margin-right: 3px;
}

.comma-list li::after {
    content: ", ";
}

.comma-list li:last-child::after {
    content: "";
}