.guest-login {
    position: relative;
}

.select-sex {
    border-radius: 50px;
    background: #fff;
    padding: 15px;
    width: 100%;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0px 0px 6px 1px rgb(220 220 220);
    -moz-box-shadow: 0px 0px 6px 1px rgba(220, 220, 220, 1);
    box-shadow: 0px 0px 6px 1px rgb(220 220 220);
}

#pop-up-suggest-con {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px;
    position: absolute;
    z-index: 9999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 768px;
    display: none;
}

#pop-up-suggest {
    background-color: #fff;
    position: relative;
    z-index: 999;
    padding: 40px 30px 20px;
    top: 30%;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 3px 1px rgb(220 220 220 / 45%);
    -moz-box-shadow: 0px 0px 3px 1px rgba(220, 220, 220 / 45%);
    box-shadow: 0px 0px 3px 1px rgb(220 220 220 / 45%);
    border-bottom: 1px solid rgb(255 153 90);
}

#pop-up-suggest-con::before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 20%);
    z-index: 999;
}

#pop-up-suggest i {
    font-size: 50px;
    padding: 30px 45px;
    border: 4px solid;
    border-radius: 50%;
    color: #f39963c4;
}

#pop-up-suggest p {
    margin-top: 20%;
    margin-bottom: 30px;
}

#link-to-cast-register {
    color: #e69138;
}

.show-pop-up {
    display: block !important;
}

#cancel-btn {
    background-image: none;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select__trigger {
    border-radius: 50px;
    background: #fff;
    padding: 14px 15px;
    width: 100%;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0px 0px 6px 1px rgb(220 220 220);
    -moz-box-shadow: 0px 0px 6px 1px rgba(220, 220, 220, 1);
    box-shadow: 0px 0px 6px 1px rgb(220 220 220);
}

.custom-options {
    position: absolute;
    display: block;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    -webkit-box-shadow: 0px 0px 2px 1px rgb(220 220 220);
    -moz-box-shadow: 0px 0px 2px 1px rgba(220, 220, 220, 1);
    box-shadow: 0px 0px 6px 2px rgb(220 220 220);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px 15px;
    color: #3b3b3b;
    cursor: pointer;
}

.custom-option:hover {
    cursor: pointer;
    background-color: #ffa262;
    color: #fff;
}

.custom-option.selected {
    color: #ffffff;
    background-color: rgb(255 162 98 / 70%);
}