/* reset annoying shit */
* {
    padding: 0;
    margin: 0;
    color: black;
}

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

ul {
    list-style: none;
}

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

body {
    height: auto;
    min-height: 100%;
    width: auto;
    display: block;
    box-sizing: border-box;
}

select {
    background-color: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    line-height: inherit;
}

input {
    font-family: inherit;
    font-size: inherit;
    background-color: transparent;
    border: 1px solid grey;
}

input[type='radio'] {
    margin: 5px;
}

input[type='radio'] + label {
    margin-left: 10px;
}

textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: inherit;
    border: none;
    cursor: pointer;
}

/* #region reusable */
.hidden {
    visibility: hidden;
}

.textLeft {
    text-align: left;
}

.textCenter {
    text-align: center;
}

.textRight {
    text-align: right;
}

.colorWhite {
    color: #ffffff;
}

.colorBlack {
    color: #000000;
}

.colorLightGreen {
    color: #8cad87;
}

.backgroundWhite {
    background-color: #ffffff;
}

.backgroundBlack {
    background-color: #000000;
}

.backgroundLightGreen {
    background-color: #8cad87;
}

.fontXL {
    font-size: 10vmin;
}

.fontL {
    font-size: 7.5vmin;
}

.fontM {
    font-size: 5vmin;
}

.fontS {
    font-size: 2.5vmin;
}

.fontXS {
    font-size: 1vmin;
}

/* #endregion */

.title {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* #region contents */
.contents {
    height: auto;
    padding: 32px;
}

@media (max-width: 539px) {
    .contents {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 540px) and (max-width: 999px) {
    .contents {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 1000px) {
    .contents {
        padding-left: 25%;
        padding-right: 25%;
    }
}

.map {
    width: 100%;
}

@media (max-width: 539px) {
    .map {
        height: 200px;
    }
}

@media (min-width: 540px) and (max-width: 999px) {
    .map {
        height: 400px;
    }
}

@media (min-width: 1000px) {
    .map {
        height: 600px;
    }
}

/* #endregion */

/* #region rsvp */
.rsvpButton {
    display:inline-block;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 32px;
    text-decoration: none;
    padding: 16px;
    border-radius: 16px 16px;
    cursor: pointer;
}

form#rsvps {
    display: flex;
    flex-direction: column;
}

form#rsvps div {
    display: flex;
    flex-direction: row;
}

form#rsvps *.fill-right {
    flex: 1;
    justify-content: flex-end;
}

form#rsvps div.members {
    display: flex;
    flex-direction: column;
}

form#rsvps div.members div.member {
    display: flex;
    flex-direction: column;
}

form#rsvps div.members div.member div {
    display: flex;
    flex-direction: row;
    width: 100%;
}

form#rsvps div.members div.member div.separator {
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #8cad87;
}

/* #endregion */