.nectar-toggle {
    padding: .5em 1em;
}
.nectar-toggle .wrap, .nectar-toggle .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nectar-toggle .head .icon {
    max-width: 80px;
    height: auto;
    margin-bottom: 0px;
    margin-right: 10px;
}
.nectar-toggle .head .name{
    font-size: 24px;
    font-family: inherit;
}
.nectar-toggle .tail i{
    top: -1px;
    padding-left: 5px;
}
.nectar-toggle .moretext{
    display: inline-block;
}
.nectar-toggle .content{
    display: none;
    padding: 1em;
}
/*---------------------*/
/* Media - Mobile [ max-width: 767px ]
/*---------------------*/
@media only screen and (max-width: 767px){
    .nectar-toggle {
        padding: .25em;
    }
    .nectar-toggle .wrap, .nectar-toggle .head{
        justify-content: flex-start;
    }
    .nectar-toggle .moretext {
        display: none;
    }
    .nectar-toggle .head{
        width: 95%;
    }
    .nectar-toggle .tail{ 
        width: 5%;
    }
    .nectar-toggle .tail i{
        font-size: 14px;
    }
    .nectar-toggle .head .icon{
        display: none;
    }
    .nectar-toggle .head .name {
        font-size: 20px;
    }
}

/*---------------------*/
/* Media - Tablet [ min-width: 768px ] & [ max-width: 1024px ]
/*---------------------*/
@media only screen and (min-width: 768px) and (max-width:1024px){
    .nectar-toggle .wrap, .nectar-toggle .head{
        justify-content: flex-start;
    }
    .nectar-toggle .head{
        width: 75%;
    }
    .nectar-toggle .tail{ 
        width: 25%;
    }
}

/*---------------------*/
/* Media - Small Desktop [ min-width: 1025px ] & [ max-width: 1400px ]
/*---------------------*/
@media only screen and (min-width: 1025px) and (max-width:1400px){

}

/*---------------------*/
/* Media - Large Desktop [ min-width: 1401px ] 
/*---------------------*/
@media only screen and (min-width: 1401px){

}