.choices__list--dropdown {
    visibility: hidden;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: var(--vz-dropdown-bg);
    border: 1px solid var(--vz-border-color);
    box-shadow: 0 5px 10px rgba(30, 32, 37, .12);
    top: 100%;
    margin-top: 0;
    padding: 10px 10px 20px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
    will-change: visibility;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transform: translateY(1px);
    z-index: 99999;
}