/* HTML */
/* ELEMENTS */
* {
    box-sizing: border-box;
}
html {
    color: #001C43;
    font-size: 62.5%;
    font-family: "Open Sans", Arial;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 0.875em;
    background: #e8e8e8;
}
img {
    border: 0;
    height: auto;
    max-width: 100%;
    margin-bottom: 1.5em;
}
h1,
p {
    margin: 0;
    padding: 0;
    line-height: 150%;
    font-family: 'Open Sans', Arial;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #001c43;
}
/* CUSTOM */
/* CLASSES */
.wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    max-width: 960px;
}
.wrapper:after {
    clear: both;
    content: "";
    display: table;
}
.inviteBlock--container {
    width: 40%;
    min-width: 350px;
    height: auto;
    padding: 3em;
    margin: 4em auto;
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px #a1a1a1;
    text-align: center;
    background: linear-gradient(to bottom, #e6f1ff 100px, #FFFFFF 100px);
}
.inviteBlock__content p {
    font-size: 14px;
}
h1.inviteBlock__title {
  font-family: 'Open Sans', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #001c43;
  margin: 1rem;
}
/* RESPONSIVE */
/* MEDIA QUERIES */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .inviteBlock--container {
        width: 90%;
        margin: 7em auto;
    }
}
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
      .inviteBlock--container {
        width: 90%;
        margin: 7em auto;
    }
}
.button-bar {
    text-align: center;
}
.button {
    padding: 7px 12px 8px;
    margin-top: 1rem;
    color: #056DFF;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: normal;
    font-family: 'Open Sans', Arial;
    cursor: pointer;
    border: 1px solid #056DFF;
    outline: 0;
    background-color: #D6E8FF;
    background-image: none;
    width: 252px;
    height: 36px;
}
a.button {
    line-height: 32px;
    margin-top: 1em;
}
.submitButton {
    color: #FFFFFF;
    background-color: #056DFF;
    background-image: none;
}
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.notifyButton:disabled {
    background-color: #ffffff;
}
.responseMessage {
    width: 160px;
    height: 40px;
    margin-top: 1rem;
}
.rectangle--container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rectangle {
    width: 80px;
    height: 1px;
    background-color: #d3d3d3;
    margin: 2rem;
}
.RSVPIcon {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: 49%;
}
.Yes {
    object-position: 5%;
}
.No {
    object-position: 93%;
}
.mandatoryMark {
    color: red;
}
#errorTitle {
    margin-top: 120px;
}
