.icon-box {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.icon{
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-hamburger-span {
    width: 100%;
    max-width: 30px;
    height: 4px;
    margin: 0 auto;
    background-color: lightgray;
    margin-bottom: 5px;
}
.icon-hamburger-span:before {
     content:'';
     display: block;
     width: 100%;
     height: 4px;
     margin-top: -8px;
     background-color: lightgray;
    border-radius: 2px;

}
.icon-hamburger-span:after {
     content:'';
     display: block;
     width: 100%;
     height: 4px;
     margin-top: 12px;
     background-color: lightgray;
    border-radius: 2px;

    clear: both;
 }

.icon-text{
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    user-select: none;
    margin-top: 5px;
}

.icon-cross-span {
    display: none;
    width: 100%;
    max-width: 30px;
    height: 4px;
    transform: rotate(45deg);
    background-color: lightgray;
    border-radius: 2px;
    width: 30px;
}
.icon-cross-span:after{
     content:'';
     display: block;
     width: 100%;
     height: 4px;
     border-radius: 2px;
     background-color: lightgray;
     transform: rotate(90deg);
 }

.icon-search-span {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border: 5px solid #c9c9c9;
    border-radius: 50%;
    margin: 0 auto;
}
.icon-search-span:after {
     content: "";
     position: absolute;
     display: block;
     width: 100%;
     height: 4px;
     border-radius: 2px;
     background-color: #c9c9c9;
     transform: rotate(-45deg);
     transform-origin: 14px 19px;
 }
