/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
/* Off-canvas sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #464851;
    z-index: 1040;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    padding: 20px;
}
.mobile-sidebar li a{
    color:  #9ba0b3 !important;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar .close-sidebar {
    background: none;
    border: none;
    font-size: 26px;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1039;
    display: none;
}

.mobile-sidebar-overlay.active {
    display: block;
}

/* Hide original navbar on mobile */
@media (max-width: 767px) {
    #primary-nav {
        display: none !important;
    }
}
.nav {
    padding-left: 0px;
    padding-right: 40px !important;
    margin-bottom: 0;
    list-style: none;
}

.domain-checker-container {
    margin: 20px 0;
    padding: 0;
    background-color: #ffce44;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));
    background: -webkit-linear-gradient(top, #3891f2, #464851) !important;
}
