@font-face { 
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/merriweather/v22/u-4m0qyriQwlOrhSvowK_l5-eRZDf-LVrPHpBXw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/merriweather/v22/u-4m0qyriQwlOrhSvowK_l5-eRZKf-LVrPHpBXw.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/merriweather/v22/u-4m0qyriQwlOrhSvowK_l5-eRZBf-LVrPHpBXw.woff2) ('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s//v22/-4m0qyriQwlOrhSvowK_l5-eRZAf-LVrPHpBXw.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/merriweather/v22/u-4m0qyriQwlOrhSvowK_l5-eRZOf-LVrPHp.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

::selection {
    color: #fff;
    background: #e85494;
}

::-webkit-input-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

:-ms-input-placeholder {
    color: #ccc;
}

input:-moz-placeholder {
    color: #ccc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.6;
    background: transparent;
    font-family: 'Gibson', "Helvetica Neue", Arial, sans-serif;
}

form {
    position: relative;
    max-width: 40em;
    margin: 1em auto 0;
    display: flex;
    flex-wrap: wrap;
}

p {
    position: relative;
    margin: 0 0 .5em;
    line-height: 1.3;
    color: #f5a1bb;
    text-transform: uppercase;
    font-size: 1em;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

field group {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 1em auto;
}



/* INPUTS */
input[type="text"],
select {
    appearance: none;
    border: medium none;
    width: 100%;
    background: rgba(255,255,255,.2);
    font-family: 'Gibson', "Helvetica Neue", Arial, sans-serif;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 100%;
    margin: 0;
    border: 1px solid #E9689F;
    color: #ffffff;
    padding: 1em 2em 1em 7.75em;
    border-radius: 10rem;
    height: 60.31px;
}

input[type="text"]:hover,
select:hover {
    border-color: transparent;
    background: rgba(255,255,255,.2);
    outline: 0;
}

input[type="text"]:focus,
select:focus {
    outline: 0;
    border-color: transparent;
    background: rgba(255,255,255,.2);
    box-shadow: 0 13px 24px -11px rgb(0 0 0 / 20%), 0 0 0 3px rgb(232 84 148 / 20%) inset;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0;
}

select {
    padding-right: 2.75em;
}

label {
    top: 1em;
    left: 1.2em;
    font-weight: normal;
    color: #ffffff !important;
}

form.form p label {
    color: #ffffff !important;
}

.description {
    display: none;
}


.form-field.first_name, .form-field.last_name{
    display: inline-block;
    width: 100%;
}
@media(min-width: 37.5em){
    .form-field.first_name, .form-field.last_name{
        display: inline-block;
        width: calc(50% - .5rem);
    }
    .form-field.last_name{
        margin-left: 1rem;
    }
}

.field-label {
    text-align: left;
    margin-bottom: .125em;
    position: absolute;
    top: 1.3rem;
    left: 1.5rem;
}

.form-field {
    position: relative;
    width: 100%;
    padding: 0;
    text-transform: none;
    font-weight: normal;
    margin: 0 0 .4375em;
}


    .form-field {
        margin: 0 0 1.3em;
        
    }

.form-field:before {
    display: none;
}

.pd-hidden{
    display: none;
}

.email{
    margin-top: -.25rem;
}

.email input{
    padding-left: 5.5em;
}

/* SELECT */
.pd-select {
    position: relative;
}

.pd-select:before {
    display: block;
    content: '';
    border-color: #70757a transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    width: 0;
    height: 0;
    bottom: 23px;
    right: 1.3em;
    position: absolute;
}



/* RADIO */
.pd-radio .field-label {
    margin-bottom: 0;
}

.pd-radio .value {
    display: block;
    text-align: left;
    margin-top: .25em;
}

.pd-radio .value input+label {
    margin-left: .5em;
}



/* CHECKBOX */
.pd-checkbox {
    text-align: left;
    
    
}
@media(min-width:31.25em ){
    .pd-checkbox {
        display: flex;
        justify-content: center;
    }
}

.pd-checkbox label {
    cursor: pointer;
}

.pd-checkbox .value {
    order: 1;
}

.pd-checkbox .value label {
    position: initial;
    margin-left: .5em;
}

.pd-checkbox .value span:not(:only-child):first-child {
    margin-top: .5em;
}

.pd-checkbox .field-label {
    position: initial;
    order: 2;
    opacity: 1;
    padding-left: 1.25em;
    display: block;
    margin-bottom: 0;
}

.value span {
    display: block;
}
.value span + span{
    margin-top: .5em;
}

.value span:only-child {
    position: absolute;
    top: 0;
}



/* TEXTAREA */
.pd-textarea {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pd-textarea label {
    position: initial;
    margin-bottom: .25em;
}

.pd-textarea textarea {
    width: 100%;
    height: 8em;
    resize: vertical;
}

.pd-textarea textarea {
    appearance: none;
    border: medium none;
    width: 100%;
    background: #E9689F;
    font-family: 'Gibson', "Helvetica Neue", Arial, sans-serif;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 100%;
    margin: 0;
    padding: .9em .9em .9em 0;
    border: 1px solid #E9689F;
    color: #ffffff;
    padding: 1em 1.3em;
    border-radius: 3px;
}

.pd-textarea textarea:hover {
    background-color: #E9689F;
    border-color: #E9689F;
    outline: 0;
}

.pd-textarea textarea:focus {
    outline: 0;
    border-color: #E9689F;
    background: #E9689F;
    box-shadow: 0 13px 24px -11px rgb(0 0 0 / 20%), 0 0 0 3px rgb(232 84 148 / 20%) inset;
}



/* SUBMIT */
.submit {
    display: block;
    position: initial;
    display: block;
    border: none;
    padding: 0;
    background-color: transparent;
    color: #e85494;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .9em;
    margin: 1em auto;
    -webkit-transition: .2s;
    transition: .2s;
    top: 0;
    right: 0;
    margin: 0;
    width: 100%;
}
@media(min-width: 32.5em) {
    .submit{
        display: inline-block;
    }
}


input[type="submit"] {
        

    position: relative;
    display: block;
    overflow: hidden;
    padding: 1.55em 3.4em;
    margin: auto;
    border: 1px solid #e85494;
    border-radius: 20em;
    background: 0 0;
    box-shadow: none;
    font-family: 'Gibson', "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: .8em;
    line-height: 1.3;
    letter-spacing: .05em;
    color: #e85494;
    cursor: pointer;
    -webkit-transition: .3s cubic-bezier(.86, 0, .07, 1);
    transition: .3s cubic-bezier(.86, 0, .07, 1);
    cursor: pointer;
    width: 100%;
    background: #ffffff;
}


@media(min-width: 31.25em) {
    input[type="submit"] {
        width: auto;
        font-size: 1em;
        padding: 1.4em 3.4em;
    }
}

.submit:before {
    display: none;
}

input[type="submit"]:hover {
    outline: 0;
        background: #ffffff;

    /* box-shadow: 0 7px 22px rgb(0 0 0 / 15%); */
   color: #e85494;
}

input[type="submit"]:focus {
    outline: 0;
        background: #ffffff;

    color: #e85494;
    /* box-shadow: 0 12px 42px rgb(0 0 0 / 25%) */
}



/* ERRORS */
.errors {
    display: none;
}

.error {}

.error input {
    border-bottom: 1px solid white;
}

.error.form-field {
    position: relative;
    margin-bottom: 3rem;
}

.error.form-field:after {
    content: 'This field is required';
    color: white;
    position: absolute;
    bottom: -1.5rem;
    left: .375rem;
    width: 100%;
    text-align: left;
    font-size: .8rem;
}

.error.no-label {
    display: none;
}



/* REQUIRED */
.required label:after {
    content: '*';
    margin-left: .125rem;
}



/* THANK YOU */
.thank-you {
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.thank-you:before {
    content: "";
    display: block;
    height: 1px;
    background: #ffffff;
    width: 1.5em;
    margin: 3em 0;
    clear: both;
    margin: 1em auto;
    background: #f5a1bb;
}



/* AUTOFILL */
input:-webkit-autofill {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    -webkit-text-fill-color: #E9689F;
    background: none;
    -webkit-box-shadow: 0 0 0px 1000px #E9689F inset;
}



/* DATEPICKER */
.ui-datepicker {
    max-width: 40em;
    background: #f0f0f0;
    background: #fff;
    padding: .8em;
    display: none;
    box-shadow: 0 11px 45px rgba(0, 0, 0, .1);
    font-size: .95em;
    z-index: 20 !important;
    border: 1px solid #cecece;
    border-radius: 3px
}

.ui-datepicker table {
    border: none;
    margin-bottom: 0
}

.ui-datepicker td,
.ui-datepicker th {
    padding: 0;
    text-align: center;
    border: none;
    text-transform: uppercase;
    font-size: .9em;
    background: 0 0
}

.ui-datepicker select {
    background: url(/images/select-bg.png) no-repeat right
}

.ui-datepicker .ui-state-default {
    padding: .7em 1.3em;
    display: block;
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out
}

.ui-datepicker a.ui-state-default {
    color: #ffffff
}

.ui-datepicker a.ui-state-default:hover {
    background: #e85494;
    color: #fff
}

.ui-datepicker tr:nth-child(2n) td {
    background: 0 0
}

.ui-datepicker th {
    font-weight: 400;
    color: #999;
    padding: 0 0 1em
}

.ui-datepicker td,
.ui-datepicker tr:last-child td {
    border: 1px solid #e5e5e5
}

.ui-datepicker tr:hover td {
    background: 0 0
}

.ui-datepicker a.ui-state-active,
.ui-datepicker a.ui-state-active:hover {
    background: #e85494;
    color: #fff
}

.ui-datepicker .ui-datepicker-other-month,
.ui-datepicker tr:last-child .ui-datepicker-other-month {
    border: none
}

.ui-datepicker-next,
.ui-datepicker-prev {
    display: inline-block;
    text-indent: -5000px;
    overflow: hidden;
    text-align: left;
    height: 10px;
    vertical-align: middle;
    width: 10px;
    background-image: url('/images/sprites.png?v=new Date().getTime()');
    background-repeat: no-repeat;
    background-position: -291px -288px;
    position: absolute;
    top: .8em;
    left: 4.6em;
    cursor: pointer;
    height: 2.3em;
    width: 2em
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min-device-pixel-ratio:2) {

    .ui-datepicker-next,
    .ui-datepicker-prev {
        background-image: url('/images/sprites@2x.png?v=new Date().getTime()');
        background-size: 600px
    }
}

.ui-datepicker-next.ui-state-disabled,
.ui-datepicker-prev.ui-state-disabled {
    opacity: .2;
    cursor: auto
}

.ui-datepicker-next {
    right: 4.6em;
    left: auto;
    background-position: -237px -288px
}

.ui-datepicker-title {
    text-align: center;
    font-weight: 700;
    padding: 0 2em 1.3em
}

.ui-datepicker-month,
.ui-datepicker-year {
    display: inline-block;
    width: 6.5em;
    margin: 0 2%;
    background: url(/images/select-icon.png?v=1) no-repeat right top 50%;
    padding: .6em .9em;
    text-transform: uppercase;
    font-size: .9em;
    font-weight: 700
}

.ui-state-disabled {
    color: #e5e5e5
}

