@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;600&display=swap');
html{
    min-width: 1220px;
}
html, body {
    background-color: #fff;
    color: #403d38;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    height: 100vh;
    margin: 0;
}
a, a:active, a:focus, a:visited, a:target{
    color: inherit;
    text-decoration: none;
    outline: none;
}
h1{
    background: #ececec;
    padding: 20px;
    font-size: 1.7em;
}
h1 small{
    font-size: 0.6em;
}
h1, h2, h3, h4, h5{
    margin: 0;
}

header{
    border-bottom: 1px solid;
    background: black;
    color: white;
}
header .header-container{
    display: flex;
    justify-content: space-between;
    position: relative;
}
header .header-container>*{
    padding: 1em;
}
header .header-container>*:first-child{
    padding-left: 0;
}
header .header-container .header-left{
    display: flex;
    align-items: center;
}
header .header-container .header-left a{
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 1em;
    border-right: 1px solid;
}
main {
    padding-bottom: 8em;
}
#login-form{
    height:600px;
    display: flex;
    align-content: center;
}
#login-form h1{
    padding: 10px;
}
#login-form form{
    width: 380px;
    margin: auto;
    border: 1px solid;
}
#login-form form #login-form-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.67em;
}
#login-form form input{
    border: 1px solid;
}
#login-form form button{
    width: 100%;
    margin: 1.7em 0 0;
}
#change-password{
    margin-top: 6em;
}
.form-group{
    display: flex;
    flex-direction: column;
    margin: 0.3em 0;
    width: 100%;
    max-width: 400px;
}
.form-group input, .form-group select{
    padding: 0.5em;
}

button, input[type="submit"]{
    background: black;
    color: white;
    padding: 1em 2em;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}
button:hover, input[type="submit"]:hover{
    cursor: pointer;
}
input,select{
    padding: 0.6em;
    outline: none;
    border: 1px solid #bbb;
    border-radius: 3px;
    font-family: inherit;
}
.container{
    max-width: 1200px;
    margin: auto;
}

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    border-top: 4px solid #f292003b;
    animation: fadein 300ms ease-out;
}

@keyframes fadein{
    from{
        opacity: 0;
    }
}


table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table tr {
    border: 1px solid #ddd;
    padding: .35em;
}

table tbody tr:hover {
    background: #fffcf9;
}
table tbody tr[data-href]:hover {
    cursor: pointer;
}

table th,
table td {
    padding: 2em;
    text-align: left;
    position: relative;
}

table th {
    /*font-size: .85em;*/
    /*letter-spacing: .1em;*/
    /*text-transform: uppercase;*/
}

/*@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
}*/

.table-single-application{
    max-width: 800px;
}
.table-single-application td, .table-single-application th{
    padding: 0.7em;
}


ul.pagination{
    display: flex;
    padding: 0;
}
ul.pagination li{
    list-style-type: none;
    padding: 5px;
}
td[data-copy-field]{
    padding-right: 50px;
}
.btn-copy-field{
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px;
    margin: 4px;
    background: #f7941e1f;
    color: #f7941e;
}
.btn-copy-field-copied{
    animation: fadein 300ms;
}
.btn-copy-field-copied:after{
    content: 'Copied';
    opacity: 0;
    animation: fadeout 2s ease-out;
    background: white;
    color: black;
    position: absolute;
    padding: 6px;
    border: 1px solid black;
}
@keyframes fadeout{
    0%{
        opacity: 0;
    }
    5%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.menu-user{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-user ul li{
    padding: 0.67em;
    border-top: 1px solid;
}
.menu-user ul li:first-of-type{
    border-top: none;
}

.menu-user ul{
    list-style-type: none;
    padding: 0;
    background: white;
    color: #403d38;
    border: 1px solid;
    position: absolute;
    right: 0;
    top: 50%;
    transition: opacity 100ms ease-in;
    opacity: 0;
    transform: scaleY(0);
}
.menu-user:hover{
    background: #f7941e;
    cursor: pointer;
}
.menu-user:hover ul{
    opacity: 1;
    transform: scaleY(1);

}
.menu-user-anchor {
    display: flex;
    align-items: center

}
.menu-user-anchor i{
    border: 2px solid;
    border-radius: 50%;
    padding: 4px;
    height: 1em;
    width: 1em;
    display: flex;
    justify-content: center;
    margin-right: 0.33em;

}

#single-application h2{
    margin: 3em 0 0.3em;
    text-transform: uppercase;
    font-size: 0.9em;
}
input[type="submit"]{
    max-height: 100%;
    padding: 0.3em 1em;
    display: inline-block;
}
h2{
    margin-top: 3em;
}
.settings-table-row{
    display: flex;
    align-items: center;
    margin: 1em 0;
    width: 600px;
}
.settings-table-row>*{
    flex: 1;
    margin: 0 0.5em;
}
form table + button{
    margin:2em 0;
}
.alerts{
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation-duration: 4s;
    animation-name: bounce;
    z-index: 1;
    opacity: 0;
}
.alert{
    padding: 1em;
    border-radius: 6px;
    text-align: center;
    color: white;
    font-weight: bold;
    width: 200px;
    margin: 1em;
}
.alert-danger{
    background: #d61d00;
}
.alert-success{
    background: #f29200;
}

@keyframes bounce {
    0% {
        transform: translateY(80px);
        opacity: 1;
    }
    15% {transform: translateY(-4px);}
    25% {transform: translateY(0);}
    80% {opacity: 1;}
    100% {opacity: 0;}
}
.page-item.active{
    color: #f29200;
    font-weight: bold;
}
