<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* demo 5 */

.wrapper-dropdown-5 {
    /* size &amp; position */
    position: relative;
    width: 132px;
    margin: 0 auto;
    padding: 12px 15px;

    /* styles */
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    cursor: pointer;
    outline: none;
    color:black;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.wrapper-dropdown-5:after { /* little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #4cbeff transparent;
}

.wrapper-dropdown-5 .dropdown {
    /* size &amp; position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* styles */
    background: #fff;
    color:black;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* hiding */
    max-height: 0;
    
    overflow: auto;
}

.wrapper-dropdown-5 .dropdown li {
    padding: 0 0px ;
}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-dropdown-5 .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown-5 .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* hover state */

.wrapper-dropdown-5 .dropdown li:hover a {
    color: #57a9d9;
    background-color:#f6f6f6;
}
/* active state */

.wrapper-dropdown-5.active {
    border-radius: 5px 5px 0 0;
    background: #4cbeff;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-dropdown-5.active:after {
    border-color: #82d1ff transparent;
}

.wrapper-dropdown-5.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 300px;
}


/* 1 */
.wrapper-1 {
    /* size &amp; position */
    position: relative;
    width: 180px;
    margin: 0 auto;
    padding: 12px 15px;

    /* styles */
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    cursor: pointer;
    outline: none;
    color:black;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.wrapper-1:after { /* little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #4cbeff transparent;
}

.wrapper-1 .dropdown {
    /* size &amp; position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* styles */
    background: #fff;
    color:black;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* hiding */
    max-height: 0;
    
    overflow: auto;
}

.wrapper-1 .dropdown li {
    padding: 0 0px ;
}

.wrapper-1 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-1 .dropdown li:last-of-type a {
    border: none;
}

.wrapper-1 .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* hover state */

.wrapper-1 .dropdown li:hover a {
    color: #57a9d9;
    background-color:#f6f6f6;
}
/* active state */

.wrapper-1.active {
    border-radius: 5px 5px 0 0;
    background: #4cbeff;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-1.active:after {
    border-color: #82d1ff transparent;
}

.wrapper-1.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 300px;
}</pre></body></html>