

.blog-tabber {
   position: relative;
}
.blog-tabber a:hover,
.blog-tabber a:active,
.blog-tabber a:focus  {
   text-decoration: none;
}
{# Tabs section #}
.tabber__tabs-wrapper {
   position: relative;
   z-index: 1;
}
.tabber__tabs-wrapper ul {
   list-style-type: none;
   margin: 0 0 -2px;
   padding: 0;
}
.tabber__tab {
   display: inline-block;
   margin: 0;
   padding: 0;
   border: none;
}
.tabber__tab.active > a {
   border: 1px solid #ddd;
   border-bottom-color: transparent;
   background-color: white;
}
.tabber__tab a {
   padding: 15px 7px;
   font-size: 16px;
   display: inline-block;
}
{# Content Section #}
 .tabber__content-wrapper {
    position: relative;
    width: 100%;
    height: auto;
 }
 .tabber__content {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0 4px 4px 4px;
    display: none;
    width: 100%;
/*     position: absolute; */
    top: 0;
    left: 0;
 }
 .tabber__content.active {
    display: block;
 }
 .tabber__card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 3px 0;
    padding: 7px 3px;
 }
 .tabber__card:hover {
    background-color:  #f1f1f1;
 }
 .tabber__card--image {
    width: 40%;
    flex: 0 0 40%;
    height: 75px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    margin-right: 10px;
 }
