:root {
    --blue: #1B365D;
    --grey: #53565A;
    --red: #9E2A2B;
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    outline: none;
    box-sizing: border-box;
    font-family: 'Volvo Novum', sans-serif;
    margin: 0;
    color: var(--grey);
}

header {
    height: 75px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: white;
    cursor: pointer;
}

main {
    margin-top: 75px;
}

.hero {
    position: fixed;
    width: 60vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url("/assets/images/home.jpg");
    background-size: cover;
    background-position: center;
    border-right: solid 30px var(--blue)
}

aside {
    position: fixed;
    right: 0;
    top: 0;
    width: 40vw;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-hero {
    margin: 30px auto 20px auto;
    width: 60%;
    object-fit: contain;
    display: block;
}

aside * {
    text-align: center;
}

aside .main-content {
    width: 80%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

aside .title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    color: black;
    margin-bottom: 50px;
}

aside .subtitle {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

aside .pp {
    margin-bottom: 20px;
}

aside form {
    margin-top: 60px;
}

aside button, aside a, button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 18px;
    color: white;
    border: var(--blue) solid 1px;
    background-color: var(--blue);
    text-decoration: none;
    cursor: pointer;
}


#acces a {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 18px;
    color: white;
    border: var(--blue) solid 1px;
    background-color: var(--blue);
    text-decoration: none;
    cursor: pointer;
    display: inline;
    width: fit-content;
}

#acces {
    display: flex;
}
aside button:hover, aside a:hover, button:hover {
    background-color: white;
    color: var(--blue);
    text-decoration: none;
}

aside input {
    padding: 10px 0;
    border: none;
    border-bottom: solid 1px var(--grey);
    width: 80%;
    display: block;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 40px;
    font-size: 14px;
}

header img {
    height: 90%;
    object-fit: contain;
    object-position: left;
}

header > div {
    display: flex;
}

header a {
    text-decoration: none;
    color: var(--grey);
    margin-left: 25px;
}

header p {
    font-weight: 500;
}

main {
    padding: 25px;
}

.page-title {
    font-weight: 500;
    font-size: 22px;
    color: black;
}

.bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bar button {
    margin: 0;
}

.guest-row {
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 10px 0;
    font-size: 15px;
}

.guest-row.h {
    font-weight: normal;
    margin-bottom: 10px;
}

.guest-row .name {
    width: 15%;
}

.guest-row .firstName {
    width: 10%;
}

.guest-row .email, .guest-row .company, .guest-row .commercialContact {
    width: 20%;
}

.guest-row .commercialContact {
    width: 15%;
}

.guest-row .presentSaturday, .guest-row .presentSunday {
    width: 5%;
}

.guest-row .edit, .guest-row .delete {
    width: 7%;
    text-align: center;
    cursor: pointer;
}

.edit {
    color: var(--blue);
}

.delete {
    color: var(--red);
}

main form {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.left {
    width: 48%;
}

.right {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main input {
    padding: 10px 0;
    border: none;
    border-bottom: solid 1px var(--grey);
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 40px;
    font-size: 14px;
}

main .label {
    margin-bottom: 15px;
    font-weight: 500;
}

.data-selector {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.data-selector .round {
    border-radius: 1000px;
    border: solid 1px var(--blue);
    width: 20px;
    height: 20px;
    margin-right: 40px;
    background-color: white;
}

.data-selector .round.active {
    background-color: var(--blue);
}

.right button {
    width: 100%;
}

.add-button-mob {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
}

.guest-card {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f5f8fc;
}

.guest-card > p {
    display: flex;
    margin-bottom: 5px;
    font-weight: 500;
}

.guest-card .label {
    margin: 0;
    margin-right: 10px;
    font-weight: normal;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 15px;
}

@media screen and (max-width: 1024px){

    .hero {
        display: none;
    }

    aside {
        width: 100%;
        overflow-y: scroll;
    }

    aside .main-content {
        flex-grow: unset;
    }

    aside form {
        margin-top: 20px;
    }

    .logo-hero {
        margin-top: 2px;
    }

    header img {
        width: 50%;
    }

    header > div {
        flex-direction: column;
    }

    header > * {
        text-align: right;
    }

    .bar > div {
        display: none;
    }

    .add-button-mob {
        display: block;
    }

    .add-button-mob button {
        margin: 0;
    }

    main form {
        width: 100%;
        flex-direction: column;
    }

    .right, .left {
        width: 100%;
    }

    .guest-row {
        display: none;
    }

    .guest-card {
        display: block;
    }
}

form {
    width: 100%;
}