.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-items div {
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.05) transparent;
    cursor: pointer;
    font-size: 12px;
    padding: 6px 25px;
}

.select-items {
    position: absolute;
    background-color: white;
    border-radius: 0.6rem;
    border: 1px solid #9994;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.select-items div:first-child:hover {
    border-radius: 0.6rem 0.6rem 0 0;
}

.select-items div:last-child:hover {
    border-radius: 0 0 0.6rem 0.6rem;
}

div.custom-select.form-control {
    line-height: 1.7rem;
}

.product-type-list {
    display: flex;
    justify-content: center;
    border: 1px solid #D8D8D8;
    border-radius: 50rem;
}

.product-type-item {
    text-align: center;
    min-height: 50px;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

.product-type-item.active {
    border-radius: 50rem;
    background: var(--color-blue5);
    color: white;
    cursor: default;
}

.product-type-label {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1rem;
}
