/*Horizontal Tabs*/
.tab_container .tab_hover_icon{
    display:none;
}
.tab_container:hover .tab_hover_icon{
    display:block;
}
.tab_container:hover .tab_normal_icon{
    display:none;
}
.tab_container a{
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding:15px 30px;
}
.tab_container .tab_label{
    flex-basis:30%;
}
.tab_container .tab_description{
    flex-basis:50%;
}
.tab_containter .tab_icons{
    flex:20%;
    text-align:end;
}
@media only screen and (max-width:768px){
    .tab_container a{
        flex-direction:column;
        justify-content:space-between;
        align-items:center;
    }
    .tab_container .tab_label{
        text-align:center;
    }
    .tab_container .tab_description{
        text-align:center;
        margin:10px 0 20px;
    }
}