.uk-hidden {
    display: none!important;
}

.error-popup-message {
    top: 2px;
    height: 1px;
    position: relative;
    color: #FF5959;
    padding-top: 5px;
    padding-bottom: 5px;
    box-sizing: border-box;
    display: none;
    /* visibility: hidden;*/
}

.uk-input-error
{
    border-color: #FF5959!important;
}


.custom-select-wrapper, [data-select] {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 110px;
    display: flex;
    flex-direction: column;
}
.custom-select-wrapper.uk-disabled .custom-select-field, [data-select].uk-disabled .custom-select-field {
    background-color: #f7f7f7;
}
.custom-select-wrapper.open .custom-select-arrow img, .custom-select-wrapper.open svg, [data-select].open .custom-select-arrow img, [data-select].open svg {
    transform: rotate(-180deg);
}
.custom-select-wrapper.open .custom-select-field, [data-select].open .custom-select-field {
    border-color: #C5C7CD;
    z-index: 5;
    border-radius: 4px 4px 0 0;
    border-bottom-color: transparent;
}
.custom-select-wrapper.open .custom-options, [data-select].open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-select-arrow img, .custom-select-arrow svg {
    width: 24px;
    min-width: 24px;
    transition: all 0.3s ease;
}
.custom-select-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 4px;
}
.custom-select-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 16px;
    color: #000000;
    height: 48px;
    box-sizing: border-box;
    width: 100%;
    background: #FFFFFF;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #C5C7CD;
    transition: border-color 0.3s ease;
}
.custom-select-field:hover {
    border-color: #74298F;
}
.custom-select-field-error, .custom-select-field-error:hover {
    border-color: #FF5959!important;
    color: #FF5959;
}
.custom-select-inner {
    padding: 16px;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 4px 4px;
    border: 1px solid #C5C7CD;
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 16px;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.custom-options ul {
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #000000 #2e2f4d;
    scrollbar-width: thin;
}
.custom-options ul::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #000000;
}
.custom-options ul::-webkit-scrollbar {
    width: 4px;
}
.custom-options ul::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #C5C7CD;
}
.custom-options ul::-webkit-scrollbar-thumb {
    border-radius: 2px;
}
.custom-options ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    box-sizing: border-box;
    color: #C5C7CD;
    cursor: pointer;
    line-height: 1.4;
    margin-right: 8px;
    transition: all 0.5s;
}
@media screen and (max-width: 960px) {
    .custom-options ul li {
        margin-right: 4px;
    }
}
.custom-options ul li:not(:last-child) {
    margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
    .custom-options ul li:not(:last-child) {
        margin-bottom: 8px;
    }
}
.custom-options ul li:hover {
    cursor: pointer;
    color: #1B1B1F;
}
.custom-options ul li.selected {
    cursor: default;
    opacity: 1;
    color: #1B1B1F;
}
