@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Roboto:wght@100;300;400;500;700&display=swap');

.login-bg {
    background-image: url('../images/login-bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.browser-bg {
    background-image: url('../images/browser-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fs-7{
    font-size: 0.70rem !important;
}

* {
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 1.5px !important;
}

.logo-font {
    font-family: 'Playfair Display', serif !important;
    line-height: 60px !important;
}

.text-custom {
    color: #004F6E;
}

.text-custom2 {
    color: #8EC2AB;
}

.fw-thin {
    font-weight: 100;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.form-control:active {
    border-color: #004F6E !important;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #004F6E !important;
    box-shadow: none !important;
}

.btn-custom {
    background-color: #004F6E !important;
    border: #004F6E !important;
    color: white !important;
}

.btn-custom:hover {
    background-color: #8EC2AB !important;
}

.bg-custom {
    background-color: #8EC2AB !important;
    color: white !important;
}

.bg-gradient {
    /* background: rgb(10,55,56); */
    background: linear-gradient(90deg, rgba(0,79,110,1) 0%, rgba(142,194,171,1) 100%) !important;
    color: white !important;
}

.table-custom {
    background-color: #004F6E !important;
    color: white !important;
}


.table-text-sm{
    font-size: 12px !important;
    letter-spacing: 0px !important;
}

.fs-05 {
    font-size: 3.5rem !important;
}

.text-shadow {
    text-shadow: 4px 4px 4px rgb(26, 26, 26, 0.8);
}

.loading-img {
    /* z-index: 1020; */
    z-index: 2001;
    background: transparent url(../images/loading.gif) 50% 50% no-repeat;
    background-size: 150px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #004F6E;
}

.w-10 {
    width: 10%!important;
}

.w-20 {
    width: 20%!important;
}

.page-item.active .page-link {
    background-color: #004F6E;
    border-color: #004F6E;
}

.page-link {
    color: #004F6E;
}

.page-link:hover {
    color: #8EC2AB;
}

.loading-img,
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.min-vh-60 {
    min-height: 60vh !important;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.max-vh-80{
    max-height: 80vh !important;
}

.dt-buttons{
    display: none !important;
}

.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover{
    background-color: #004F6E !important;
    border-color: #004F6E !important;
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#004F6E),to(#004F6E)) !important;
    background-image: linear-gradient(to bottom,#004F6E,#004F6E) !important;
}

.form-check-input:checked {
    background-color: #004F6E !important;
    border-color: #004F6E !important;
}

.overlay {
    /* z-index: 1010; */
    z-index: 2000;
    background: rgba(0, 0, 0, .7);
    -webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1.5s; /* Firefox < 16 */
     -ms-animation: fadein 1.5s; /* Internet Explorer */
      -o-animation: fadein 1.5s; /* Opera < 12.1 */
         animation: fadein 1.5s;
}

.modal.fade .modal-dialog {
    /* -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2;
    transition: all 0.2s; */
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.modal.fade.show .modal-dialog {
    /* -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); */
    /* -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0); */
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.1, 0.5, 0.5, 1.5);
    transform: scale(1);
}

/* #tblBrowser table, #tblBrowser tr td {
    border: 1px solid red !important;
} */
/* #tblBrowser tbody {
    display: block !important;
    height: 50vh !important;
    overflow: auto !important;
}
#tblBrowser thead, #tblBrowser tbody tr {
    display: table !important;
    width: 100% !important;
    table-layout: fixed !important;
}
#tblBrowser thead {
    width: calc( 100% - 1em ) !important; 
}
#tblBrowser table {
    width: 400px !important;
} */
.display-md{
    display: block;
}
.display-sm{
    display: none;
}
@media only screen and (max-width: 600px) {
    .display-md{
        display: none;
    }
    .display-sm{
        display: block;
    }

    .login-bg{
        background-image: url("");
        background-color: #004F6E !important;
    }
    .position-sm{
        position: static !important;
    }
  }