html { width: 100%; height:100%; overflow:hidden; }

body { 
	width: 100%;
	height:100%;
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
	background: #092756;
	background: -moz-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%),-moz-linear-gradient(top,  rgba(57,173,219,.25) 0%, rgba(42,60,87,.4) 100%), -moz-linear-gradient(-45deg,  #670d10 0%, #092756 100%);
	background: -webkit-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), -webkit-linear-gradient(top,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), -webkit-linear-gradient(-45deg,  #670d10 0%,#092756 100%);
	background: -o-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), -o-linear-gradient(top,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), -o-linear-gradient(-45deg,  #670d10 0%,#092756 100%);
	background: -ms-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), -ms-linear-gradient(top,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), -ms-linear-gradient(-45deg,  #670d10 0%,#092756 100%);
	background: -webkit-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), linear-gradient(to bottom,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), linear-gradient(135deg,  #670d10 0%,#092756 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3E1D6D', endColorstr='#092756',GradientType=1 );
    color: #fff;
    font-size: 12.6px;
}

ul.nav-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    display: flex;
}

li.nav-item  a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
    font-size: inherit;
}

.fill-to-the-left{
    margin-left: auto;
}

/* Change the link color to #111 (black) on hover */
li.nav-item  a:hover {
    background-color: #111;
}

.container{
    width: auto;
}

@media (max-width:500px) {  
    li.nav-item  a {
        padding: 7px 8px; 
        font-size: small;
    }    
}

.scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
    background-color: #F5F5F5;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.scrollbar::-webkit-scrollbar
{
	width: 8px;
}

.scrollbar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

.no-margin {
    margin: 0px;
}

.no-padding {
    padding: 0px;
}

.pull-right{
    float: right;
}

h1{
	padding: 0px 5px
}

.userProfile-form-input{
    margin: 5px 0px;
}

.userProfile-messages{
    color: burlywood;
    display: block;
}

table {
    border-radius: 3px;
    background-color: #fff;
    margin: auto;
    width: 100%;
}

tbody {
    text-align: left;
    color: #2c3e50;
}

th {
    background-color: #42b983;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

td {
    background-color: #f9f9f9;
}

th, td {
    padding: 4px 2px;
}

th.active {
    color: #fff;
}

th.active .arrow {
    opacity: 1;
}

.content{
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 1px;
    height: calc(100vh - 60px);
}
.content-no-top-bar{
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 1px;
    height: calc(100vh - 10px);
}

select{
    color: black;
}

.main-title{
    padding-left: 15px;
}

.language-option{
    display: flex;
    align-items: center;
}

.language-option input[type=radio]{
    width: auto;
    margin: 0px;
}
.language-option .flag-icon{
    margin: 0px 5px;
}
.user-profile-main-form{
    margin: 2px;
}