.combo {
    position: relative;
    width: 151.5px;
    display: flex;
}

.combo input {
    width: 90%;
    box-sizing: border-box;
    padding: 5px 5px 5px 5px;
    height: 25px;
    font-size: 12px !important;
}

#makeInput:focus {
    outline: none;
}

#makeInput::placeholder {
    color: black;
    font-size: 12px;
}

.combo-arrow {
    margin-top: 1px;
    margin-left: 3px;
    
    padding: 6px 5px 5px 5px;
    color: #000000ff;
    height: 14px;
    width: 14px;
    border-radius: 5px;
    background: white;
    cursor: default;

}

.combo-arrow:hover {
    background: #e3e3e3ff;
}

.combo-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    border-top: none;
    background: #ffffffff;
    color: #000000;
    outline-style: solid;
    outline-color: #000000ff;
    outline-width: 1px;
    margin-left: 1.75px;
    text-align: left;
    cursor: default;
}

.combo-item:hover {
    background: #e3e3e3ff;
}

.combo-item {
    padding: 3px;
}

.combo-item.active {
    background: #ffdb81;
}

.hidden {
    display: none;
}

@media only screen and (max-width: 1040px) {
    #starthere_box {
        display: flex;
        justify-content: center;
    }

    #starthere_text {
        text-align: left;
        padding-right: 25px;
    }

    .combo input {
        margin-top: 15px !important;
        width: 125px;
        box-sizing: border-box;
        padding: 5px 5px 5px 5px;
        height: 25px;
    }

    #makeInput::placeholder {
        color: black;
        font-size: 12px;
    }

    .combo {
        position: relative;
        width: 151.5px;
    }

    .combo-list {
        position: absolute;
        top: 70%;
        left: 0;
        right: 0;
        max-height: 300px;
        overflow-y: auto;
        border-top: none;
        background: #ffffffff;
        color: #000000;
        outline-style: solid;
        outline-color: #000000ff;
        outline-width: 1px;
        margin-left: 1.75px;
        text-align: left;
        cursor: default;
        z-index: 5;
    }

    .combo-arrow {
        margin-top: 15px;
        margin-left: 3px;
        
        padding: 6px 5px 5px 5px;
        color: #000000ff;
        height: 14px;
        width: 14px;
        border-radius: 5px;
        background: white;
        cursor: default;
    }
}

@media only screen and (max-width: 470px) {
    .combo-list {
        position: absolute;
        top: 55%;
        left: 0;
        right: 0;
        max-height: 300px;
        overflow-y: auto;
        border-top: none;
        background: #ffffffff;
        color: #000000;
        outline-style: solid;
        outline-color: #000000ff;
        outline-width: 1px;
        margin-left: 1.75px;
        text-align: left;
        cursor: default;
        z-index: 5;
    }
}

@media only screen and (max-width: 350px) {
    .combo-list {
        position: absolute;
        top: 45%;
        left: 0;
        right: 0;
        max-height: 300px;
        overflow-y: auto;
        border-top: none;
        background: #ffffffff;
        color: #000000;
        outline-style: solid;
        outline-color: #000000ff;
        outline-width: 1px;
        margin-left: 1.75px;
        text-align: left;
        cursor: default;
        z-index: 5;
    }
}
