/*
 Theme Name:  Divi Child Theme
 Theme URI:    https://divilife.com
 Description:  Child Theme for Divi
 Author:       Tim Strifler
 Author URI:   https://divilife.com
 Template:     Divi
 Version:      1.0.0
*/

.dropdown-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 10em;
}

.dropdown-label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: blue !important;
    color: black !important;
}

.dropdown-label:hover {
    cursor: pointer;
}

.dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.dropdown-option {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: lime;
    color: black;
    height: auto;
    overflow: hidden;
    transition: 250ms ease height;
}

.dropdown-option-opened {
    height: 2em;
}