body {
    font-family: "proxima-nova", sans-serif;
    text-align: center;
    font-size: 14pt;
    font-weight: 100;
    min-height: 500px;
    height: 100%;
    margin:0;
    padding:0;
    margin-bottom: 150px;
    clear: both;
    /*background: var(--page-bg-color);*/
}

pre {
    text-align: left;
}

h1 {
    font-weight: normal;
    padding: 10px;
}

h2 {
    font-weight: normal;
    padding: 10px;
}

h3 {
    font-weight: normal;
    padding: 10px;
}

.wrapper {
    padding-bottom: 75px;
}

/*
******************************************************************************
*    APP-BOX
******************************************************************************
*/
.app-box {
    padding: 0;
    background-color: var(--app-box-bg-color);
    border: 1px solid var(--app-box-border-color);
    -webkit-transition: -webkit-transform .25s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .25s cubic-bezier(.215,.61,.355,1);
    transition: -webkit-transform .25s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .25s cubic-bezier(.215,.61,.355,1);
    transition: transform .25s cubic-bezier(.215,.61,.355,1),box-shadow .25s cubic-bezier(.215,.61,.355,1);
    transition: transform .25s cubic-bezier(.215,.61,.355,1),box-shadow .25s cubic-bezier(.215,.61,.355,1),-webkit-transform .25s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .25s cubic-bezier(.215,.61,.355,1);
    padding: 30px;
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    border-radius: 1em;
}

.app-box .app-logo {
    margin-bottom:50px;
}

.app-box table {
    width: 100%;
    display: table;
}

.app-box table tbody {
    min-width: fit-content;
}

.app-box .continue {
    background: var(--button-bg-color);
    color: white;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    font-weight: 100;
    padding: 8px;
    letter-spacing: 10px;
    border-radius:  0.25em;
}

.app-box .marquee {
    margin: 15px;
}

.app-box .message {
    font-size: 12pt;
    max-width : 100%;
    word-wrap:  break-word;
    margin: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.app-box .cancel {
    text-align: center;
    padding: 15px;
}

/*
******************************************************************************
*    VIEWPORT
******************************************************************************
*/

.viewport {
    border: 1px solid var(--app-box-border-color);
    border-radius: 4px;
    overflow: auto;
    max-height: 500px;
    max-width: 90%;
    margin: 3%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 2%;
}

/*
******************************************************************************
*    FORMS & INPUTS
******************************************************************************
*/
form {}

input {
    width: 100% !important;
    border-radius: 4px;
    border: 1px solid var(--field-border-color);
}

label {
    line-height: 2;
    text-align: left;
    display: block;
    margin-bottom: 13px;
    margin-top: 20px;
    color: var(--label-text-color);
    font-size: 16px;
    font-weight: 200;
}

input[type="submit"] {
      background: var(--button-bg-color);
      color: var(--button-fg-color);
      text-transform: uppercase;
      border: none;
      margin-top: 40px;
      padding: 20px;
      font-size: 16px;
      font-weight: 100;
      letter-spacing: 10px;
}

input[type="submit"]:hover {
    background: var(--button-hover-color);
}

input[type="button"]:active,
input[type="submit"]:active {
    transition: 0.3s all;
    transform: translateY(3px);
    border: 1px solid transparent;
    opacity: 0.8;
}

input:disabled {
    opacity: 0.4;
}

input[type="button"]:hover {
    transition: 0.3s all;
}

input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
}


/*
******************************************************************************
*    GENERAL USE TABLE
******************************************************************************
*/
table.layout-table {}

table.layout-table .section-title {
    font-weight: bold;
    padding: 5px;
    padding-top : 15px;
    border-bottom: 1px solid var(--header-border-color);
}


table.layout-table th {
    text-align: left;
}

table.layout-table th.label {
    font-size: 12pt;
    font-weight: 100;
    display: inline-block;
    max-width: 200px;
    word-break: break-word;
}

table.layout-table td {
    text-align: left;
    padding: 0px;
}

table.layout-table td.odd {
    background: var(--td-odd-color);
}

table.layout-table td.even {
    background: var(--td-even-color);
}

table.layout-table td.field {
    font-size: 12pt;
}

table.layout-table td.link {
    font-size: 12pt;
}

table.layout-table td.value {
    font-size: 12pt;
    padding : 12px;
}

table.layout-table td.button {}

/*
******************************************************************************
*    BUTTON LAYOUT
******************************************************************************
*/
.button-layout {
    text-align: center;
    padding: 0px;
}

.button-layout .button {
    padding: 10px;
    height: 85px !important;
}

.button  a {
    width: 100% !important;
    color: var(--nav-link-color);
    text-decoration: none!important;
    padding: 15px !important;
}

.button a,
.button a:visited {
    color: var(--nav-link-visited-color);
    text-decoration: none!important;
}

.button a:hover {
    background: var(--button-hover-bg);
    color: var(--nav-link-hover-color);
    text-decoration: none!important;
}

.button .login {
    background: var(--button-bg-color);
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 100;
    padding: 8px;
    letter-spacing: 10px;
    border-radius:  0.25em;
    border: 1px solid var(--button-border-color);
}

/*
******************************************************************************
*    HEADER
******************************************************************************
*/

header {
    border-bottom: 1px solid var(--header-border-color);
    background: var(--header-bg-color);
}

header .logo {
    padding: 15px;
    padding-left: 30px;
}

header .header-nav {
    width: 50%;
}

.header-nav  a {
    color: var(--nav-link-color);
    text-decoration: none!important;
}

.header-nav a,
.header-nav a:visited {
    color: var(--nav-link-visited-color);
    text-decoration: none!important;
}

.header-nav a:hover {
    color: var(--nav-link-hover-color);
    text-decoration: none!important;
}

header .upper-nav {}
header .upper-nav .nav-content {}

/*
******************************************************************************
*    FOOTER
******************************************************************************
*/

.footer {
    font-size: 10pt;
    background-color: #eeeeee;
    padding: 10px;
    width: 100%;
    color: #303030;
    z-index: 100;
    border-top: 1px solid #e0e0e0;
}

.footer ul {
    text-align: center;
}
.footer ul li {
    display: inline-block;
    margin: 0 4px;
}
.footer ul li:not(:first-of-type) {
    margin-left: 0;
}
.footer ul li:not(:first-of-type)::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 4px;
    margin-right: 4px;
    background-color: black;
    border-radius: 50%;
}

.footer a {
    color: #303030;
}


/*
******************************************************************************
*    DROPDOWN PROFILE & LOGOUT BUTTON
******************************************************************************
*/
.table-responsive {
    word-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
}


table.dropdown-profile {
    width: 100%;
}

table.dropdown-profile td {
    padding: 5px;
}

td.profile-icon {
    width: 50px;
    padding: 5px;
}

td.profile-name {
    padding: 5px;
    padding-left:  15px;
}

th.profile-key {
    width: 30%;
    text-align: left;
}

td.profile-value {
    width: 70%;
    text-align: left;
}

.profile-menu {
    width:  300px;
    position:  absolute;
    left: -250px;
}

.dropdown-item {
    margin: 10px;
}

/*
******************************************************************************
*    USER PROFILE
******************************************************************************
*/
.profile-app-box {

    background-color: var(--dash-app-box-bg-color);
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    padding-top: 25px;
}

.profile-box {
    background-color: var(--dash-app-box-bg-color);
    border: 1px solid var(--dash-app-box-border-color);
    -webkit-transition: -webkit-transform .25s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .25s cubic-bezier(.215,.61,.355,1);
    transition: -webkit-transform .25s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .25s cubic-bezier(.215,.61,.355,1);
    transition: transform .25s cubic-bezier(.215,.61,.355,1),box-shadow .25s cubic-bezier(.215,.61,.355,1);
    transition: transform .25s cubic-bezier(.215,.61,.355,1),box-shadow .25s cubic-bezier(.215,.61,.355,1),-webkit-transform .25s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .25s cubic-bezier(.215,.61,.355,1);
    filter: drop-shadow(0 0.1rem 0.12rem rgba(0, 0, 0, 0.1));
    padding: 30px;
    margin: 15px;
    border-radius: 1em;
}
.profile-box .avatar {
    margin-bottom: 15px;
}

.profile-box .profile-row {
    max-width: 100%;
    padding: 10px;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--dash-app-box-border-color);
    font-size: 12pt;
}

.profile-box .profile-row .label {
    padding: 0;
    text-align: left !important;
    color: var(--label-text-color);
    font-weight: bold;
}

.profile-box img.profile-icon {
    border: 1px solid var(--dash-app-box-border-color);
    border-radius: 0.5em;
    max-width: 90%;
}

.profile-box .verified {
    background-image: url("../img/verified.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 35px;
}

.profile-box .unverified {
    background-image: url("../img/unverified.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 35px;
}

/*
******************************************************************************
*    SCREEN 640px and smaller
******************************************************************************
*/
@media only screen and (640px >= width) {
    .profile-app-box {
        /*border: 1px solid red;*/
        max-width: 100%;
        padding: 5px;
    }
    .profile-box {
        padding: 10px;
        margin: 5px;
    }
    .profile-box img.profile-icon {
        max-width: 95%;
    }
    .app-box {
        max-width: 100%;
    }
}

/*
******************************************************************************
*    SCREEN betwen 640px and 768px
******************************************************************************
*/
@media only screen and (768px >= width > 640px) {
    .profile-app-box {
        /*border: 1px solid blue;*/
        max-width: 75%;
    }
    .app-box {
        max-width: 65%;
    }
}

/*
******************************************************************************
*    SCREEN between 769px and smaller than 1024px
******************************************************************************
*/
@media only screen and (1024px >= width > 768px) {
    .profile-app-box {
        /*border: 1px solid red;*/
        max-width: 65%;
    }
    .app-box {
        max-width: 55%;
    }
}

/*
******************************************************************************
*    SCREEN between 1025px and smaller than 1280px
******************************************************************************
*/
@media only screen and (1280px >= width > 1024px) {
    .profile-app-box {
        /*border: 1px solid blue;*/
        max-width: 55%;
    }
    .app-box {
        max-width: 45%;
    }
}

/*
******************************************************************************
*    SCREEN larger than 1280px
******************************************************************************
*/
@media only screen and (width > 1280px) {
    .profile-app-box {
        /*border: 1px solid red;*/
        max-width: 45%;
    }
    .app-box {
        max-width: 35%;
    }
}

/*
******************************************************************************
*    ROOT
******************************************************************************
*/
:root {
    --page-bg-color : #fff;
    --offset-bg-color : #eee;
    --header-border-color : #f0f3f7;
    --header-bg-color : #fff;
    --app-box-bg-color : #fff;
    --app-box-border-color : #f0f3f7;
    --dash-app-box-bg-color : #fff;
    --dash-app-box-border-color : #f0f3f7;
    --button-bg-color : #303030;
    --button-fg-color :  #fff;
    --button-hover-bg:  #fff;
    --button-hover-color:  #000000;
    --button-border-color:  #303030;
    --label-text-color: #42526e;
    --field-border-color: #b3bac5;
    --nav-link-color: #303030;
    --nav-link-visited-color: #303030;
    --nav-link-hover-color: #000;
    --td-odd-color : #fff;
    --td-even-color : #eee;
}