.input-wrap-new {
}

.input-wrap-new input {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
    margin-top: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.input-wrap-new__title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #616161;
}

.input-wrap-dropdown {
    position: relative;
    margin-bottom: 12px;
}

.input-wrap-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #E0E0E0;
    border-radius: 0 0 10px 10px;
}

.input-wrap-dropdown.active .input-wrap-new__input-visible {
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.input-wrap-dropdown.active .input-wrap-dropdown__menu {
    display: flex;
    flex-direction: column;
}

.input-wrap-dropdown__item {
    cursor: pointer;
    padding: 6px 20px;
}

.input-wrap-dropdown__item.active {
    color: var(--c-wine);
}

.input-wrap-dropdown__item:not(.active):hover {
    background-color: #F0F0F0;
}

.input-wrap-dropdown svg {
    position: absolute;
    bottom: 15px;
    right: 16px;
    transition: transform 0.5s ease;
}

.input-wrap-dropdown.active svg {
    transform: rotate(180deg);
}

.input-wrap-new input::-webkit-input-placeholder {
    color: #C2C2C2;
}

.input-wrap-new input::-moz-placeholder {
    color: #C2C2C2;
}

.input-wrap-new input:-moz-placeholder {
    color: #C2C2C2;
}

.input-wrap-new input:-ms-input-placeholder {
    color: #C2C2C2;
}


