/**
 * Typography.
 */
h1, h1:first-child {
    padding:0px;
    text-align: center;
}

a {
    font-family: 'CHMedia';
    font-style: normal;
    color: #003494;
    text-decoration: underline;
    cursor:pointer;
}

body, h1, h2, h3, h4, h5, li, p, span, label, input, textarea, a, a:hover {
    color: #003494;
}

header {
    background-color: white;
    text-align: center;
}

#form-wrapper {
    margin:0px 60px;
}

/**
 * Button.
 */
.submit {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: normal;
    text-decoration: none;
    align-items: center;
    background: transparent;
    border: 2px solid #003494;
    border-radius: 3rem;
    color: #003494;
    display: flex;
    height: 59px;
    justify-content: center;
    line-height: 1;
    padding: 15px 30px;
    text-align: center;
    transition: transform .1s ease-in-out,color .1s ease-in-out,background .1s ease-in-out,opacity .1s ease-in-out;
    width: -moz-fit-content;
    width: fit-content;
    margin:0px auto;
}
.submit:hover {
    background: #003494;
    color: #fff;
    transform: scale(1.035);
    cursor: pointer;
}
.button[disabled] {
    opacity: 0.5;
    pointer-events: none;
}


/**
 * Form.
 */
.send2friend #step-2 label {
    display: block;
    margin-bottom:10px;
    margin-top:30px;
}

.send2friend .form input:not([type]),
.send2friend .form input[type=date],
.send2friend .form input[type=datetime-local],
.send2friend .form input[type=email],
.send2friend .form input[type=file],
.send2friend .form input[type=number],
.send2friend .form input[type=password],
.send2friend .form input[type=search],
.send2friend .form input[type=tel],
.send2friend .form input[type=text],
.send2friend .form input[type=time],
.send2friend .form input[type=url] {
    height:59px;
    border-radius:76px;
    background-color: #F2F4F9;
    width:100%;
    border:solid 2px #F2F4F9;
    transition: border-color .2s ease-in-out;
    color:#003494;
    padding:18px 25px;
    margin-bottom:25px;
}

.send2friend .form textarea {
    border-radius:2.2rem;
    background-color: #F2F4F9;
    width:100%;
    border:solid 2px #F2F4F9;
    transition: border-color .2s ease-in-out;
    color:#003494;
    padding:18px 25px;
    margin-bottom:25px;
}

.form input:not([type]):hover,
.form input[type=date]:hover,
.form input[type=datetime-local]:hover,
.form input[type=email]:hover,
.form input[type=file]:hover,
.form input[type=number]:hover,
.form input[type=password]:hover,
.form input[type=search]:hover,
.form input[type=tel]:hover,
.form input[type=text]:hover,
.form input[type=time]:hover,
.form input[type=url]:hover,
.form textarea:hover {
    border:solid 2px #003494;
}

/* Chrome/Opera/Safari */
::-webkit-input-placeholder {
    font-family: "CHMedia",sans-serif;
    color: #003494;
    font-size: 20px;
    line-height: 30px;
    opacity: 1!important;
}

/* Firefox 19+ */
::-moz-placeholder {
    font-family: "CHMedia",sans-serif;
    color: #003494;
    font-size: 20px;
    line-height: 30px;
    opacity: 1!important;
}

/* IE 10+ */
:-ms-input-placeholder {
    font-family: "CHMedia",sans-serif;
    color: #003494;
    font-size: 20px;
    line-height: 30px;
    opacity: 1!important;
}

/* Firefox 18- */
:-moz-placeholder {
    font-family: "CHMedia",sans-serif;
    color: #003494;
    font-size: 20px;
    line-height: 30px;
    opacity: 1!important;
}

::placeholder {
    font-family: "CHMedia",sans-serif;
    color: #003494;
    font-size: 20px;
    line-height: 30px;
    opacity: 1!important;
}

.required {
    position: relative;
}

.required:after {
    color: #ef2144;
    content: "*";
    position: absolute;
    right: -10px;
    top: -4px;
}

/**
 * Parsley
 */
.parsley-error {
    border: 1px solid #EF2144 !important;
}

label.parsley-error {
    border: 0 !important;
    color: #EF2144;
}

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

/**
 * Success Page
 */
#send2friend-confirmation {
    text-align: center;
}

h3, h3:first-child {
    font-family: "CHMedia",sans-serif;
    font-weight: 300;
    font-size:25px;
    line-height: 35px;
    margin-bottom:25px;
}

/**
 * Media Queries
 */
@media screen and (max-width: 700px) {
    .ui-multiselect {
        margin-bottom:15px;
    }

    #similarJobs .content {
        padding-top: 0px;
    }
}