<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-website{font-size: 16px;font-weight: normal}

.form-website input, .form-website select, .form-website textarea{
    border: none;
    width: 100%;
    padding: 13px 11px;
    word-break: normal;
    color: #333333;
    border-radius: 4px;
    display: block;
    background: #fff;
    box-shadow: 0 0 0 1px #d9d9d9;
    -webkit-transition: all .2s ease-in-out;-moz-transition: all .2s ease-in-out;-o-transition: all .2s ease-in-out;-ms-transition: all .2s ease-in-out;transition: all .2s ease-in-out;
    font-weight: normal;
}
.form-website textarea{
    padding: 15px 11px;
    min-height: 90px;
    resize: none;
    overflow: hidden;
}
.form-website select{
    color: #555;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-website input:focus, .form-website select{
    padding-top: 20px;
    padding-bottom: 6px;
}

.field-item p{
    position: absolute;
    left: 11px;
    top: 10px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    color: #999;
    -webkit-transition: all .2s ease-in-out;-moz-transition: all .2s ease-in-out;-o-transition: all .2s ease-in-out;-ms-transition: all .2s ease-in-out;transition: all .2s ease-in-out;
    font-weight: normal;
}
.field-item input:focus + p, .form-website select + p,.field-item textarea:focus + p{
    opacity: 1;
    top: 5px;
}
.form-website input:focus::-webkit-input-placeholder{
    font-size: 0;
}
.field-item input:focus:-moz-placeholder {
    font-size: 0;
}
.field-item input:focus::-moz-placeholder {
    font-size: 0;
}
.field-item input:focus:-ms-input-placeholder {
    font-size: 0;
}

.form-website textarea:focus::-webkit-input-placeholder{
    font-size: 0;
}
.field-item textarea:focus:-moz-placeholder {
    font-size: 0;
}
.field-item textarea:focus::-moz-placeholder {
    font-size: 0;
}
.field-item textarea:focus:-ms-input-placeholder {
    font-size: 0;
}

.field-item{
    width: 100%;
    display: block;
    position: relative;
}
.field-item.sel .ic-arrow{
    width: 36px;
    height: 24px;
    border-left: solid 1px #e1e1e1;
    position: absolute;
    right: 1px;
    top: 50%;
    margin-top: -12px;
    background: #fff;
    line-height: 24px;
    padding-top: 12px;
    text-align: center;
    pointer-events: none;
}
.field-item.sel .ic-arrow:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
}

.btn-sb {
    background: #009fc3;
    color: #ffffff;
    font-size: 16px;
    padding: 14px 25px;
    border: none;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.btn-sb:hover {
    background: #00b1c3;
    color: #ffffff;
    font-size: 16px;
    padding: 14px 25px;
    border: none;
    text-transform: uppercase;
}

.form-website input[type="radio"], input[type="checkbox"] {
    margin-top: 0;
    vertical-align: top;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-website input[type="checkbox"]+label {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid #5d9ed6;
    background: #fff;
    position: relative;
}

.form-website input[type="checkbox"]+label span {
    background-image: url('../images/check.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
    -webkit-transition: -webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out;
    z-index: 2;
    width: 15px;
    height: 15px;
    position: absolute;
    display: block;
    top: 8px;
    left: 8px;
}

.form-website input[type="checkbox"]:checked+label {
    background: #fff;
}

.form-website input[type="checkbox"]:checked+label span {
    -webkit-transform: translate(-50%,-50%) scale(.8);
    transform: translate(-50%,-50%) scale(.8);
}

.form-website input[type="checkbox"] {
    display: none;
}

.has-error input, .has-error select,.has-error textarea, .has-errorcheckbox{
    border: 1px solid red;
}

.form-website .panel,.form-website .panel .panel-heading{
    border: none;
    border-radius: 0;
}
</pre></body></html>