/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}

/*-------------------------
    Font
--------------------------*/

/* open-sans-300 - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('./Font/open-sans-v34-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''), url('./Font/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('./Font/open-sans-v34-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('./Font/open-sans-v34-latin-300.woff') format('woff'), /* Modern Browsers */
         url('./Font/open-sans-v34-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('./Font/open-sans-v34-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('./Font/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''), url('./Font/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('./Font/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('./Font/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('./Font/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('./Font/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/*-------------------------
    General Styles
--------------------------*/

a, a:visited {
    outline:none;
    color:#fff;
}

a:hover{
    text-decoration:none;
}

section, footer, header, aside{
    display: block;
}


/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    background-color:#efefef;

    width:95%;
    padding:30px;
    border-radius: 3px;

    margin:20px auto 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#drop{
    background-color: #dedede;
    width: 100%;
    padding: 0;
    margin: auto auto;
    border: 30px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;

    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

#drop a{
    background-color:#004A7F;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;

    -webkit-transition: background-color .35s ease-in;
    -moz-transition: background-color .35s ease-in;
    -o-transition: background-color .35s ease-in;
    -ms-transition: background-color .35s ease-in;
    transition: background-color .35s ease-in;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),
            0px 1px 3px 0px rgba(0,0,0,0.2);
}

#drop a:hover{
    background-color:#006EBC;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 -30px;
    border-top:1px solid #ededed;
    border-bottom:1px solid #efefef;
}

#upload ul li{
    background-color:#ededed;
    border-top:1px solid #ededed;
    border-bottom:1px solid #ededed;
    padding:15px;
    height: 52px;
    color: #222;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 5px;
    left: 100px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#333;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}

.working p {
    margin-left: -60px;
}

.privacy-content {
    margin: 10px 20px;
    text-align: justify;
}

.language-select {
    right: 20px;
    position: fixed;
    top: 15px;
}

.language-select a {
    color: #006ebc;
    cursor: pointer;
}

.privacy-content a {
    color: #006ebc;
}

.privacy-content h4 {
    margin-top: 30px;
    font-weight: 700
}

.privacy-content ol > li {
    margin-bottom: 15px;
}

    .privacy-content ol {
        margin: 15px;
    }

.privacy-content li > ul {
    margin-left: 15px;
}

    .privacy-content ul {
        list-style-type: square;
        margin: 15px;
    }

.error-content {
    background-color: lightgray;
    padding: 20px;
}

.version-info {
    position: fixed;
    bottom: 10px;
    color: #b8c7ce;
    font-size: 1rem;
    left: 20px;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

.sidebarLink {
    padding: 5px 5px 5px 15px !important;
}

.accountinfo {
    margin: 10px 0 10px 10px !important;
}

.sidebar-menu li.header {
    padding: 3px 3px 10px 15px !important;
}

.warning-text {
    margin: 0px 0px 10px 13px;
    font-size: 13px;
    color: #b94a48
}