* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
}
html, body {
    height: 100%;
}
body {
    background-color: #eae8e7;
    background-image: url(../images/keyboard.png);
    background-repeat: no-repeat;
    background-position: top center;

    margin: 0;
    min-height: 100%;
    font-family: 'montserratregular';
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
}

h1 {
    font-size: 86px;
    font-family: montserratbold;
    color: #000;
    padding: 208px 0 20px;
}

h3 {
    color: #ff3d1d;
    font-size: 26px;
    font-weight: normal;
    padding: 25px 0 130px 0;
}
.main {
    min-height: 100%;
    margin-bottom: -50px;
}
.main:after {
  content: "";
  display: block;
  height: 20px;
}
.footer, .page-wrap:after {
    height: 35px;
    padding-top: 5px;
    margin-top: 15px;
    background-color: #000000;
    color: #7A7878;
    font-size: 13px;
    text-transform: capitalize;
}

.details-box {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 16px;
    margin-top: -60px;
}
.details-box p {
    color: #000000;
    font-size: 24px;
    display: inline-block;
    padding: 0 14px;
}
.switch-box {
    display: inline-block;
    margin: 0 auto;
    vertical-align: middle;
    padding: 20px 0;
}

/* SCHEDULE A CALL SWITCH */
.onoffswitch-checkbox { display: none;}
.onoffswitch-inner {
    display: block;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
    width: 200%;
}
.onoffswitch {
    -moz-user-select: none;
    display: inline-block;
    position: relative;
    width: 90px;
}
.onoffswitch-label {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    cursor: pointer;
    display: block;
    overflow: hidden;
}
.onoffswitch-inner::before, .onoffswitch-inner::after {
    box-sizing: border-box;
    color: white;
    display: block;
    float: left;
    font-family: Trebuchet,Arial,sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 27px;
    line-height:27px;
    padding: 0;
    width: 50%;
    text-transform:uppercase;
}
.onoffswitch-inner::before {
    content: "Yes";
    padding-right:13px;
    background-color: #ffffff;
    color: #333333;
}
.onoffswitch-inner::after {
    background-color: #2d3844;
    color: #ffffff;
    content: "No";
    padding-right: 23px;
    text-align: right;

}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left:0;
}
.onoffswitch-switch {
    background: #5DC0E1;
    border:none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    bottom: 0;
    display: block;
    margin: 0;
    position: absolute;
    right: 62px;
    top:-2px;
    transition: all 0.3s ease-in 0s;
    width: 30px;
    height:30px;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0;
}

/* END OF SCHEDULE A CALL SWITCH */

.input-fields{
    margin-top: 20px;
    margin-bottom: 20px;
}
.input-fields input {
    background-color: transparent;
    border-style: none;
    font-size: 15px;
    font-family: 'Arial';
    padding: 5px;
    width: 30%;
    margin: 0px 5px;
    text-align: center;
    border-bottom: 1px solid #666666;
}
input[type="submit"] {
    background-color: #ff3d1d;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-family: 'montserratbold';
    padding: 14px 0;
    width: 100%;
    margin: 22px 0 20px;
    text-transform: uppercase;
}
@media only screen and (max-width: 500px) {
    .input-fields input {
        display: block;
        max-width: 100%;
        width: 90%;
        margin: 10px auto;
    }
}
input:focus {
    outline: none;
}