.body-background{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-image: url('../images/backgrounds/sun-bay.jpg')
}

.wrap{
    background-color: rgba(255,255,255, 0.9);
}

body{
    color:rgb(94, 99, 105);
}

a{
    color: rgb(253, 142, 20);
}

a:hover{
    color: rgb(237, 102, 0);
}

#content-container {
    position: relative;
}

.side-nav{
    background-color: rgba(120,120,120,0.25);
    position: absolute;
    z-index: 999;
    top: 51px;
    left: -440px;
    width: 440px;
    padding: 20px;
    border-radius: 0 0 5px 0;
    box-shadow: none;
    transition: all .4s ease-in-out;
}

.side-nav.active {
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.side-nav .side-nav-btn {
    color: gray;
    background-color: rgba(120,120,120,0.25);
    position: absolute;
    top: 0px;
    left: 440px;
    padding: 10px 6px 40px 10px;
    border-radius: 0 5px 12px 0;
    cursor: pointer;
}

.nav-backdrop {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    /*background: rgba(0, 0, 0, 0.5);*/
    z-index: -1;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.nav-backdrop.active {
    z-index: 998;
    opacity: 1;
}

.btn-actions-popover {
    border: none;
    background: none;
}

.actions-popover {
    width: 100px;
    text-align: right;
    top: -12px;
    left: -100px;
    z-index: 1;
}