html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

#canvas-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.details-form {
    text-align: center;
}

.details-form input {
    color: #165c89;
    padding: 12px 6px 12px 46px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border: 2px solid #105b8b;
    border-radius: 10px;
    background: #ffcd43;
    font-size: 16px;
    background-position: 10px;
    background-repeat: no-repeat;
    position: relative!important;
    height: 44px;
    min-height: 32px;
    width: 100%;
    max-width: 500px;
}

.details-form input::-webkit-input-placeholder {
    color: #eaaf2c;
    font-style: italic;
}


/* Firefox < 19 */

.details-form input:-moz-placeholder {
    color: #eaaf2c;
    font-style: italic;
}


/* Firefox > 19 */

.details-form input::-moz-placeholder {
    color: #eaaf2c;
    font-style: italic;
}


/* Internet Explorer 10 */

.details-form input:-ms-input-placeholder {
    color: #eaaf2c;
    font-style: italic;
}

.details-form .name {
    background-image: url('images/name_icon.png');
}

.details-form .email {
    background-image: url('images/email_icon.png');
}

.details-form .with {
    background-image: url('images/name_icon.png');
}

.details-form .date {
    background-image: url('images/date_icon.png');
}

.details-form .addition {
    max-width: 300px;
    background-image: url('images/plus_icon.png');
}

.section {
    white-space: nowrap;
    text-align: center !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.section h2 {
    position: relative!important;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 300;
    width: 100%;
    color: #105b8b;
    padding: 2px;
    cursor: default;
}

.section .button {
    position: relative!important;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 700;
    white-space: nowrap;
    background-color: #ffc114;
    border: 2px solid #105B8B;
    color: #105B8B;
    width: 220px;
    height: 100%;
    padding-bottom: 12px;
    padding-top: 12px;
    padding-left: 6px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 21px;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

.button i {
    font-size: 20px !important;
    margin-left: 12px;
}

.backBtn {
    position: relative !important;
    cursor: pointer !important;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #105B8B;
    color: #105B8B;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    max-width: 30px;
    max-height: 30px;
    margin-left: 5px;
    margin-right: 5px;
}

.backBtn:hover,
.button:hover {
    background-color: #105B8B;
    color: #ffc114;
}

.backBtn i {
    font-size: 23px !important;
    width: 26px;
    height: 26px;
}

.social-share {
    text-align: center;
    width: 100%;
    min-width: 144px;
}

.social-share .fa {
    position: relative !important;
    cursor: pointer !important;
    padding: 10px;
    font-size: 16px !important;
    width: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    margin-left: 6px;
    margin-right: 6px;
    border: 2px solid #ca471f;
    color: #ca471f;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

.social-share .fa:hover {
    background-color: #ca471f;
    color: #ffc114;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.25); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}