.input {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0f0;
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Open Sans', 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 11.5pt;
    font-weight: 100;
    height: 40px;
    padding: 0 10px;
    position: relative; }

.input::-webkit-input-placeholder {
    color: #ccc; }

.input::-moz-placeholder {
    color: #ccc; }

.input:-ms-input-placeholder {
    color: #ccc; }

.input::-ms-input-placeholder {
    color: #ccc; }

.input::placeholder {
    color: #ccc; }

.input:before {
    content: '';
    height: 5px;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%; }

.input_checkbox {
    display: none; }

.input_checkbox + label {
    padding-left: 30px;
    position: relative; }

.input_checkbox + label:before {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0e0f0;
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    bottom: -2px;
    content: "";
    font-weight: 400;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0; }

.input_checkbox:checked + label:after {
    background-color: #e0e0f0;
    bottom: 2px;
    content: "";
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 4px; }

.input_textarea {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 80px;
    padding: 5px 15px; }

.input__button {
    background: url("/images/ico/icon-input-select.svg") no-repeat 50% 50%;
    background-size: 15px;
    height: 100%;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px; }

.input__button:hover {
    cursor: pointer; }

.input:hover .input__button {
    opacity: 1; }

.input__button_opened {
    background-image: url("/images/ico/icon-close.svg"); }

.input__item {
    padding: 10px 15px; }

.input__item:hover {
    background: #efeff9;
    cursor: default; }

.input__items {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    max-width: 550px;
    overflow-y: visible;
    padding: 20px 0;
    position: absolute;
    top: -webkit-calc(100% + 5px);
    top: calc(100% + 5px);
    width: 100%;
    z-index: 3; }

.input__items:hover {
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15); }
