/*------------------------------------------------------------------
* Bootstrap Simple Admin Template
* Version: 3.0
* Author: Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-------------------------------------------------------------------*/

@import "../components/navbar/navbar-dropdowns.css";
@import "../components/sidebar/sidebar-default.css";

/*------------------------------------------------------------------
# [Color codes]

# teal: #00b5ad
# olive: #b5cc18
# violet: #6435c9
# orange: #f2711c
# darkgray: darkgray
# blue: #2185d0
# grey: #767676
# */

/*------------------------------------------------------------------
[Typography]

Body:           1em / "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
Headers:        2em / "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
parapgraph:     1em / "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;

Notes:  decreasing heading by 0.4em with every subsequent heading level
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1. Body / #body
2. Header / #header
3. Navigation / #navbar
4. Content / #content
5. Sidebar / #sidebar
6. Boxes / .box
7. Dashboard cards / .card
8. Miscellaneous
9. Adjustments to dafault behaviors
10. Colors / .teal, .olive, .violet, .orange, .darkgray, .blue, .grey
11. Responsive properties
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[1. Body / #body]
*/
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url("../font/Lato-Regular.eot");
    src: url("../font/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../font/Lato-Regular.woff") format("woff"), url("../font/Lato-Regular.ttf") format("truetype");
}

body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
td {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    width: 100%;
    height: 100%;
    background: #f4f6fa;
    font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #444;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    overflow-x: hidden
}

#body {
    width: 100%;
    padding: 0;
    min-height: 100vh;
    transition: all 0.3s;
}

/*------------------------------------------------------------------
[2. Header / #header]
*/
#body>.navbar {
    padding: 0 1.5rem;
    min-height: 54px;
    box-shadow: none;
    border-bottom: 1px solid rgba(101, 109, 119, .16);
}

/*------------------------------------------------------------------
[3. Navigation / #navbar] - see /components/navbar/navbar-dropdown.css
*/
.default-light-menu {
    border: none !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
    color: #fff;
}

.default-light-menu:hover {
    background: #2196F3 !important;
    color: #fff;
}

/*------------------------------------------------------------------
[4. Content / #content]
*/
#body>.content {
    position: relative;
    padding: 20px;
}

#body .content .page-title h3 {
    margin: 1rem 0;
}

.page-header {
    margin-top: 1.25rem;
}

.page-pretitle {
    font-size: .8rem;
    text-transform: uppercase;
    line-height: 1.6;
    color: #656d77;
}

.page-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.5555556;
}

.detail-subtitle {
    font-size: .8rem;
    text-transform: uppercase;
    line-height: 1.6;
}

/*------------------------------------------------------------------
[5. Sidebar / #sidebar] - see /components/sidebar/sidebar-default.css
*/

/*------------------------------------------------------------------
[6. Boxes / .box] 
*/
.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.box-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top: 1px solid #f4f4f4;
    padding: 10px 20px;
    background-color: #FAFAFA;
    text-align: right;
}

.box-primary {
    border-top-color: #22a1f9;
}

/*------------------------------------------------------------------
[7. Dashboard Cards / .card] 
*/
.card {
    margin-bottom: 15px;
    box-shadow: rgba(35, 46, 60, .04) 0 2px 4px 0;
}

.card .content {
    padding: 15px 15px 10px 15px;
}

.card .content .icon-big {
    font-size: 3em;
    min-height: 64px;
    line-height: 64px;
}

.card .content .number {
    font-size: 1.5em;
    text-align: right;
    font-weight: bolder;
}

.card .content .footer {
    background-attachment: fixed;
    position: relative;
    padding: 0;
    line-height: 30px;
}

.card .content .stats {
    display: inline-block;
    color: #a9a9a9;
}

/*------------------------------------------------------------------
[8. Miscellaneous ] 
*/
.line {
    border-bottom: 1px solid #E0E0E0;
}

.nav-pills {
    padding: 15px;
    background-color: #E0E0E0;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
}

.btn-rounded {
    border-radius: 10em;
    padding: 6px 8px;
    font-size: small;
    text-transform: none;
    text-shadow: none !important;
    background: #eaeaea;
    border-color: transparent;
    border: none;
}

.btn-rounded:hover {
    border-color: transparent;
    border: none;
}

#myTab {
    margin-bottom: 15px;
}

.no-margin {
    margin: 0;
}

.dfd {
    width: 100%;
}

.bg-lighter-grey {
    background: #FAFAFA;
}

/*------------------------------------------------------------------
[9. Adjustments to default behaviors] 
*/
a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.btn.btn-square {
    border-radius: 0;
}

.table td,
.table th {
    vertical-align: middle;
}

.row-federation{
    cursor: pointer;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    font-size: .8rem;
    bottom: .9rem;
}

.dataTables_info {
    visibility: hidden;
}

table.dataTable>tbody>tr.child ul.dtr-details {
    display: block;
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: none;
    -webkit-transition: color .1s ease;
    transition: color .1s ease;
    color: inherit;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #007bff;
    background-color: #fff;
    border-bottom: 2px solid #22a1f9;

}

.tab-content {
    padding: 15px;
}

.svg-inline--fa {
    min-width: 15px;
}

.display-absolute {
    position: absolute;
}

.large-icon {
    font-size: 3em;
}

.medium-icon {
    font-size: 2em;
}

.license span {
    margin-bottom: 1em;
}

/*------------------------------------------------------------------
[10. Colors / .teal, .olive, .violet, .orange, .darkgray, .blue, .grey] 
*/
.teal {
    color: #00b5ad !important;
}

.olive {
    color: #b5cc18 !important;
}

.violet {
    color: #6435c9 !important;
}

.orange {
    color: #f2711c !important;
}

.darkgray {
    color: darkgray !important;
}

.blue {
    color: #2185d0 !important;
}

.grey {
    color: #767676 !important;
}

.red {
    color: red !important;
}

.green {
    color: green !important;
}

.sidebar-header{
    text-align: center;
}

.app-logo{
    max-width: 100%;
    max-height: 43px;
}

#sidebar.active{
    margin-left: 0px !important;
}

#sidebarCollapse {
    display: none;
}

/*------------------------------------------------------------------
[11. Responsive properties] 
*/
@media (max-width: 768px) {
    .display-absolute {
        position: relative;
    }
}

@media (max-width: 680px) {
    #body.active .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .nav-dropdown .nav-link-menu {
        position: fixed !important;
        top: 52px !important;
        width: 100% !important;
        margin-top: 0;
    }

    .nav-dropdown .nav-link {
        padding: 10px;
    }

    .nav-dropdown .nav-link-menu::before {
        right: 50%;
    }

    #body .navbar-collapse {
        display: none !important;
    }

    #body .nav-dropdown .nav-item span {
        display: none !important;
    }

    .btn-header {
        display: none;
    }

    #sidebar.active{
        margin-left: -250px !important;
    }

    #sidebarCollapse {
        display: block;
    }

}

@media (min-width: 200px) {
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.brand{
    max-width: 100%;
    max-height: 150px;
}

.hidden-checkbox{
    height: 0;
    width: 0;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.pageLoader{
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 96, 57, 90%);
    visibility: hidden;
    opacity: 0;
    transition: visibility .4s, opacity .4s ease-in-out;
}

.pageLoader .pageLoader__content{

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.pageLoader .pageLoader__content-logo{
    width: 100px;
}


.pageLoader .pageLoader__content-loading{
    position: absolute;
    z-index: -1;
}

.pageLoader-show{
    visibility: visible;
    opacity: 1;
}

.elmLoader{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 48, 135, 0.9);
    transition: visibility .4s, opacity .4s ease-in-out;
}

.elmLoader .elmLoader__content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.elmLoader .elmLoader__content-logo{
    width: 100px;
}

.elmLoader .elmLoader__content-loading{
    position: absolute;
    z-index: -1;
}

:root{
    --bs-blue: #003087;
    --bs-blue-dark: #042562;
}

.btn{
    border-radius: 0!important;
    box-shadow: none!important;
}

.btn-primary{
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
    background-color: var(--bs-blue-dark);
    border-color: var(--bs-blue-dark);
}

.form-control{
    border-radius: 0!important;
}

.modal-header,
.modal-body,
.modal-footer,
.modal-content{
    border-radius: 10px !important;
    border-color: transparent;
}

.btn-secondary{
    background-color: #B1AC87;
    border-color: #B1AC87;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus{
    background-color: #918d6f;
    border-color: #918d6f;
}

.form-select{
    border-radius: 0 !important;
}

textarea:focus,
input:focus,
select:focus{
    box-shadow: none!important;
    border-color: rgb(90, 102, 126)!important;
}

.card{
    border: 0;
    border-radius: 10px !important;
}

.dropdown-menu{
    border-radius: 10px !important;
}

.swal2-styled.swal2-confirm{
    background-color: var(--bs-blue)!important;
    border-color: var(--bs-blue)!important;
    border-radius: 0!important;
    box-shadow: none!important;
}

.swal2-styled.swal2-confirm:hover{
    background-color: var(--bs-blue-dark)!important;
    border-color: var(--bs-blue-dark)!important;
    background-image: none!important;
}

.swal2-styled.swal2-cancel {
    background-color: #B1AC87!important;
    border-color: #B1AC87!important;
    border-radius: 0!important;
    box-shadow: none !important;
}

.swal2-styled.swal2-cancel:hover{
    background-image: none!important;
    background-color: #918d6f!important;
    border-color: #918d6f!important;
}

.swal2-container.swal2-center>.swal2-popup{
    border-radius: 10px!important;
}

/* CropperJs */

.cropper-preview img{
    width: 50%;
    margin: 0 auto;
    display: block;
}

.cropper-preview.cropper-rider img{
    width: auto;
    max-height: 250px;
}


.webcam-stream{
    width: 100%;
}

.webcam-stream.cropper-rider{
    width: 100%;
    max-height: 250px;
}

.cropper-preview,
.webcam-canvas,
.cropper-webcam{
    display: none;
}

.cropper-content{
    width:100%;
    text-align: center;
}

.cropper-content .cropper-img{
    width:100%;
    min-height: 497px;
    max-height: 497px;
    text-align: center;
}

.cropper-content .cropper-img img{
    max-width: 100%;
}

.cropper-content .cropper-action{
    padding-top: 15px;
}

.btn-recrop-crop,
.btn-remove-picture{
    margin-top: 15px;
}

@media(min-width: 992px){
    .btn-webcam-crop{
        float: right;
    }
}

@media(max-width: 992px){
    .btn-webcam-crop,
    .bootstrap-filestyle,
    .bootstrap-filestyle label{
        width: 100%;
        margin-top: 5px;
    }
}

.btn-group-sm>.btn, .btn-sm {
    padding: 0.25rem 0.5rem!important;
    font-size: .875rem!important;
}

.ml-auto{
    margin-left: auto!important;
}

.row-td-owner{
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--bs-blue);
}

.ml-1{
    margin-left: 10px!important;
}

.bg-primary{
    background-color: #003087!important;
    color: #fff!important;
}