html, body, #wrapper {
    height:100%;
    color:#000;
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
}
/**
 * Wrapper.
 */
#wrapper {
    width:100%;
    padding: 20px;
    background-color: #fff;
    position:relative;
    box-shadow:none;
    box-sizing: border-box;
}

/**
 * Header.
 */
.header {
    margin-bottom: 20px;
    padding:0px;
    position:relative;
    background: transparent;
    height:auto;
}

.header h1 {
    font-family: 'Neue Helvetica W01', Helvetica, Arial, sans-serif;
    font-size: 29px;
    text-align: left;
    margin-top:0px;
}
h3, h4, a {
    transition: all .15s ease;
}


/**
 * Form.
 */
.form {
    font-size: inherit;
    margin-top:20px;
}

#form-wrapper {
    margin-top:30px;
}

.form input:not([type]),
.form input[type=date],
.form input[type=datetime-local],
.form input[type=email],
.form input[type=file],
.form input[type=number],
.form input[type=password],
.form input[type=search],
.form input[type=tel],
.form input[type=text],
.form input[type=time],
.form input[type=url],
.form textarea {
    padding: 5px 10px;
    height: 44px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 14px;
    box-sizing: border-box;
    margin-top: 40px;
    border:solid 1px black;
}

.form input:not([type]):focus,
.form input[type=date]:focus,
.form input[type=datetime-local]:focus,
.form input[type=email]:focus,
.form input[type=file]:focus,
.form input[type=number]:focus,
.form input[type=password]:focus,
.form input[type=search]:focus,
.form input[type=tel]:focus,
.form input[type=text]:focus,
.form input[type=time]:focus,
.form input[type=url]:focus,
.form textarea:focus {
    padding: 5px 10px;
    height: 44px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 14px;
    box-sizing: border-box;
    border:solid 1px black;
}

/* Chrome/Opera/Safari */
::-webkit-input-placeholder {
    font-size:22px;
    font-style: italic;
}

/* Firefox 19+ */
::-moz-placeholder {
    font-size:22px;
    font-style: italic;
}

/* IE 10+ */
:-ms-input-placeholder {
    font-size:22px;
    font-style: italic;
}

/* Firefox 18- */
:-moz-placeholder {
    font-size:22px;
    font-style: italic;
}

::placeholder {
    font-size:22px;
    font-style: italic;
}


input:-internal-autofill-selected {
    background-color: transparent !important;
    background-image: none !important;
}

label {
    padding-bottom: 2px;
}

/**
 * Multi select.
 */
.default-hide {
    display:none;
}

.ui-multiselect {
    position: relative;
    text-align: left;
    padding: 5px 20px;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    height: 53px;
    overflow: hidden;
    background: transparent;
    background-size: 30px 10px;
    transition: background-color 0.2s ease-out;
    margin-bottom:30px;
    box-sizing: border-box;
    border:solid 1px black;
}

.ui-multiselect span {
    font-size: 24px;
    line-height: 28px;
    width: 90%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
    font-style:italic;
}

.ui-multiselect span.ui-icon {
    transition: all 0.2s ease-out;
    background: url("../images/svg/icons/arrow-down.svg") no-repeat right 0px top 3px / 20px 20px;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    padding: 0;

}
.ui-multiselect.ui-state-active span.ui-icon {
    background: url("../images/svg/icons/cancel.svg") no-repeat right 0px top 3px / 20px 20px;
}
.ui-multiselect:focus,
.ui-multiselect:hover {
    outline: 0;
}
.ui-state-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.ui-multiselect-single .ui-multiselect-checkboxes input {
    position: absolute;
    top: auto;
    left: -9999px;
}

.ui-multiselect-single .ui-multiselect-checkboxes label {
    padding: 5px;
}

.ui-multiselect-header {
    margin-bottom: 3px;
    padding: 0 0 0 4px;
}

.ui-multiselect-header ul {
    font-size: 1em;
}

.ui-multiselect-header ul li {
    float: left;
    padding: 0 10px 0 0;
    display: none;
}

.ui-multiselect-header a {
    text-decoration: none;
}

.ui-multiselect-header a:hover {
    text-decoration: underline;
}

.ui-multiselect-header li.ui-multiselect-close {
    float: right;
    text-align: right;
    padding-right: 0;
    display: block;
}

.ui-multiselect-menu {
    display: none;
    position: absolute;
    z-index: 10000;
    text-align: left;
    border-top:0px;
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}

.ui-multiselect-optgroup {
    border-bottom:solid 1px black;
}

.ui-multiselect-checkboxes {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    height: inherit !important;
    max-height: 400px !important;
    background: white;
}

.ui-multiselect-checkboxes label {
    cursor: pointer;
    display: block;
    border: 1px solid transparent;
    padding: 6px 1px;
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
}

.ui-multiselect-checkboxes label input {
    display: none;
}

.ui-multiselect-checkboxes li {
    clear: both;
    padding: 4px 0 4px 11px;
    border-bottom: 1px solid #000;
    margin-bottom:0px;
    transition: all 0.2s ease;
}

.ui-multiselect-checkboxes li:last-child {
    border-bottom: 0;
}

.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label {
    text-align: center;
    font-weight: bold;
}

.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label a {
    display: block;
    padding: 3px;
    margin: 1px 0;
    text-decoration: none;
}

.ui-widget-header.ui-corner-all.ui-multiselect-header.ui-helper-clearfix {
    display: none;
}

.ui-corner-all input[type='checkbox']:not(:checked),
.ui-corner-all input[type='checkbox']:checked {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.ui-corner-all input[type='checkbox'] + span {
    line-height: 26px;
    font-size: 18px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ui-corner-all input[type='checkbox'] + span::before,
.ui-corner-all input[type='checkbox'] + span::after {
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 0;
    content: '';
}

.ui-corner-all input[type='checkbox'] + span::before {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #000;
    width: 20px;
    height: 20px;
    margin-top: 0px;
}

.ui-corner-all input[type='checkbox'] + span::after {
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    color: #000;
    font-size: 18px;
    content: "-";
    background: #000;
    margin-top: 0px;
}

.ui-corner-all input[type='checkbox']:hover + span::before {
    border: 1px solid #000;
}

.ui-state-hover input[type='checkbox'] + span::after {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    color: #000;
}

.ui-corner-all input[type='checkbox']:checked + span::before {
    border: 2px solid #000;
}

.ui-corner-all input[type='checkbox']:checked + span::after {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #000;
}

.ui-corner-all input[type='checkbox']:disabled + span,
.ui-corner-all input[type='checkbox']:disabled + span + p {
    opacity: .4;
    pointer-events: none;
}

/**
 * UI-Multiselect Optgoups.
 */
.ui-multiselect-optgroup > a {
    display: block;
    background: #fff;
    color:#000;
    padding:10px;
    font-size: 22px;
    font-weight: 700;
}

.ui-multiselect-optgroup > li {
    display: inline-block;
    padding-right: 40px;
    border-bottom: none;
}

#opt-in {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    width:100%;
}

#single-opt-in {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 2px;
    left: 0;
    border: 1px solid #000;
    width: 20px;
    height: 20px;
}

#single-opt-in:checked:after{
    position: absolute;
    width: 10px;
    height: 10px;
    content: "";
    background: #000;
    top: 4px;
    left: 4px;
}

#label-single-opt-in {
    color:black;
    vertical-align: top;
    font-size: 12px;
    line-height: 19px;
    position: relative;
    left: 30px;
    width: 90%;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor:pointer;
}

/**
 * Buttons.
 */
#send2friend-close-button,
#send2friend-submit-button {
    margin-top: 1em;
    overflow:auto;
}
.button, a.button {
    display: inline-block;
    margin: 20px auto;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 30px;
    text-transform: uppercase;
    border: 2px solid #000;
    box-shadow: none;
    transition: all .15s ease-in-out;
    color: #000;
    background-color: transparent;
}
.button:hover {
    background: #000;
}
/**
 * Parsley.
 */
.parsley-error {
    border: 1px solid #f00 !important;
}

.parsley-errors-list {
    color: #f00;
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 5px 0 10px 0;
}