.dropdown-menu > li > form > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.newJumbotron {
    background-color: white;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 1vh;
    padding-bottom: 1vh;
    min-height: calc(100vh - 51px);
}

.avatar {
    vertical-align: middle;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.client-logo {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    margin-bottom: 25px;
    background-position: center center;
    border-radius: 50%;
}

@media only screen and (max-device-width : 1000px) {
    .form-control.input-sm {
        width: 300vw
    }

    .search-bar {
        margin-left: -2%;
        width: 100%;
    }

    label {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .navbar-collapse.collapse {
        display: none !important;
    }

        .navbar-collapse.collapse.in {
            display: block !important;
        }

    .navbar-header .collapse, .navbar-toggle {
        display: block !important;
    }

    .navbar-header {
        float: none;
    }
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #357D83; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 90%;
}

/*Profile Picture circle*/
.circle {
    border-radius: 1000px !important;
    overflow: hidden;
    width: 120px;
    height: 120px;
    border: 8px solid rgb(250, 250, 250, 0.7);
    top: 72px;
    margin-left:auto;
    margin-right:auto;
}