@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

:root {
    --primary-bg-color: #003366;
    --menu-bg-color: #4c60a9;
}
body{
    font-family: Montserrat;
    background-color: #f7f7f7;
}

hr{
    border: none;
    border-bottom: solid 3px #f7f7f7;
}

p{
    color: #495057 !important;
}
strong{
    color: #21252a;
    font-weight: 500;
}

.label{
    padding-bottom: 5px;
    font-weight: 400;
}

.label,
.value{
    font-family: Montserrat;
    font-size: 16px;
    color: #495057;
}

.tag{
    border-radius: 2px;
    border: 1px solid #495057;
    display: inline-block;
    padding: 2px 5px;
    margin: 2px 5px 2px 0;
    white-space: nowrap;
}

.value{
    border-radius: 2px;
    border: solid 1px #eeeeee;
    background-color: #f7f7f7;
    padding: 7px 10px;
    min-height: 40px;
    margin-bottom: 25px;
}

.btn-close i{
    color: #21252a;
    font-size: 20px;
    margin-top: 10px;
    display: block;
}

.no-results{
    text-align: center;
    padding: 40px 0;
    font-size: 22px;
    color: #495057;
}
.no-results img,
.no-results span {
    display: block;
    margin: auto;
}

.no-results span{
    margin-top: 30px;
    font-family: Montserrat;
}

/* MENU */
#wrapper-main-menu{
    background: #001666;
    background: -webkit-linear-gradient(to right, #001666, #4c60a9);
    background: linear-gradient(to right, #001666, #4c60a9);
}

#wrapper-main-menu .navbar-brand{
    margin-right: 80px;
}

#wrapper-main-menu .navbar-brand img{
    height: 35px;
}
#wrapper-main-menu a.nav-link{
    color: white;
    font-family: 'Roboto', sans-serif;
    margin-right: 15px;
    padding: 10px 15px;
    font-size: 18px;
}

#wrapper-main-menu a.nav-link:hover{
    color: white;
}

#wrapper-main-menu a.active{
    background-color: #314486;
    border-radius: 4px;
    color: white;
}

#wrapper-main-menu a.active:hover{
    color: white;
}


#rigth-menu{
    font-size: 18px;
}

#rigth-menu a.nav-link{
    vertical-align: middle;
    padding: 0;
    display: inline-block;
    margin: 0 10px;
}

#rigth-menu a{
    margin-left: 14px !important;
}
#rigth-menu i{
    margin-left: 10px;
}

/* TITLES */
h1{
    font-size: 24px;
    display: inline-block;
    margin-bottom: 0;
    padding-top: 7px;
    font-family: Montserrat;
    font-weight: 700;
}

/* BOX */
.box{
    border-radius: 4px;
    box-shadow: 0px 5px 20px 0 rgba(30, 30, 30, 0.08);
    background-color: #ffffff;
    border-top: solid 5px var(--menu-bg-color);
    margin-top: 20px;
    margin-bottom: 20px;
}
.box-header{
    border-bottom: solid 3px #f7f7f7;

}
.box-body,
.box-header{
    padding: 10px 20px;
    margin-bottom: 10px;
}

.box-header-actions{
    float: right;
}

/* TABLE */

.table tr.no-correct-format td:first-child::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: orange;
    display: inline-block;
    border-radius: 4px;
    margin-right: 4px;
}

.table {
    font-family: Montserrat;
    border-bottom: 2px solid #f7f7f7;
    margin-bottom: 30px;
}

.table th{
    font-size: 16px;
    font-weight: bold;
    color: #21252a;
    border: none;
}

.table thead th,
.table tbody td {
    border: none;
}

.table tbody td {
    font-size: 16px;
    font-weight: 300;
    color: #495057;
    padding: 20px 10px 12px 10px;
    line-height: 1;
}

.table tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.table a{
    font-size: 20px;
    text-decoration: none;
    color: #495057;
    line-height: 1;
}

.table .trade-name,
.table .main-contact{
    display: block;
    font-weight: 200;
    padding-top: 4px;
}
.table-actions{
    overflow-x: initial !important;
    width: 100px;
}

.table-actions a {
    margin-right: 10px;
}

.table .badge-secondary{
    background-color: #868e96;
    cursor: pointer;
}

/* PAGINATION */
.pagination {
    font-family: Montserrat;
    margin-top: -3px;
}
.pagination .page-item.active .page-link {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.4);
    background-color: var(--menu-bg-color);
}

.pagination .page-item.active .page-link:hover{
    cursor: default;
    color: white;
}

.pagination a.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    background-color: transparent;
    color: #868e96;
    border: none;
}
.pagination a.page-link:hover,
.pagination a.page-link:hover img{
    color: #333;
}
.pagination a.page-link:focus{
    box-shadow: none;
}

.total-results{
    color: #495057;
    background-color: #f7f7f7;
    float: left;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    margin-left: 50px;
    padding-left: 18px;
    padding-right: 18px;
}

.btn-primary{
    background-color: #868e96;
    border-color: #868e96 !important;

}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    border-color: #868e96 !important;
    background-color: #868e96 !important;
    box-shadow: none;
}

.btn-secondary{
    color: #495057;
    background-color: white;
    border: 2px solid #868e96;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active{
    border-color: #495057 !important;
    color: #495057 !important;
    background-color: white !important;
    box-shadow: none;
}

.btn-tertiary{
    color: #495057 !important;
    padding-left: 0;
    padding-right: 0;
}

.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-tertiary:active{
    box-shadow: none !important;
    cursor: pointer;
}

/* MODALS */
.modal-header {
    border-bottom: solid 3px #f7f7f7;
}

.modal-header,
.modal-footer{
    padding-top: 10px;
    padding-bottom: 10px;
}

.modal-footer{
    background-color: #f7f7f7;
    border-top: 1px solid #f7f7f7;
}

/* FORMS */
label {
    font-family: Montserrat;
    color: #495057;
}

input {
    border: solid 1px #e0e0e0 !important;
}

.form-control{
    border-radius: 2px !important;
}
.custom-file-label::after{
    content: "Buscar";
}
label.required:after {
    content: " *";
    font-width: bold;
}
/* FILTERS */
.filter{
    border-radius: 2px;
    border: solid 1px #eeeeee;
    background-color: #f7f7f7;
    padding: 12px 15px;
}

.filter .form-group{
    margin-bottom: 0;
}

.filter .filter-actions{
    padding-top: 28px;
}

.filter label{
    line-height: 1;
}

/* SELECT2 */
.select2-container--default .select2-selection--multiple {
    border: solid 1px #e0e0e0 !important;
    border-radius: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: white;
    border-radius: 2px;
}

.select2-search input{
    border: none !important;
}

.select2-container--default .select2-selection--single {
    border: solid 1px #e0e0e0;
}

.select2-container .select2-selection--single {
    height: 38px;
    border-radius: 2px
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

/* TOASTR */
#toast-container{
    border: none;
}

#toast-container > div{
    padding: 12px  8px !important;
    text-align: center;
    font-size: 16px;
    width: auto;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border: none;
}

#toast-container .toast-success {
    background-color: #7CC669;
    background-image: none !important;
}

#toast-container .toast-success .toast-progress{
    background-color: #619c52;
}

#toast-container .toast-error {
    background-color: #a31616;
    background-image: none !important;
}

#toast-container .toast-error .toast-progress{
    background-color: #6b0f0f;
}

.toast-success .toast-message{
    color: white;
    font-weight: 500;
    font-family: Montserrat;
}

#toast-container{
    opacity: 1;
}
.toast-progress,
#toast-container>div,
#toast-container>div:hover{
    box-shadow: none;
    opacity: 1 !important;
}


.nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--primary-bg-color) !important;
    font-weight: 600;
    color: #21252a;
}

.nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 8px 0;
    margin-right: 80px;
    color: #21252a;
    margin-bottom: -2px;
    font-family: Montserrat;
}
