* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f3f4f6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.header {
    overflow: hidden;
    background-color: rgba(5,150,105);
    padding: 20px 10px;
    display: flex;
    color: black;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.header a {
    float: left;
    padding: 12px;
    text-decoration: none;
    color: white;
    font-size: 19px;
    line-height: 25px;
    /* border-radius: 4px;
    background-color: #38B000; */
    margin-left: 10px;
    text-align: center !important;
}

.header-center {
    float: right;
}

.font-button {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.header-profile {
    padding: 10px;
    border-radius: 0.25rem;
    background: #90e0869c;
    color: white;
    box-shadow: 0px 1px 23px 0px #464646;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.header-profile:hover {
    transform: translateY(-3px);
    cursor: pointer;
}

.header-profile .picture img {
    border-radius: 45px;
    margin-bottom: 0 !important;
}

.header-profile span {
    margin-top: 0px;
}

.header .btn-logout {
    float: left;
    color: white;
    text-align: center;
    padding: 8px;
    /* text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    border-radius: 4px;
    background-color: #38B000; */
}

.container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;

}

.table-container {
    width: 90%;
}

.btn-add {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    background-color: #38B000;
    cursor: pointer;
}

.btn-add:hover {
    background-color: #006400;
    color: white;
}


.adminTable {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.custom-btn {
    text-decoration: none;
    padding: 5px;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background-color: #006400;
    border: none;
    cursor: pointer;
    font-size: 15px;

}

.adminTable td,
.adminTable th {
    /* border: 1px solid white; */
    padding: 8px;
    text-align: center;
}

.adminTable tr:nth-child(even) {
    background-color: #CCFFCC;
}

/* .adminTable tr:hover {
    background-color: #38B000;
} */

.adminTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: rgba(209, 250, 229);
    color: black;
}

/* MODAL */
/* Set a style for all buttons */
.btn-modal {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn-modal:hover {
    opacity: 1;
}

/* Float cancel and delete buttons and add an equal width */
.cancelbtn,
.deletebtn {
    float: left;
    width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
    background-color: #958e8e;
    color: white;
}

/* Add a color to the delete button */
.deletebtn {
    background-color: #f44336;
}

/* Add padding and center-align text to the container */
.container-modal {
    padding: 16px;
    text-align: center;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: #474e5d;
    padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* The Modal Close Button (x) */
.close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover,
.close:focus {
    color: #f44336;
    cursor: pointer;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* FORM */
input[type=date],
input[type=password],
input[type=tel],
input[type=email],
input[type=text],
input[type=number],
select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


input[type=submit] {
    width: 100%;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.div-form {
    border-radius: 5px;
    background-color: #CCFFCC;
    color: black;
    padding: 50px;
    width: 50%;
}

.container-exams {
    display: flex;
    flex-flow: row wrap;
    gap: 5px;
    max-height: 70px;
    overflow-x: overlay;
}

.container-exams a {
    flex: 1 1 30%;
}

/* switcher radio */
.switch-field {
    display: flex;
    margin-bottom: 36px;
    overflow: hidden;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    background-color: rgba(219, 234, 254);
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    line-height: 1;
    text-align: center;
    padding: 12px 26px;
    margin-right: -1px;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
    font-weight: 600;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked+label {
    background-color:  rgba(5,150,105);
    box-shadow: none;
    color: white;
    font-weight: bold;    
}

.switch-field input:checked+label::after {
    content: "\f058";
    font-family: 'FontAwesome';
    margin-left: 5px;
}

.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.frm-login {
    width: 50%;
}

input[readonly],
textarea[readonly],
select[readonly] {
    background: #dddddd;
    /*Simular campo inativo - Sugestão @GabrielRodrigues*/
    pointer-events: none;
    touch-action: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.laudo-status.todo {
    background-color: #ffff00bf !important;
    color: black;
}

.laudo-status.urgent {
    background-color: #ff0000c9 !important;
    color: white;
}

.laudo-status.doing {
    background-color: #0000ffa6 !important;
    color: white;
}

.laudo-status.rejected {
    background-color: #9400d3c9 !important;
    color: white;
}

.laudo-status.done {
    background-color: #38B000 !important;
}

.blink {
    animation: blinker 2s linear infinite;

}

.my-dropzone {
    /* Set the desired height */
    border: 2px dashed #3498db !important;
    background: #f0f0f0 !important;
    text-align: center !important;
    /* Center the container */
    font-family: Arial, sans-serif !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease-in-out !important;
}

.my-dropzone:hover {
    border-color: black !important;
}

@keyframes blinker {
    50% {
        opacity: 0.2;
    }
}

@media screen and (max-width: 700px) {

    .header {
        flex-direction: column;
    }

    .header a {
        float: none;
        display: block;
        text-align: left;
        margin-left: 0;
        margin-top: 10px;
    }

    .header-right {
        float: none;
    }

    .table-container {
        overflow-x: scroll;
    }

    th,
    td {
        min-width: 200px;
    }

    .btn-add {
        margin-left: auto;
        width: 100%;
    }

    .container-link-visitante {

        align-items: center !important;
    }

    .link-visitante-patient {
        flex-direction: column !important;
    }

    .div-form {
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .cancelbtn,
    .deletebtn {
        width: 100%;
    }

    .input-search {
        width: 50% !important;
    }

    .frm-login {
        width: 80%;
    }

    .container-mobile {
        padding: 30px;
        text-align: center !important;
    }

    .header-profile {
        margin-top: 1rem;
    }
}

.paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;color:inherit !important;border:1px solid #e5e7eb;border-radius: 0.375rem;background:white}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    border-radius: 0.375rem;
    color:inherit !important;
    border:1px solid #80808098;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05)));
    background:-webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);background:-moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);background:-ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    background:-o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    background:#8080803b;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    border-radius: 0.375rem;
    border:1px solid #e5e7eb;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
    cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none
}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    color:white !important;
    border:1px solid #111;
    background-color:#111;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
    background:-webkit-linear-gradient(top, #585858 0%, #111 100%);
    background:-moz-linear-gradient(top, #585858 0%, #111 100%);
    background:-ms-linear-gradient(top, #585858 0%, #111 100%);
    background:-o-linear-gradient(top, #585858 0%, #111 100%);
    background:linear-gradient(to bottom, #585858 0%, #111 100%)
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active{
    outline:none;
    background-color:#0c0c0c;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
    background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
    box-shadow:inset 0 0 3px #111
}
.dataTables_info{
    clear:both;float:left;padding-top:.755em
}
.dataTables_wrapper .dataTables_paginate{
    float:right;text-align:right;padding-top:.25em
}.dataTables_wrapper .dataTables_paginate .paginate_button{
    box-sizing:border-box;display:inline-block;min-width:1.5em;padding:.5em 1em;margin-left:2px;text-align:center;text-decoration:none
    !important;cursor:pointer;color:inherit !important;border:1px solid transparent;border-radius:2px;background:transparent
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper
.dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper
.dataTables_paginate .paginate_button.disabled:active{
    cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    color:white !important;border:1px solid #111;background-color:#111;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
    background:-webkit-linear-gradient(top, #585858 0%, #111 100%);
    background:-moz-linear-gradient(top, #585858 0%, #111 100%);
    background:-ms-linear-gradient(top, #585858 0%, #111 100%);
    background:-o-linear-gradient(top, #585858 0%, #111 100%);
    background:linear-gradient(to bottom, #585858 0%, #111 100%)
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active{
    outline:none;background-color:#0c0c0c;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
    background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}
.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}
.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate{
    color:inherit
}.dataTables_wrapper .dataTables_scroll{clear:both}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{
    -webkit-overflow-scrolling:touch
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper
.dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper
.dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper
.dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing
{
    height:0;overflow:hidden;margin:0 !important;padding:0 !important
}.dataTables_wrapper.no-footer .dataTables_scrollBody{
    border-bottom:1px solid rgba(0, 0, 0, 0.3)
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}
.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}
@media screen and (max-width: 767px)
{.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate
{float:none;text-align:center}
}