/**
 * Created by ithaki ajans
  * Date: 1.04.2019
 * Time: 14:36
 */
.moduletablemenu01 {
    background-color: var(--renk03);
}
.menu01 {
    width: 100%;
    /* padding-right: 25px; */
    /* padding-left: 25px; */
    text-align: center;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.menu01 a {
    font-size: 18px;
    display: block;
    transition-duration: 0.5s;
    line-height: 2;
font-weight: 300;
    text-transform: none;
    background-color: var(--renk03);
}
.menu01 a:hover {
    color:#FFFFFF;
    background-color: var(--renk01);
}
.menu01 a.active {
    color: #8a8891;
}

.menu01 a:before {
    content: "\eac9";
    font-family: "IcoFont", serif;
    padding-right: 5px;
}
.menu01 ul {
    display: grid;
    grid-auto-flow: column;
}
.menu01 li {
/*    max-width: 200px;
display: inline-block;*/
    list-style-type: none;
    border-right: 1px solid #FFFFFF;
}
.menu01 li:nth-last-child(1) {
    border: 0;
}
.menu01 h3 {
    margin: 0;
    padding: 0;
    color:#fff;
}
@media screen and (max-width: 1100px) {

    .menu01 li {
      border-right: 0;
        border-bottom: 1px solid #FFFFFF;
    }
    .menu01 ul {
        display: grid;
        grid-auto-flow: row;
    }

}