@font-face {
    font-family: Raleway;
    font-weight: normal;
    src: url('../fonts/raleway/Raleway-Medium.ttf');
}

@font-face {
    font-family: Raleway;
    font-weight: bold;
    src: url('../fonts/raleway/Raleway-Bold.ttf');
}

@font-face {
    font-family: Raleway;
    font-weight: 400;
    src: url('../fonts/raleway/Raleway-SemiBold.ttf');
}

@font-face {
    font-family: Satisfy;
    src: url('../fonts/satisfy/Satisfy-Regular.ttf');
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-in-from-bottom {
    from {
        height: 100vh;
    }

    to {
        height: 7rem;
    }
}

@keyframes shake {
    0% {
        margin-left: -1rem;
        /* margin-top: -.1rem; */
    }

    75% {
        margin-right: 1rem;
        /* margin-top: .1rem; */
    }

    100% {
        margin-right: 0rem;
        /* margin-top: 0rem; */
    }
}

@keyframes spotlight {
    0% {
        background-color: #000;
    }

    75% {
        margin-right: 1rem;
    }

    100% {
        margin-right: 0rem;
    }
}

.collapsed {
    visibility: collapse !important;
    display: none !important;
}

.slide-in-from-bottom {
    animation: slide-in-from-bottom 4s forwards ease;
    animation-delay: 1s;
}

.fullpage-background {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat no-repeat;
    background-attachment: fixed;
    /* background-image: url('/download2.php?id=1'); */
}

.background-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat no-repeat;
    /* background-attachment: fixed; */
    /* background-image: url('/download2.php?id=1'); */
}

.fade-in {
    animation: fade-in 1s;
    /* animation-delay: 1s; */
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    opacity: 0;
}

.animation-delay-1 {
    animation-delay: .5s;
}

.animation-delay-2 {
    animation-delay: 1.5s;
}

.animation-delay-3 {
    animation-delay: 3s;
}

.fade-in-fast {
    animation: fade-in 1s;
    animation-fill-mode: forwards;
    /* animation-timing-function: ease-in; */
    opacity: 0;
}

.shaking {
    animation: shake .1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 5;
    animation-timing-function: ease-out;
    animation-delay: .25s;
}

.z-index-1 {
    z-index: 1000;
}

body,
html {
    height: 100vh;
    /* font-family: "Raleway", Helvetica, Arial, sans-serif; */
}

nav {
    background-color: rgba(255, 255, 255, 1);
    z-index: 1000;
}

nav a {
    text-transform: uppercase;
    display: inline-block;
    margin: 0 .5rem;
    font-size: 10pt;
    text-decoration: none;
    color: inherit;
}

nav a:hover {
    color: orange;
}

.page-content {
    background-color: rgba(255, 255, 255, .7);
    box-shadow: 0 0 5px #000;
}

.copy-btn {
    position: absolute;
    top: .5rem;
    right: .5rem;
    font-size: 0.8rem;
    background: inherit;
    padding: .2rem;
}

.form-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.form-title h1 {
    line-height: 3.5rem;
    /* overflow: hidden; */
    white-space: break-spaces;
}

/* ###############################
	headline
   ##############################*/

.headline span {
    font-family: 'Satisfy';
}

/* .headline {
    text-transform: uppercase;
    font-weight: bold;
} */

.headline-sm {
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 575px) {

    .headline-sm {
        font-size: 14pt;
    }

    .headline {
        font-size: 18pt;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 576px) {

    .headline-sm {
        font-size: 20pt;
    }

    .headline {
        font-size: 22pt;
    }

    .headline div {
        max-width: 70%;
    }
}

@media (min-width: 1400px) {

    .headline-sm {
        font-size: 22pt;
    }

    .headline {
        font-size: 24pt;
    }
}

/* ###############################
	sign in
   ##############################*/

.signin-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: url('/img/room-2192484_1920.jpg');
    /* backdrop-filter: blur(10px); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat no-repeat;
    background-attachment: fixed;
    background-color: #000;
    transition-property: background-image;
    transition-duration: 1s;
}

.signin-dialog {
    border: 1px solid #000;
    /*#ff6a00;*/
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    padding: 1.5rem;
    width: 35rem;
    border-radius: 5px;
    background: #fff;
    min-width: 300px;
}

.signin-logo {
    text-align: center;
}

@media (max-width: 768px) {

    .signin-dialog {
        border-radius: 0;
    }
}

/* ###############################
	logo
   ##############################*/

.logo-line1 {
    text-transform: uppercase;
    display: block;
    font-size: 14pt;
    font-weight: 400;
    letter-spacing: .1rem;
    text-align: left;
}

.logo-line2 {
    text-transform: uppercase;
    display: block;
    font-size: 9pt;
    text-align: left;
}

.container.ql-editor {
    /* box-shadow: 0 0 3px #000;
    border: 1px solid #000; */
    /* background-color: #fff; */
    padding: 2rem 3rem;
    margin-bottom: 2rem;
}

/* h1 {
    color: orange;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0;
} */

.main-nav .nav-link {
    margin-bottom: 1rem;
    background-color: #fff;
    border-left: 6px solid orange;
    color: #000;
    text-transform: uppercase;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

.main-nav .nav-link:hover {
    color: orange;
}

.subtitle h1 {
    font-family: 'Satisfy';
}

.cookie-consent {
    display: block;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    background: rgba(30, 30, 30, .7);
    padding: 1rem;
    box-shadow: 0px 0px 4px white;
    color: white;
    border: 1px solid rgba(30, 30, 30, .7);
    border-radius: 4px;
    margin: 0 1rem 0 auto;
}

.cookie-consent:hover {
    background: rgba(30, 30, 30, 1);
    border: 1px solid white;
}


@media (max-width: 575px) {
    .cookie-consent {
        right: 0;
        left: 0;
        margin: 0;
    }
}