html,body {
    font-family: "Century Gothic",CenturyGothic,AppleGothic,sans-serif;
    max-height: 100vh;
    overflow-y: hidden;
}
article {
    max-height: 100vh;
    min-height: 500px;
    overflow-y: auto;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.bg-img::before {
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
}

.divOptButtons {
    position: absolute;
    right: 0;
    top: 0;
}
@media (max-width: 768px) {
    .divOptButtons {
        top: auto;
        bottom: 0;
    }   
}

.buttons {
    text-decoration: none!important;
    display: inline-flex;
    align-items: center;
}

.buttons span {
    width: 0;
    display: none;
}

.buttons i, .buttons span {
    transition: all 1s ease-in-out;
}

.buttons:hover i {
    transform: rotate(360deg);
}

.buttons:hover span {
    width: 100%;
    display: inline-block;
}


.tableFixHead    { overflow-y: auto; max-height: 60vh; }
@media(max-width:991.98px) {
    .tableFixHead    { overflow-y: auto; max-height: 50vh; }
}

.tableFixHead thead th { position: sticky; top: 0; }
.tableFixHead tfoot td { position: sticky; bottom: 0; background: white;}
.tableFixHead table  { border-collapse: collapse; width: 100%; }

@media(max-width:576px) {
    .priority-2,.priority-3 {
        display: none;
    }
}

@media(max-width:768px) {
    .priority-3 {
        display: none;
    }
}

.tobeHide {
    display: none;
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: white;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
}
#sidebarCollapse span:first-of-type {
    /* rotate first one */
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    /* second one is not visible */
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    /* rotate third one */
    transform: rotate(-45deg) translate(1px, -1px);
}
#sidebarCollapse.active span {
    /* no rotation */
    transform: none;
    /* all bars are visible */
    opacity: 1;
    margin: 5px auto;
}
.wrapper {
    display: flex;
    
    perspective: 1500px; 
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #7386D5;
    color: #fff;
    align-self: stretch;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: center left; /* Set the transformed position of sidebar to center left side. */
}

#sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg); /* Rotate sidebar vertically by 100 degrees. */
}
@media (max-width: 768px) {
    /* Reversing the behavior of the sidebar: 
       it'll be rotated vertically and off canvas by default, 
       collapsing in on toggle button click with removal of 
       the vertical rotation.   */
    #sidebar {
        margin-left: -250px;
        transform: rotateY(100deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }

    /* Reversing the behavior of the bars: 
       Removing the rotation from the first,
       last bars and reappear the second bar on default state, 
       and giving them a vertical margin */
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }

    /* Removing the vertical margin and make the first and last bars rotate again when the sidebar is open, hiding the second bar */
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }
}

.img-fluid-height {
    width: 100%;
    object-fit: cover;
    height: 80vh;
}

p {
    line-height: 1.4;
    margin: 0;
}