
@media (min-width: 768px) {
    body {
        font-size: 1.5em;
    }
}

h2 {
    margin: 0;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
    color: #666666;
}

@media (min-width: 600px) {
    h2 {
        font-size: 2.2em;
        margin-left: 60px;
        text-align: left;
    }
}

fieldset {
    padding: 30px;
    background: #ececec;
    border-radius: 10px;
    border: none;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #c6c6c6;
}

@media (min-width: 768px) {
    fieldset {
        margin-left: 30px;
    }

        fieldset:before {
            content: "";
            position: absolute;
            display: block;
            width: 1px;
            height: 1px;
            border: 30px solid transparent;
            border-right: 30px solid #f7f7f7;
            left: -60px;
            top: 30%;
        }
}

label {
    color: #7b7;
    text-shadow: 1px 1px 1px #fff;
}

input, textarea {
    background: none;
    background-image: -webkit-linear-gradient(#fcfcfc 50%, #fff 50%);
    background-image: linear-gradient(#fcfcfc 50%, #fff 50%);
    background-size: 100% 3.6em;
    border: 1px solid #c6c6c6;
    padding: 7px 7px;
    border-radius: 3px;
    color: #7b7;
    
    /**/
}

    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #bbddbb;
    }

    input::-moz-placeholder, textarea::-moz-placeholder {
        color: #bbddbb;
    }

    input:-moz-placeholder, textarea:-moz-placeholder {
        color: #bbddbb;
    }

    input:-ms-input-placeholder, textarea:-ms-input-placeholder {
        color: #bbddbb;
    }

    input:focus, textarea:focus {
        outline: none;
        color: #fff;
        background: #7b7;
        background-image: -webkit-linear-gradient(#7ebe7e 50%, transparent 50%);
        background-image: linear-gradient(#7ebe7e 50%, transparent 50%);
        background-size: 100% 3.6em;
        border: 1px solid #68aa68;
    }

.ieSwitch input, .ieSwitch textarea {
    outline: inherit;
    background: white;
}

textarea {
    resize: none;
    overflow: auto;
}

#name, #email, #textarea {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    #name, #email {
        width: 240px;
    }
}

button {
    width: 100%;
    margin-top: 10px;
    padding: 5px 8px;
    border: none;
    background: none;
    font-size: 1.6em;
    color: #7b7;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    button:focus, button:hover, button:active {
        outline: none;
        background: #7b7;
        color: #fff;
        border-radius: 5px;
    }

    button:active {
        background: #f96;
    }

@media (min-width: 600px) {
    button {
        width: auto;
        float: right;
        margin: 10px;
    }
}

.form-height {
    height: 600px !important;
}

.top-space {
    margin-top: 10px;
}

.radio + .radio, .checkbox + .checkbox {
    margin-top: 10px !important;
}

.list-inline > li {
    margin-left: 10px;
    padding-left: 5px;
}

a.btn-icon-zipcode {
    position: absolute;
    right: 5px;
    padding: 5px 15px;
    margin-top: -32px;
}