/*!
Theme Name: App
Theme URI: https://www.axuscreative.com
Author: Axus Creative
Author URI: https://www.axuscreative.com
Description: App
Version: 1.0.0
*/

* {
    margin: 0;
    padding: 0;
    color: #202124;
    font-size: 14px;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

.home h1 {
    text-align:center;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: 30px;
}

img {
    display: block;
    width: 100%;
}

strong {
    color: inherit;
}

a {
    display: inline-block;
    color: #009fca;
    text-align: center;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}

a:hover {
    text-decoration: underline;
}

a.button-secondary {
    border: none;
    margin: auto;
    outline: none;
    color: #009fca;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    display: inline-block;
    text-decoration: none;
    background-color: #ffffff;
    border: solid 1px #009fca;
    font-family: "Roboto", sans-serif;
}

.home {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: 100vw;
    max-height: 100vh;
    position: relative;
}

.home .site {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-height: 535px) {
    .home .site {
        overflow-y: scroll;
    }
}

.site {
    padding-top: 20px;
}

.home .logo {
    z-index: 1;
    margin-top: 80px;
}

.login {
    z-index: 1;
    width: 100%;
    margin: 20px auto;
    padding: 24px;
    max-width: 300px;
    border-radius: 6px;
    text-align: center;
    background-color: rgba(204, 204, 204, 0.75);
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.25);
}

.login a {
    display: block;
}

span.error {
    display: block;
    color: #eb3342;
    text-align: center;
    margin-bottom: 12px;
    font-family: "Roboto", sans-serif;
}

.overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    position: absolute;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.25);
}

video {
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    z-index: -1000;
    min-width: 150%;
    min-height: 150%;
    overflow: hidden;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 6px;
    border: none;
    outline: none;
    display: block;
    border-radius: 3px;
    margin-bottom: 12px;
    border: solid 1px #009fca;
    font-family: "Roboto", sans-serif;
}

button {
    border: none;
    margin: auto;
    color: #ffffff;
    outline: none;
    display: inline-block;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    background-color: #009fca;
    font-family: "Roboto", sans-serif;
}

.page-template-default .page-main {
    width: 100%;
    margin: auto;
    padding: 0 20px;
    max-width: 1300px;
}

.page-template-default h1 {
    width: 100%;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
}

.page-template-default .entry-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.page-template-default .logo {
    width: 100%;
    max-width: 200px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.page-template-default .logout {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.page-template-default .project {
    display: flex;
    flex-wrap: wrap;
}

.page-template-default .options {
    width: 50%;
    padding-right: 20px;
}

@media screen and (max-width: 767px) {
    .page-template-default .options {
        width: 100%;
        padding-right: 0;
    }
}

.page-template-default .pictures {
    margin-bottom: 20px;
}

.page-template-default .picture {
    display: none;
}

.page-template-default .picture.active {
    display: block;
}

.page-template-default .buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.page-template-default .external-links {
    display: flex;
    flex-direction: column;
}

.external-links a {
    min-width: 205px;
}

.page-template-default .details {
    width: 50%;
    padding-left: 20px;
}

@media screen and (max-width: 767px) {
    .page-template-default .details {
        width: 100%;
        padding-left: 0;
    }
}

.page-template-default .overview {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #202124;
}

.overview ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.overview li {
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
}

.details {
    margin-bottom: 20px;
}

.details h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 12px;
    font-family: "Roboto", sans-serif;
}

.details p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 12px;
    font-family: "Roboto", sans-serif;
}

.details p:last-child {
    margin-bottom: 0;
}

.home footer {
    width: 100%;
}

footer {
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.75);
}

footer div {
    margin: auto;
    max-width: 1300px;
    text-align: center;
}

footer p {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 6px;
    font-family: "Roboto", sans-serif;
}

footer p:last-child {
    margin-bottom: 0;
}

footer img {
    margin: auto;
    max-width: 120px;
}
