
.custom-select {
    background-color: #fff;
    position: relative;
}
.custom-select.open .custom-select__options {
    display: block;
}
.custom-select.open .custom-select__button i {
    transform: rotate(180deg);
}
.custom-select:not(.custom-select--shadow-on-open) {
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
}
.custom-select select {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}
.custom-select__button {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    width: 100%;
}
.custom-select__button * {
    pointer-events: none;
}
.custom-select__button-text,
.custom-select__button-icon {
    pointer-events: none;
}
.custom-select__button-icon {
    transition: .2s transform ease-in-out;
}
.custom-select__options {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
    display: none;
    z-index: 900;
}
.custom-select__option {
    cursor: pointer;
    padding: 9px 20px;
    font-size: 14px;
    transition: background-color .3s ease;
}
.custom-select__option:hover {
    background-color: #F8F8F8;
}
.custom-select__option:first-of-type {
    padding-top: 16px;
}
.custom-select__option:last-of-type {
    padding-bottom: 16px;
}
.custom-select__option i {
    visibility: hidden;
}
.custom-select__option.selected i {
    visibility: visible;
}

.custom-select--shadow-on-open.open {
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);;
}

eventForm .showForm {
    display: block;
}
eventForm .hideForm {
    display: none;
}