

/* Start:/js/FormStyler/jquery.formstyler.css?168071113310673*/
.jq-checkbox {
    background: #fff;
    border: 1px solid #c3c3c3;
    border-radius: 3px;
    box-sizing: border-box;
    cursor: pointer;
    height: 16px;
    margin: 0 4px 0 0;
    top: -1px;
    vertical-align: middle;
    width: 16px;
}

.jq-checkbox.checked .jq-checkbox__div {
    background: #666;
    border-radius: 2px;
    height: 12px;
    margin: 2px 0 0 2px;
    width: 12px;
}

.jq-checkbox.focused {
    border: 1px solid #08c;
}

.jq-checkbox.disabled {
    opacity: .55;
}

.jq-radio {
    background: #f5f5f5;
    border: 1px solid #c3c3c3;
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer;
    height: 16px;
    margin: 0 4px 0 0;
    top: -1px;
    vertical-align: middle;
    width: 16px;
}

.jq-radio.checked .jq-radio__div {
    background: #777;
    border-radius: 50%;
    height: 10px;
    margin: 3px 0 0 3px;
    width: 10px;
}

.jq-radio.focused {
    border: 1px solid #08c;
}

.jq-radio.disabled {
    opacity: .55;
}

.jq-file {
    border-radius: 4px;
    width: 270px;
}

.jq-file input {
    cursor: pointer;
    height: auto;
    line-height: 1em;
}

.jq-file__name {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: #333;
    font: inherit;
    height: 34px;
    overflow: hidden;
    padding: 0 80px 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.jq-file__browse {
    background: #f5f5f5;
    border-left: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    color: #333;
    font: inherit;
    padding: 0 10px;
    position: absolute;
    right: 1px;
    top: 1px;
}

.jq-file:hover .jq-file__browse {
    background: #e6e6e6;
}

.jq-file:active .jq-file__browse {
    background: #f5f5f5;
}

.jq-file.focused .jq-file__name {
    border: 1px solid #5794bf;
}

.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
    background: #f5f5f5;
    border-color: #ccc;
    color: #888;
}

.jq-number {
    display: inline-block;
    padding: 0 36px 0 0;
    position: relative;
    vertical-align: middle;
}

.jq-number__field {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100px;
}

.jq-number__field:hover {
    border-color: #b3b3b3;
}

.jq-number__field input {
    background: none;
    border: none;
    box-sizing: border-box;
    color: #333;
    font: inherit;
    outline: none;
    padding: 8px 9px;
    text-align: left; /* для Opera Presto */
    width: 100%;
    -moz-appearance: textfield;
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
    margin: 0; /* в каких-то браузерах присутствует отступ */
    -webkit-appearance: none;
}

.jq-number__spin {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    height: 14px;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jq-number__spin.minus {
    bottom: 0;
    top: auto;
}

.jq-number__spin:hover {
    background: #e6e6e6;
}

.jq-number__spin:active {
    background: #f5f5f5;
}

.jq-number__spin:after {
    border-bottom: 5px solid #999;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: '';
    height: 0;
    left: 11px;
    position: absolute;
    top: 4px;
    width: 0;
}

.jq-number__spin.minus:after {
    border-bottom: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #999;
    top: 5px;
}

.jq-number__spin.minus:hover:after {
    border-top-color: #000;
}

.jq-number__spin.plus:hover:after {
    border-bottom-color: #000;
}

.jq-number.focused .jq-number__field {
    border: 1px solid #5794bf;
}

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
    background: #f5f5f5;
    border-color: #ccc;
    color: #888;
}

.jq-number.disabled .jq-number__spin:after {
    border-bottom-color: #aaa;
}

.jq-number.disabled .jq-number__spin.minus:after {
    border-top-color: #aaa;
}

.jq-selectbox {
    cursor: pointer;
    vertical-align: middle;
}

.jq-selectbox__select {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    font: inherit;
    padding: 5px 45px 5px 10px;
}

.jq-selectbox__select:hover {
    background: #e6e6e6;
}

.jq-selectbox__select:active {
    background: #f5f5f5;
}

.jq-selectbox.focused .jq-selectbox__select {
    border: 1px solid #5794bf;
}

.jq-selectbox.disabled .jq-selectbox__select {
    background: #f5f5f5;
    border-color: #ccc;
    color: #888;
}

.jq-selectbox__select-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.jq-selectbox .placeholder {
    color: #888;
}

.jq-selectbox__trigger {
    border-left: 1px solid #ccc;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
}

.jq-selectbox__trigger-arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #999;
    height: 0;
    margin: -2px -5px 0 0;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 0;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
    border-top-color: #000;
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
    border-top-color: #aaa;
}

.jq-selectbox__dropdown {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font: inherit;
    margin: 2px 0 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.jq-selectbox__search {
    margin: 5px;
}

.jq-selectbox__search input {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    color: #333;
    margin: 0;
    outline: none;
    padding: 5px 27px 6px 8px;
    width: 100%;
    -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.jq-selectbox__not-found {
    background: #f0f0f0;
    font-size: 13px;
    margin: 5px;
    padding: 5px 8px 6px;
}

.jq-selectbox ul {
    margin: 0;
    padding: 0;
}

.jq-selectbox li {
    padding: 5px 10px;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jq-selectbox li.selected {
    background-color: #a3abb1;
    color: #fff;
}

.jq-selectbox li:hover {
    background-color: #08c;
    color: #fff;
}

.jq-selectbox li.disabled {
    color: #aaa;
}

.jq-selectbox li.disabled:hover {
    background: none;
}

.jq-selectbox li.optgroup {
    font-weight: bold;
}

.jq-selectbox li.optgroup:hover {
    background: none;
    color: #231f20;
    cursor: default;
}

.jq-selectbox li.option {
    padding-left: 25px;
}

.jq-select-multiple {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: #333;
    cursor: default;
    font: inherit;
    padding: 1px;
}

.jq-select-multiple.focused {
    border: 1px solid #5794bf;
}

.jq-select-multiple.disabled {
    background: #f5f5f5;
    border-color: #ccc;
    color: #888;
}

.jq-select-multiple ul {
    margin: 0;
    padding: 0;
}

.jq-select-multiple li {
    list-style: none;
    padding: 3px 9px 4px;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jq-select-multiple li:first-child {
    border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
    border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
    background: #08c;
    color: #fff;
}

.jq-select-multiple li.disabled {
    color: #aaa;
}

.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
    background: #ccc;
    color: #fff;
}

.jq-select-multiple li.optgroup {
    font-weight: bold;
}

.jq-select-multiple li.option {
    padding-left: 25px;
}

input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    font: inherit;
    padding: 8px 9px;
}

input[type='search'].styler {
    -webkit-appearance: none;
}

textarea.styler {
    overflow: auto;
}

input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
    border-color: #b3b3b3;
}

input[type='email'].styler:focus,
input[type='password'].styler:focus,
input[type='search'].styler:focus,
input[type='tel'].styler:focus,
input[type='text'].styler:focus,
input[type='url'].styler:focus,
textarea.styler:focus {
    border-color: #ccc;
    outline: none;
}

button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    font: inherit;
    outline: none;
    overflow: visible;
    padding: 8px 11px;
}

button.styler::-moz-focus-inner,
input[type='button'].styler::-moz-focus-inner,
input[type='submit'].styler::-moz-focus-inner,
input[type='reset'].styler::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
    background: #e6e6e6;
}

button.styler:not([disabled]):active,
input[type='button'].styler:not([disabled]):active,
input[type='submit'].styler:not([disabled]):active,
input[type='reset'].styler:active {
    background: #f5f5f5;
}

button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
    background: #f5f5f5;
    border-color: #ccc;
    color: #888;
}
/* End */


/* Start:/local/templates/pixelplus.ru_2021/components/pixelplus/feedback/form-short--extended/style.css?16472656033704*/
.form--short-feedback {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 20px 0 0 0;
    background: #fff;
    margin: 30px auto;
    font-size: 13px;
}

    .fancybox-opened .form--short-feedback {
        margin: 0;
        max-width: 250px;
        box-shadow: none;
    }

.form--short-feedback .form__title {
    font-family: Ubuntu, sans-serif;
    font-size: 21px;
    margin-bottom: 21px;
}

.form--short-feedback .form__intro {
    font-size: 13px;
    color: #555;
    margin-bottom: 21px;
}

.form--short-feedback .moving-placeholder {
    position: relative;
}

.form--short-feedback .moving-placeholder__field {
}

.form--short-feedback .moving-placeholder__label {
    color: inherit;
    font-size: inherit;
    line-height: 1;
    opacity: .8;
    pointer-events: none;
    position: absolute;
    top: .85em;
    left: .85em;
    transition: .3s;
}

.form--short-feedback .moving-placeholder__field:focus + .moving-placeholder__label,
.form--short-feedback .moving-placeholder__field.--focus + .moving-placeholder__label {
    font-size: 11px;
    top: -.5em;
    left: .6em;
    background: #fff;
    opacity: 1;
    padding: 0 .5em;
}

.form--short-feedback .form__field-input--required:after {
    content: '*';
    color: red;
    position: absolute;
    right: .85em;
    top: .85em;
}

.form--short-feedback .form__fields {
    margin-bottom: 20px;
}

.form__field-name {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
}

.form--short-feedback .form__field {
    margin: 0;
}

.form--short-feedback .form__field + .form__field {
    margin-top: 15px;
}

.form--short-feedback .form__required-message {
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    font-size: 10px;
    text-align: center;
    color: #555;
    margin-bottom: 26px;
}

.form--short-feedback .form__button {
    background: linear-gradient(to bottom, #c61526 0%, #b30a1a 100%);
    border: none;
    border-bottom: 2px solid #750712;
    border-radius: 2em;
    box-shadow: none;
    box-sizing: content-box;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 16px;
    margin: 0 auto;
    padding: 0.95em 2.5em;
    text-align: center;
    text-align-last: center;
    text-decoration: none;
    transition: all 0.2s;
    user-select: none;
    text-transform: uppercase;
    font-weight: 600;
}

.form--short-feedback .form__field--privacy-policy {
    text-align: center;
    color: #8d8d8d;
    font-style: italic;
    font-size: 13px;
    margin-top: 20px;
}

.form--short-feedback .form__field--privacy-policy .form__label {
    padding: 0;
}

.form--short-feedback .form__field--privacy-policy .fake-checkbox {
    display: none;
}

.form--short-feedback .field.field-theme {
    display: none;
}

.form--short-feedback .jq-selectbox__select,
/*.form--short-feedback .jq-selectbox.opened .jq-selectbox__select,*/
.form--short-feedback .jq-selectbox.focused .jq-selectbox__select {
    background: #fff;
    border: 1px solid #c7cfd6;
    border-radius: 3px;
    box-shadow: none;
    padding: 0.85em;
    transition: all 0.2s;
    width: 100%;
}

.form--short-feedback .jq-selectbox__dropdown {
    width: 100% !important;
}

.form--short-feedback .jq-selectbox__dropdown ul {
    max-height: 150px;
}

@media screen and (min-width: 1024px) {
    .form--short-feedback {
        padding: 40px 70px;
        font-size: 14px;
        max-width: 474px;
    }

    .fancybox-opened .form--short-feedback {
        max-width: 474px;
    }

    .form--short-feedback .form__fields {
        padding: 0 20px;
    }

    .form--short-feedback .form__button {
        padding: 0.95em 3.5em;
    }
}
/* End */
/* /js/FormStyler/jquery.formstyler.css?168071113310673 */
/* /local/templates/pixelplus.ru_2021/components/pixelplus/feedback/form-short--extended/style.css?16472656033704 */
