#select-box-0, #select-box-1, #select-box-2 {
    position: relative;
    display: inline-block;
    width: 230px;
    margin-right: 30px;
    vertical-align: top;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    line-height: 16px;
}

#select-box-1 .select-overlay {
    z-index: 0;
    background-color: #aaa;
    color: white;
    font-family: Helvetica, sans-serif;
    padding: 17px;
}

#select-box-1 .select-overlay i {
    margin-left: 15px;
    font-size: 20px;
    position: absolute;
    top: 10px;
}

#select-box-0 select {
    width: 100%;
    background-color: #eee;
    height: 50px;
    border: none;
    font-size: 12px;
    font-family: Helvetica, sans-serif;
}

#select-box-1 select {
    z-index: 1;
    opacity: 0;
    position: absolute;
    top: 0;
    height: 50px;
    width: 230px;
    background: none;
}

#select-box-2 select {
    visibility: hidden;
    width: 230px;
    height: 50px;
    background-color: white;
}

.fake-select {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    background-color: #444;
    width: 200px;
    height: 20px;
    padding: 15px;
    font-family: Helvetica, sans-serif;
}

.fake-select:after, .select-overlay:after {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: white transparent transparent transparent;
    position: absolute;
    top: 22px;
    right: 15px;
}

.active.fake-select:after {
    border-bottom: 5px solid white;
    border-top: 0px;
}

.options {
    font-family: "Helvetica", sans-serif;
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    width: 230px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
    height: 20px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background-color: #D0D0D0;
    color: white;
}

.options li:last-child {
    border-bottom: none;
}

.options li:hover {
    background-color: #888;
}


/* css not related to the select menus */
.container {
  padding: 30px;
}

.description {
    margin-top: 20px;
    padding-left: 25px;
}

.description li {
    margin-bottom: 5px;
}