html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;   
    color: #22221b;
    padding-bottom: 60px; /* Height of the footer */
}

    body .container.container-body {
        margin-top: 150px;
    }

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}


.bg-image {
    background-image: url(../images/bg-image-sky.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    vertical-align: top;
    background-position: 0% 0%;
}

/*Titles*/

h1, h2 {
    color: #44449b;
}

.main-page-title {
    color: #f7f7f5;
    font-size: 55pt !important;
    font-weight: 700;
    margin-bottom: 35px !important;
    padding-top: 100px !important;
}

.main-page-slogan {
    color: #f7f7f5;
    font-family: "Montserrat", sans-serif;
    font-size: 25pt;
    margin-bottom: 70px;
}


.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.main-page-btn {
    font-size: 17pt;
    font-family: "Montserrat", sans-serif !important;
    padding: 20px !important;
    text-transform: uppercase;
}


/*footer*/
.footer {
    position: absolute;
    padding-top: 10px;
    bottom: 0;
    width: 100%;
    height: 60px; /* Height of the footer */
}

/*Navbar changes*/

.navbar {
    height: 120px !important;
}


.nav-link:hover {
    color: #44449b !important;

}


.nav-item::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background: #8b8589;
    transition: 0.5s
}

.nav-item:hover::after {
    width: 100%
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .show > .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #0a6891
}

.nav-link {
    padding: 5px 5px;
    transition: 0.2s;
    color: #0a6891 !important;
}

/*.nav-pills .active a, .nav-pills .active a:hover, .nav-pills .active a:active,
.nav-pills a:hover, .nav-pills a, .nav-pills a:active {
    background-color: transparent !important;    
}*/

.nav-tabs .nav-link {
    padding-top: 15px;
    padding-bottom:15px;
}

.navbar.bg-transparent {
    background-image: linear-gradient(to top, rgba(247,247,245,0), rgba(247,247,245,0.6), rgba(247,247,245,0.9), rgba(247,247,245,1));
}
/**/


/*Custom button
*/
/*for main buttons
*/

.btn-custom {
    display: inline-block;
    padding: 0.6em 1.7em;
    margin: 0 0.3em 0.3em 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 0px 2px 7px 2px var(--box-shadow-color);
}

    .btn-custom:hover {
        background-color: #ffffff;
        transform: translateY(2px);
    }

.btn-nav {
    color: #0a6891;
    background-color: #ddedf4;
    --box-shadow-color: rgba(17,129,178,.3);
}

.btn-nav:hover {
    border-color: #1181b2;
    color: #0a6891;
    --box-shadow-color: rgba(17,129,178,.4);
}

.btn-nav-back {
    color: #8b8589;
    --box-shadow-color: rgba(139,133,137,.3);
}

.btn-nav-back:hover {
    border-color: #8b8589;
    color: #8b8589;
    --box-shadow-color: rgba(139,133,137,.4);
}

.btn-download {
    color: #ffffff;
    background-color: #55449B;
    --box-shadow-color: rgba(68,68,155,.4);
}

.btn-download:hover {
    border-color: #44449b;
    color: #44449b;
    --box-shadow-color: rgba(68,68,155,.5);
}

.btn-create-update {
    color: #ffffff;
    background-color: #1181b2;
    --box-shadow-color: rgba(17,129,178,.4);
}

.btn-create-update:hover {
    border-color: #1181B2;
    color: #1181b2;
    --box-shadow-color: rgba(17,129,178,.5);
}

       
/*for delete button
*/
.btn-delete {
    color: white !important;
    background-color: indianred;
    --box-shadow-color: rgba(200,100,100,.4);
}

.btn-delete:hover {
    border-color: indianred;
    color: indianred !important;
}

.btn-remove {
    color: white !important;
    background-color: #c26767;
    --box-shadow-color: rgba(200,100,100,.4);
}

.btn-remove:hover {
    border-color: indianred;
    color: indianred !important;
}



/*
.fa {
    color: #44449b;
}*/



/*Custom table*/
.table tr:hover {
    /*background-color: #e6e6e3 !important;*/
    background: rgb(247,247,245);
    background: linear-gradient(to left, rgba(247,247,245,0.6), rgba(222,222,220,0.5), rgba(247,247,245,0.6));
}

.table tr {
    vertical-align: middle;
    padding: 10px;
    text-align:center;
}

th {
    /*    text-transform: uppercase;
*/ font-weight: 700;
    font-size: 13pt;
    color: #44449b;
    vertical-align: top;
}

th.inner-table {
    font-weight: 600;
    font-size: 11pt;
    color: #44449b;
}


.table-responsive {
    margin-top: 15px;
}

/*column width limited with scroll
*/
.scroll-horizontal {
    overflow-x: auto;
    width: 270px;
    padding: 15px;
}

/*Custom table with filters*/

#tblVersions {
    min-height: 350px;
}

.dropdown-filter-dropdown {
    display: block !important;
}

.glyphicon-arrow-down, .dropdown-filter-icon {
    color: #44449b !important;
}

.dropdown-filter-icon {
    margin-left: 15px;
    padding: 5px;
    border: none !important;
 }

.dropdown-filter-content {
    text-align: start;
}

.dropdown-filter-item {
    font-weight: normal !important;
}


/*form
*/
.form-floating {
    margin-top: 20px;
    margin-bottom: 20px;
}

.card-body {
    background-color: #FBFBFA;
    margin: 10px;
}


.treeview {
    font-size: 15pt;
    font-family: "Montserrat", sans-serif !important;
    color: #0a6891;
    margin-top: 25px;
}

.search-input {
    width: 250px;
    min-width: 200px;
    margin-top: 20px;
}

tr.table-row-top-1 {
    background-color: #f1f7fa;
}

/*tooltip*/

.tooltip-inner {
    background-color: #ddedf4;
    color: #0a6891;
}

