html {
    font-size: 14px;
}

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

/*#menu-bar {
    height: 100vh;
}*/



@media (max-height: 1080px) {
    #menu-bar {
        height: 100vh;
    }
    #pdf-view {
        height: 70vh;
    }
}

@media (max-height: 650px) {
    #menu-bar {
        height: 125vh;
    }
    #pdf-view {
        height: 75vh;
    }
}

@media (max-height: 435px) {
    #menu-bar {
        height: 135vh;
    }

    #pdf-view {
        height: 90vh;
    }
}

@media (max-height: 382px) {
    #menu-bar {
        height: 160vh;
    }

}
@media (max-height: 300px) {
    #menu-bar {
        height: 180vh;
    }
}

@media (max-height: 253px) {
    #menu-bar {
        height: 200vh;
    }
}
@media (max-height: 220px) {
    #menu-bar {
        height: 220vh;
    }
}

@media (max-height: 190px) {
    #menu-bar {
        height: 240vh;
    }
}
html {
    position: relative;
    min-height: 100%;
}

/*body {
    margin-bottom: 30px;
}*/

.mt2px {
    margin-top: 2px;
}

.begin-title {
    height: 40px;
}

.row-height {
    height: 28px;
}

.row-height-2 {
    height: 58px;
}

.row-height-3 {
    height: 88px;
}

.row-height-4 {
    height: 118px;
}

.row-height-5 {
    height: 148px;
}

.div-middle {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.card.card-body{
    padding-left: 0px;
}

.card > .menu-item {
    padding-left: 31px !important;
}

.menu-item {
    height: 36px;
    width: 100%;
    padding-left: 15px;
    transition: background-color 0.5s;
}

    .menu-item:hover {
        background-color: #ededed;
    }

.menu-item-activate {
    background-color: #ededed;
}

.pt2px {
    padding-top: 2px;
}

.pb2px {
    padding-bottom: 2px;
}

.required {
    position: absolute;
    top: 0px;
    right: 2px;
    color: red;
}

.text-right {
    text-align: right !important;
}

.tab {
    color: initial;
    background-color: #DADCDE;
    border: solid 1px transparent;
    min-width: 100px;
}

.tab.active {
    color: initial;
    background-color: #C6E0B4;
    border: solid 1px transparent;
}

.pr1px {
    padding-right: 1px;
}

.pl1px {
    padding-left: 1px;
}

.py1px {
    padding-top: 1px;
    padding-bottom: 1px;
}

.table-style th {
    min-width: 100px;
    max-width: 250px;
    background-color: #d9d9d9;
}

table {
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
}

thead {
    position: sticky;
    top: 0;
}

    thead tr th {
        background: #ffffff;
        height: 55px;
        border-bottom: 1px solid;
        border-right: 1px solid;
    }

td {
    border-bottom: 1px solid;
    border-right: 1px solid;
}

table th:first-child,
table td:first-child {
    /* Apply a left border on the first <td> or <th> in a row */
    border-left: 1px solid;
}

.table-style {
    max-height: 50vh;
    overflow-y: auto;
    border-top: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.no-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: red;
}

.bb-dotted {
    border-bottom: dotted 1px;
}

.example {
    border: 1px solid black;
    overflow-y: scroll; /* Add the ability to scroll */
}

    /* Hide scrollbar for Chrome, Safari and Opera */
    .example::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.example {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

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

.linkMove {
    cursor: pointer;
    color: #0d6efd;
    text-decoration: underline;
}

.ellipsis-1 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden
}