#navbar {
    background-color: #ffffff !important;
    left: 0 !important;
}

.brand-icon {
    float: left;
    height: 30px;
    margin: 5px;
    width: 33px;
}

.litopsearch {
    margin-top: 0px;
    padding-top: 0px;
    width: 450px;
    margin-left: 6px;
}

.dropdown-litopsearch > .dropdown-menu {
    padding: 5px;
}

.dropdown-litopsearch .fa-search {
    color: #515151 !important;
}

.navbar-top-links:first-child > li {
    border-right: none;
}

.searchtop {
    margin-bottom: 0px;
    margin-top: 5px;
}

.navbar-content {
    margin-left: 175px;
    padding-left: 0 !important;
    -webkit-box-shadow: inset -4px 0 0 0 #f47920;
    -ms-box-shadow: inset -4px 0 0 0 #f47920;
    box-shadow: inset -4px 0 0 0 #f47920;
}

.navbar-brand {
    width: 44px !important;
}

.navbar-header {
    width: 44px !important;
    background-color: #ffffff !important;
    left: 0 !important;
}

    .navbar-header::before {
        background-color: #fff;
    }

    .navbar-header > .navbar-top-links {
        padding-left: 5px;
        padding-right: 5px;
        cursor: pointer;
    }

#mainnav-toggle > i {
    color: #515151 !important;
}

#mainnav {
    background-color: #fff;
    height: 110%;
    border-right: 1px solid lightgray;
    border-right: 1px solid rgba(0,0,0,0.07);
}

    #mainnav .list-header {
        color: #f47920;
    }

#mainnav-menu {
    padding-top: 15px;
}

    #mainnav-menu a {
        color: #000 !important;
    }

    #mainnav-menu > .active {
        background-color: #f6f8fa;
    }

    #mainnav-menu ul .active-link a, .menu-popover .sub-menu ul .active-link a {
        background-color: #f47920;
        color: #FFF !important;
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none;
    }

    #mainnav-menu > ul > li:hover {
        color: #f47920 !important;
    }

#li-country-selector {
    display: none;
}

#content-container {
    padding-top: 40px !important;
}

    #content-container > .panel {
        margin: 15px;
    }

#aside {
    background-color: #fff;
}

#aside-container #aside .tab-content {
    padding-top: 0px;
}

#aside .pad-hor {
    color: #000;
}

#aside .list-group-item .text-lg {
   color: #f47920;
}

#aside-container #aside .nav-tabs.nav-justified > li {
    color: #000;
}

    #aside-container #aside .nav-tabs.nav-justified > li > a {
        padding-bottom: 5px;
    }

.img-balloon {
    background-image: linear-gradient(to right top, #e98f2e 10%, #f4b066 65%, #fbc02d 125%);
}

.bg-img {
    -ms-opacity: 1;
    opacity: 1;
}

#company-online-users > .list-group-item {
   color: #f47920 !important;
}

#dropdown-user > a.dropdown-toggle {
    width: 208px;
}

#dropdown-user .username {
    white-space: nowrap;
    -moz-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 140px;
    margin-left: 0;
}

@media (max-width: 992px) {
    .navbar-header:after {
        clear: none;
    }

    .navbar-content {
        margin-left: 44px !important;
    }
}

@media (max-width: 1200px) {
    #dropdown-user > a.dropdown-toggle {
        width: 55px;
    }

        #dropdown-user > a.dropdown-toggle img {
            -webkit-transform: none !important;
            -moz-transform: none !important;
            -ms-transform: none !important;
            -o-transform: none !important;
            transform: none !important;
        }

        #dropdown-user > a.dropdown-toggle .username {
            display: none;
        }

    .litopsearch {
        width: 360px;
    }
}

@media (max-width: 450px) {
    #li-country-selector {
        display: block;
    }

    #navbar-country-selector {
        display: none;
    }
}

#terms-text {
    text-align: justify;
}

#terms-text a {
    color: #3b8dd5;
}






.btn-hover-gosocket:hover {
    background-color: #f47920;
    border-color: #f47920;
    color: #ffffff;
}

.btn-hover-gosocket.disabled:hover {
    background-color: #f47920;
    border-color: #f47920;
    color: #ffffff;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    -ms-opacity: .65;
    opacity: .65;
}

.btn-gosocket,
.btn-gosocket:hover,
.btn-gosocket:focus {
    background-color: #f47920;
    border-color: #f47920;
    color: #ffffff;
}

.header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, rgba(255,104,0,1) 0%, rgba(255,104,0,1) 100%);
    color: white;
}

.flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: white;
}

/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}