.main-content {
    overflow: visible;
}

.master,
.basis {
    z-index: 10;
}

.select {
    position: relative;
}

.select .select_placeholder {
    width: 100%;
    padding: 0 12px;
    min-height: 56px;
    color: rgba(255, 255, 255, .4);
    font-size: var(--body);
    text-overflow: ellipsis;
    border: 1px solid rgba(244, 244, 244, 0.5);
    transition: border-color .43s, color .43s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.output_option {
    position: absolute;
    opacity: 0;
    top: 0;
    cursor: pointer;
}

.select::before {
    content: "";
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 38%;
    transform: translateY(-50%);
    border: solid rgba(255, 255, 255, .4);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: 0.3s all linear;
}

.select.active::before {
    scale: -1;
}

.option_list {
    cursor: pointer;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    padding: 15px;
    opacity: 0;
    transform: translateY(-10px) translateX(-50%) scale(0.98);
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
    z-index: 11111;
    background: rgba(57, 57, 57, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    outline: 1px solid rgba(255, 255, 255, .4);
    flex-direction: column;
    gap: 10px;
    margin: 0;
    margin-top: 0 !important;
}

.top .option_list {
    top: auto;
    cursor: pointer;
    bottom: calc(100% + 10px);
}

.select.active .option_list {
    max-height: 490px;
    opacity: 1;
    transform: translateY(0) translateX(-50%) scale(1);
    pointer-events: auto;
}

.option {
    padding: 0 40px 10px 0px;
    cursor: pointer;
    color: rgba(255, 255, 255, .4);
    font-size: var(--body);
    text-overflow: ellipsis;
    font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #D9D9D9;
}

.option:last-of-type {
    border-bottom: none;
    padding: 0 40px 0 0px;
}