.navbar-light {

    width:calc(100vw - 250px);
    position: fixed;
    top: 0;
    left: 250px;
    -webkit-box-shadow: 0px 0px 42px -9px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 42px -9px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 42px -9px rgba(0,0,0,0.35);
    padding: 0;
    background: #fff !important;
    z-index: 50;
}



.side-bar-btn{
    background: #fff;
    border-radius: 0;
    border: 0;
    border-right: 1px solid #1fb379;
    padding: 12px 10px;
    color: #1fb379;
    font-size: 14px;
    text-transform: uppercase;
}
.side-bar-btn:hover, .navbar-toggler:hover {
    color: #fff;
    background-color: #1ada8f;
    border-color: #1ada8f;
}
.btn-info:focus, .btn-info.focus {
    box-shadow: none;
}
.navbar-toggler {
    padding: 11px 15px;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-left: 1px solid #1fb379;
    color: #1fb379;
}
button:focus {
    outline: 0px dotted;
    outline: none;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #1fb379;
    border-bottom: 3px solid #1ada8f;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    height: 100vh;
    z-index: 999;
    background: #1ada8f;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 0px;
    background: #fff;
    margin-bottom: 10px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 65px;
}

#content.active {
    width: 100%;
}
.visibale-on-xs{
    display: none;
}
.sidebar-logo{
    width: 160px;
    display: block;
    margin: 0 auto;
    padding: 9px;
}
.publish-lbl{
    color: #5954c2;
}
.verified-lbl{
    color: #25da94;
}
.next-lbl{
    color: #fc602f;
}
.next-lbl:hover{
    color: #fc602f;
}
.id-clr{
    color: #afa5a6;
}
.unexpected-txt{
    font-size: 120px;
}
.heading-super{
    font-weight: 800;
}



/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */



.sidebar-menu .nav-item{
    padding: 5px 10px;
}
.sidebar-menu .nav-link {
    display: block;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: relative;
    -webkit-transition: all 200ms ease-in-out ;
    -moz-transition: all 200ms ease-in-out ;
    -o-transition: all 200ms ease-in-out ;
    transition: all 200ms ease-in-out ;
}
.sidebar-menu .nav-link .lnr{
    position: absolute;
    left: 22px;
    top: 11px;
    font-size: 16px;
}
.sidebar-menu .nav-link:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.78);
    color: #1ada8f;
    width: calc(100% + 10px);
    border-radius: 6px 0 0 6px;
}
.sidebar-menu .nav-link:focus {
    text-decoration: none;
    background: #1fb379;
    color: #fff;
    width: calc(100% + 10px);
    border-radius: 6px 0 0 6px;
}
.sidebar-menu .nav-link.active {
    text-decoration: none;
    background: #1fb379;
    color: #fff;
    width: calc(100% + 10px);
    border-radius: 6px 0 0 6px;
}


.top-menu{
    width: 100%;
}

.navbar-light .nav-link {
    padding: 0.9rem 1rem;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    border-left: 1px solid #e4e4e4;
}
.navbar-light .nav-link span{
    font-weight: 600;
}
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: #1fb379;
    border-bottom-color: #1fb379;
}

/*content styles*/

.form-boxes{
padding: 10px;
}
.form-boxes-inner{
    padding: 10px;
}

.title-btn {
margin-left: 10px;
}
.crop-inner-wrap {
    padding: 2% 20px 1%;
}

.comment-wrap{
    padding: 15px;
    background: #F3F3F3;
    border-radius: 8px;
    margin: 10px 0 6px;
}
.comment-wrap h5{
    margin: 0;
    font-size: 15px;
}
.comment-wrap small{
    color: #555;
}

.table-img{
    margin: 6px;
    border: 1.5px solid #959595;
    padding: 5px;
    border-radius: 5px;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
    cursor: not-allowed;
}
.img-wrap{
    padding: 15px;
}
li{
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    .visibale-on-xs{
        display: block !important;
    }
    .navbar-light {
        width:100vw;
        left: 0;
        z-index: 1000;
    }
    .side-bar-btn{
        z-index: 1000000;
    }
    #sidebar {
        top:46px;
        left: 0;
        height: calc(100vh - 56px);

    }
    .navbar-light .nav-link {
        padding: 0.9rem 2rem;
        border-top: 1px solid #1fb379;
        font-weight: 500;
        text-align: left;
    }
    .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
        color: #fff;
        border-color: #1ada8f;
        background: #1ada8f;

    }
}
