.custom-dropdown{
    display: none;
    padding: 20px;
    transition: all .2s;
    opacity: 0;
}

.custom-options-button{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .2s;
    border-radius: 5px;
    border: 1px solid #3c8b87;
    background-color: #3c8b87;
    color: #fff;
}

.custom-options-button:hover{
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    transition: all .2s;
}

.cd-button-active{
    background-color: #3c8b87;
    color: #FFF;
    transition: all .2s;
}

.cd-active{
    display: block;
    opacity: 1;
    transition: all .2s;
}

.custom-options-button:after {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    content: "\f175";
    font-family: FontAwesome;
    margin-left: 10px;
}

.custom-options-button.cd-button-active:after {
    content: "\f176";
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-family: FontAwesome;
    margin-left: 10px;
}

.zz_Attention {
    padding: 0.5em;
}

.catalog-product-view .custom-dropdown .field .control input,
.catalog-product-view .custom-dropdown .field .control select {
    max-width: 100%;
}

.zz_acceptTerm {
    border: solid 1px #e1e1e1;
    border-radius: 5px;
    padding: 10px;
    background: #e1e1e1;
}