html,
body{
    height: 100%;
}
body{
    background: rgb(28,43,72);
    background: linear-gradient(180deg, rgba(28,43,72,1) 70%, rgba(102,51,66,1) 100%);
    color: #fff;
    height: 100%;
}
body.dashboard p{
    max-width: none;
}
body.dashboard  .header{
    background: rgb(28,43,72);
}
body.dashboard #call-now-on-mobile-wrapper,
body.dashboard .header .logo{
    display: none;
}

body.dashboard nav ul li a,
body.dashboard nav ul li span{
    color: #fff;
}
body.dashboard .nav-menu{
    margin-top: 13px;
    display: block;
    cursor: pointer;
}
body.dashboard .nav-menu span{
    background: #fff;
}
body.dashboard .header{
    min-height: 50px;
    border-bottom: none;
}

body.dashboard .nav-container,
body.dashboard .main-nav,
body.dashboard .main-nav > ul,
body.dashboard .main-nav > ul > li{
    display: block;
    width: 100%;
}
body.dashboard .main-nav > ul > li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.dashboard .account-nav{
    display: none;
}
body.dashboard .nav-container:not(.is-active) {
    width: 100%;
    float: none;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.49, 0.99, 0.54, 0.98);
    -moz-transition: all 0.2s cubic-bezier(0.49, 0.99, 0.54, 0.98);
    -ms-transition: all 0.2s cubic-bezier(0.49, 0.99, 0.54, 0.98);
    transition: all 0.2s cubic-bezier(0.49, 0.99, 0.54, 0.98);
}

@media screen and (max-width: 700px){
    section {
        padding: 50px 10px;
    }
}

/**
 * Dashboard tables
 */
.dash-table-container{
    overflow-x: auto;
}
.dashboard .dash-table,
.dashboard .dash-table tr,
.dashboard .dash-table th,
.dashboard .dash-table td{
    border-collapse: collapse;
    border: none;
    text-align: right;
}
.dashboard .dash-table thead{
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dashboard .dash-table tr:nth-child(2n+1){
    background-color: rgba(255, 255, 255, 0.1);
}
.dashboard .dash-table tr:nth-child(2n){
    background-color: rgba(255, 255, 255, 0.125);
}



/**
 * BOTTOM NAVIGATION
 */
header{
    display: none;
}
#page-wrapper{
    position: fixed;
    top: 0;
    bottom: 100px;
    left: 0;
    right: 0;
    overflow-y: auto;
    max-width: 900px;
    margin: 0 auto;

    scrollbar-color: rgba(0,0,0,0.3) rgba(0,0,0,0.2);
    scrollbar-width: thin;

}
#page-wrapper::-webkit-scrollbar {
    width: 6px;
}
#page-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
#page-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}


#page-wrapper section{
    padding-top: 0;
    padding-bottom: 0;
}
#nav-buttons{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0 auto 0;
    padding: 10px 0 0;
    line-height: 0;
    max-width: 900px;
    border-top: 1px solid rgba(238, 238, 238, 0.1);
}
#nav-buttons:after{
    content: "";
    display: table;
    clear: both;
}
#nav-buttons li {
    width: 14%;
    float: left;
    list-style: none;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0.5;
}
#nav-buttons li.active{
    opacity: 1;
}
#nav-buttons li:not(:last-of-type) {
    border-right: 1px solid rgba(238, 238, 238, 0.1);;
}
#nav-buttons li:before{
    display: none;
}
#nav-buttons li a{
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 0 5px;
}
#nav-buttons li img{
    max-width: 50px;
    width: 100%;
}
#nav-buttons span{
    display: block;
    font-size: 14px;
    line-height: 1.5;
}
@media (max-width: 680px) {
    #nav-buttons li a{
        padding: 0 10px;
    }
    #nav-buttons span{
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    #nav-buttons span{
        font-size: 8px;
        line-height: 1;
    }
    #page-wrapper {
        bottom: 70px;
    }
}
.dashboard h1{
    margin: 50px 0 50px;
}
.dashboard .row{
    display: block;
}

.dashboard form label{
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}
.full-width{
    width: 100%;
}
.dashboard pre{
    background-color: transparent;
}






.dashboard input[type="text"],
.dashboard input[type="password"],
.dashboard input[type="email"],
.dashboard button[type="text"],
.dashboard button[type="email"],
.dashboard textarea {
    color: #fff;
    font-family: "CalibreReg", helvetica !important;
    letter-spacing: 0;
    line-height: 48px;
    padding: 0 10px;
    border: 1px solid #3d829a;
    background-color: rgba(255,255,255,0.05);
    border-radius: 15px;
    border-bottom-left-radius: 0;
}
.dashboard input[type="button"].bg-btn,
.dashboard input[type="submit"].bg-btn{
    border-radius: 20px;
    background-color: rgba(255,255,255,0.4);
    color: #e6e6e6 !important;
    font-family: "Calibre", helvetica, sans-serif !important;
    text-transform: none;
}
.dashboard form input:focus,
.dashboard form select:focus{
    outline-offset: 0;
    outline: none;
    border-color: #6dafc5;
}
.grecaptcha-badge { visibility: hidden; }


.bav-banner.success{
    background-color: #24943e;
}
.bav-banner.success h2
.bav-banner.success p{
    color: #808080;
}





.dashboard input[type="text"]:disabled,
.dashboard input[type="password"]:disabled,
.dashboard input[type="email"]:disabled,
.dashboard button[type="text"]:disabled,
.dashboard button[type="email"]:disabled,
.dashboard textarea:disabled,
.dashboard select:disabled{
    opacity: 0.5;
}