.combobtn {
    color: black;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: transparent;
    width: 100%;
}

.combobtn1 {
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: transparent;
    width: 100%;
    border-radius: 5px;
}

.combobtn i {
    margin-left: 10px;
    font-size: 20px;
}

.combo-dropdown {
    position: relative;
    display: inline-block;
    width: 102%;
    border: 2px solid black!important;
    text-align: left!important;
    border-radius: 2px;
    margin-left: -2px;
}

.combo-dropdown1 {
    position: relative;
    display: inline-block;
    width: 102%;
    background: green;
    text-align: left!important;
    border-radius: 2px;
}

.combo-dropdown i {
    pointer-events: none;
}

.combo-dropdown1 i {
    pointer-events: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    border: 2px solid black;
    min-width: 100%;
    overflow: auto;
    top: 60px;
    z-index: 1;
    background-color: white;
}

.dropdown-content1 {
    display: none;
    position: absolute;
    border: 2px solid black;
    min-width: 100%;
    overflow: auto;
    top: 50px;
    z-index: 1;
    background-color: white;
    max-height: 25vh;
    overflow-y: auto;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content1 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.combo-dropdown a:hover {
    background-color: #ddd;
}

.combo-dropdown1 a:hover {
    background-color: #ddd;
}

.combo-show {
    display: block;
}