/* NEW YORK ROYAL COACH FEEDBACK FORM */

.feedback-page {
    width: 100%;
    padding: 40px 20px 60px;
    background: #fff;
    box-sizing: border-box;
}

.feedback-form-wrap {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    text-align: center;
}

.feedback-form-wrap h1 {
    margin: 0 0 16px;
    color: #111;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
}

.feedback-intro {
    margin: 0 0 14px;
    color: #555;
    font-size: 16px;
    letter-spacing: 1px;
}


/* FORM */

.feedback-form-wrap form {
    width: 100%;
}

.feedback-form-wrap input[type="text"],
.feedback-form-wrap input[type="email"],
.feedback-form-wrap textarea {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 8px 10px;

    background: #fff;
    border: 2px solid #ccc;
    color: #555;    
    font-size: 14px;
    box-sizing: border-box;
}

.feedback-form-wrap input[type="text"],
.feedback-form-wrap input[type="email"] {
    height: 36px;
}

.feedback-form-wrap textarea {
    min-height: 115px;
    resize: vertical;
}

.feedback-form-wrap input::placeholder,
.feedback-form-wrap textarea::placeholder {
    color: #777;
    opacity: 1;
}

.feedback-form-wrap input:focus,
.feedback-form-wrap textarea:focus {
    border-color: #79c843;
    outline: none;
}


/* PERMISSION */
.feedback-permission {
    width: 100%;
    margin: 14px 0 20px;
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 8px;
    align-items: start;
    box-sizing: border-box;
    text-align: left;
}

#permission {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 1px 0 0 0;
    border: 2px solid #79c843;
    background: #fff;
    border-radius: 0;
    flex: 0 0 18px;
    cursor: pointer;
    position: relative;
}

#permission:checked {
    background: #79c843;
}

#permission:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feedback-permission label {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color: #777;    
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
    box-sizing: border-box;
}


.feedback-recaptcha {
    width: 100%;
    margin: 22px 0;
    text-align: center;
}

.feedback-recaptcha .g-recaptcha {
    display: inline-block;
}


/* BUTTON */

.feedback-form-wrap button {
    padding: 11px 24px;
    margin: 0;
    border: 0;
    background: #79c843;
    color: #fff;  
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .7px;

    cursor: pointer;
}

.feedback-form-wrap button:hover {
    background: #559f28;
}


/* HONEYPOT */

.feedback-honeypot {
    position: absolute !important;
    left: -9999px !important;
}


/* MOBILE */

@media (max-width: 480px) {

    .feedback-page {
        padding-left: 15px;
        padding-right: 15px;
    }

    .feedback-form-wrap {
        max-width: 100%;
    }

}