/*input*/
.input.text,
.input.password,
.input.number,
.input.customselect,
.notEditableField {
    position: relative;
    padding-top: 20px;
}

.input.text label span,
.input.password label span,
.input.number label span,
.input.customselect label span,
.notEditableField>p {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #444444;
}

.input.text label input,
.input.password label input,
.input.number label input,
.input.customselect label>div>div:first-child,
.notEditableField>div {
    color: #747474;
    display: block;
    border: 1px solid #747474;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0px;
    padding: 10px 16px;
    border-radius: 24px;
    width: calc(100% - 34px);
}

.input.customselect {
    position: relative;
}

.input.customselect label>div>div:first-child {
    position: relative;
}

.input.customselect.editable label>div>div:first-child:after {
    content: '';
    width: 33px;
    height: 100%;
    display: block;
    background-image: url(/images/svg/shop_left_menu1.svg);
    background-position: center;
    background-size: 10px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    right: -33px;
    top: 1px;
    bottom: 0px;
    opacity: 0;
    position: absolute;
    z-index: 1;
    cursor: pointer;
}

.input.customselect.editable label>div>div:first-child {
    overflow: initial;
}

.input.customselect.editable label>div>div:first-child:after {
    opacity: .5;
    right: 0px;
}

.input.customselect.editable label>div:hover>div:first-child:after {
    opacity: 1 !important;
}

.input.customselect label>div>div:first-child span {
    display: none;
}

.input.customselect label>div>div:last-child {
    display: none;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 100001;
    min-width: calc(100% - 2px);
    width: max-content;
    max-width: 400px;
    border-radius: 22px;
    overflow: hidden;
    max-height: 50vh;
    background: white;
    border: 1px solid #747474;
    cursor: default;
}

.input.customselect.editable label>div>div:last-child>div {
    overflow: auto;
    position: relative;
    max-height: inherit;
}

.input.customselect label>div>div.top:last-child {
    top: initial;
    bottom: 0;
}

.input.customselect label>div>div.top:last-child {
    right: initial;
    left: 0;
}

.input.customselect.open label>div>div:last-child {
    display: block;
}

.input.customselect label .disabled {
    opacity: .5;
}

.input.customselect label .selected {
    background: #dde8ff !important;
}

.input.customselect label>div>div>div>p {
    padding: 10px 16px;
    line-height: 20px;
    font-size: 13px;
    letter-spacing: 0px;
    text-align: left;
}

.input.customselect label>div>div>div>p>span {
    color: #7C7C7B;
    font-size: 11px;
}

.input.customselect label>div>div>div>p:hover {
    background: #f9f9f9;
}

.notEditableField:not(.bordered)>div {
    border: 0;
    padding: 5px 0 0;
}