#no-options-notice {
    display: none;
}

.drop-unit {
     width: 100%;
     margin-bottom: 20px;
}

.custom-ui {
    display: none;
    opacity: 0;
    max-height: 0px;
    transition: max-height 0.4s, opacity 0.1s;
}

.custom-ui.display-filters {
     display: block;
     max-height: 350px;
     opacity: 1.0;
}

.drop-unit p {
    text-align: center;
    text-transform: uppercase;
    font-family: "Itau Text - Extra Bold";
    font-size: 14px;
    letter-spacing: 0.8px;
    cursor: pointer;
    color: #C15715;
    border: solid 2px #C15715;
    border-radius: 50px;
    width: 100%;
    padding: 8px 0px 6px 0px;
    margin: 0 auto;
}

.drop-unit p .fusion-li-icon {
    margin: 0 5px;
    transition: transform 0.6s;
}

.drop-unit p:hover .fa-arrow-down,
.drop-unit p:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.flip-arrow {
    transform: rotate(180deg);
}

.drop-unit p:hover {
    background-color: #C15715;
    color: #FFF;
}
    
.drop-unit ul {
    width: 100%;
    box-sizing: border-box;
    list-style-type: none;
    padding: 0;
}

.drop-unit li {
    font-family: "Itau Text - Regular";
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.drop-unit li :hover {
    color:  #C15715;
}

.custom-ui input[type="checkbox"], .custom-ui input[type="radio"] {
    position: absolute;
    display: none;
    cursor: pointer;
}

.custom-ui .radio {
    position: relative;
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    border: 2px solid #C15715;
    cursor: pointer;
    border-radius: 50px;
}

.custom-ui label {
    padding-left: 10px;
    cursor: pointer;
}

.custom-ui input[type="checkbox"], .custom-ui input[type="radio"] {
    position: absolute;
    display: none;
    cursor: pointer;
}

.custom-ui input[type="radio"]:checked ~ .radio i, .custom-ui input[type="checkbox"]:checked ~ .radio i {
    display: block;
}

.custom-ui input[type="radio"]:checked ~ .radio,
.custom-ui input[type="checkbox"]:checked ~ .radio {
    background-color: #c15715;
}

.custom-ui .radio i {
    margin: auto;
    font-size: 8px;
    display: none;
    color: #FFF;
}