/*
 * YO Menu - Ultra Modern Responsive Style
 * Orijinal yapıyı bozmadan #0950a6 uyarlanmış sürüm
 */

/* =========================
   BASE
========================= */
.yo-menu,
.yo-menu *,
ul.yo-fm,
ul.yo-fm * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.yo-menu {
    position: relative;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    z-index: 20;
}

/* =========================
   HEADING
========================= */
.yo-heading {
    position: relative;
    display: block;
    min-width: 100%;
    margin: 0;
    padding: 11px 14px;
    cursor: pointer;
    border: 0;
    background: #1770db;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0;
    box-shadow:
        0 14px 30px rgba(9, 80, 166, 0.24),
        0 6px 14px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.20);
    -webkit-transition: all .30s ease;
       -moz-transition: all .30s ease;
        -ms-transition: all .30s ease;
         -o-transition: all .30s ease;
            transition: all .30s ease;
}

.yo-heading:hover {
    background: #0b58b8;
    box-shadow:
        0 16px 34px rgba(9, 80, 166, 0.30),
        0 8px 16px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.22);
}

.yo-heading.yo-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.yo-heading.yo-close {
}

.yo-heading i.fa.fa-bars {
    float: right;
    line-height: 16px;
    font-size: 13px;
    opacity: .95;
   
}


/* =========================
   WRAPPER
========================= */
.yo-wrapper {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    border: 1px solid #e4ebf3;
    border-top: 0;
    background: #ffffff;
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.06),
        0 6px 14px rgba(15, 23, 42, 0.03);
    overflow: visible;
}

.yo-heading + .yo-wrapper {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* =========================
   DEFAULT UL / LI
========================= */
ul.yo-fm,
ul.yo-fm ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.yo-menu ul.yo-fm li {
    position: relative;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    line-height: 1.15;
    border-bottom: 1px solid #eef2f6;
    background: #ffffff;
}

.yo-menu ul.yo-fm li:first-child {
    border-top: none;
}

.yo-menu ul.yo-fm li:last-child {
    border-bottom: none;
}

ul.yo-fm li > a {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}

/* =========================
   MAIN LINKS
========================= */
.yo-menu ul.yo-fm li > a {
    min-height: 40px;
    padding: 9px 34px 9px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.15;
    color: #27303a;
    background: #ffffff;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.yo-menu ul.yo-fm li > a:before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    width: 0;
    background: linear-gradient(180deg, #0c64cf 0%, #0950a6 100%);
    opacity: 0;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.yo-menu ul.yo-fm li > a:hover {
    color: #0950a6;
    background: linear-gradient(90deg, #eef5ff 0%, #ffffff 75%);
    padding-left: 14px;
}

.yo-menu ul.yo-fm li > a:hover:before,
.yo-menu ul.yo-fm li > a.active:before,
.yo-menu ul.yo-fm li:hover > a:before {
    width: 3px;
    opacity: 1;
}

.yo-menu ul.yo-fm li > a.active {
    color: #0950a6;
    font-weight: 300;
    background: linear-gradient(90deg, #e8f1ff 0%, #ffffff 80%);
}

.yo-menu ul.yo-fm li:hover > a {
    color: #0950a6;
    background: linear-gradient(90deg, #eef5ff 0%, #ffffff 75%);
}

/* Parent Arrow */
ul.yo-fm li a.fm-parent:after {
    content: '\f105';
    position: absolute;
    top: 50%;
    right: 12px;
    margin: 0;
    font-family: FontAwesome;
    font-size: 12px;
    line-height: 1;
    color: #7f92a8;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

ul.yo-fm li:hover > a.fm-parent:after,
ul.yo-fm li > a.active.fm-parent:after {
    color: #0950a6;
    -webkit-transform: translateY(-50%) translateX(1px);
       -moz-transform: translateY(-50%) translateX(1px);
        -ms-transform: translateY(-50%) translateX(1px);
         -o-transform: translateY(-50%) translateX(1px);
            transform: translateY(-50%) translateX(1px);
}

/* =========================
   IMAGES / ICONS / BADGES
========================= */
ul.yo-fm .fm-image a {
    display: block;
    padding: 6px !important;
    text-align: center;
}

ul.yo-fm img {
    max-width: 100% !important;
    height: auto;
    vertical-align: middle;
    border: 0;
    overflow: hidden;
}

ul.yo-fm img.fm-icon {
    margin-right: .7em;
}

ul.yo-fm li a span {
    vertical-align: middle;
}

ul.yo-fm li a span.fm-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    color: #0950a6;
    background: rgba(9, 80, 166, 0.08);
    border: 1px solid rgba(9, 80, 166, 0.12);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

/* =========================
   ONE LEVEL / FLYOUT
========================= */
ul.yo-fm.fm-one li {
    position: relative;
}

ul.yo-fm.fm-one ul,
ul.yo-fm .fm-container {
    position: absolute;
    top: 0;
    left: calc(100% + 0px);
    z-index: 9999;
    display: none;
}

#column-right ul.yo-fm.fm-one ul,
#column-right ul.yo-fm .fm-container {
    left: auto;
    right: calc(100% + 8px);
}

ul.yo-fm.fm-one ul {
    min-width: 230px;
    padding: 8px;
    border: 1px solid #e7edf4;
    background: #ffffff;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09),
        0 5px 12px rgba(0, 0, 0, 0.04);
}

ul.yo-fm.fm-one li li {
    border-bottom: 0;
    background: transparent;
}

ul.yo-fm.fm-one li li > a {
    min-height: 34px;
    margin: 0;
    padding: 8px 10px;
    background: #ffffff;
    box-shadow: none;
    font-size: 14px;
    font-weight: 300;
}

ul.yo-fm.fm-one li li + li > a {
    margin-top: 3px;
}

ul.yo-fm.fm-one li li > a:hover {
    background: #eef5ff;
}

/* =========================
   MULTI / MEGA CONTAINER
========================= */
ul.yo-fm.fm-multi {
    position: relative;
}

ul.yo-fm .fm-container {
    width: 860px;
    max-width: calc(100vw - 40px);
    min-height: 320px;
    padding: 14px 12px;
    border: 1px solid #e7edf4;
    background: #ffffff;
    box-shadow:
        0 22px 54px rgba(15, 23, 42, 0.11),
        0 10px 22px rgba(15, 23, 42, 0.05);
}

ul.yo-fm .fm-container .fm-brand-info {
    overflow: hidden;
    margin: 0 6px 8px;
}

ul.yo-fm .fm-container .fm-title {
    margin-bottom: 8px;
}

ul.yo-fm .fm-container .fm-title a {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    color: #16304d;
    background: linear-gradient(135deg, #f7faff 0%, #edf4fd 100%);
    border: 1px solid #e3ebf5;
    line-height: 1.2;
}

ul.yo-fm .fm-container .fm-brand-info .fm-image {
    margin-bottom: 10px;
    text-align: center;
}

ul.yo-fm .fm-container .fm-descr {
    margin-bottom: 8px;
    padding: 0 2px;
    color: #6f7880;
    font-size: 11px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 300;
}

ul.yo-fm .fm-container > ul {
    display: block;
    float: left;
    width: 50%;
}

ul.yo-fm .fm-container > ul > li {
    overflow: hidden;
    margin: 0 8px;
    border: 0;
    background: transparent;
}

ul.yo-fm .fm-container > ul > li + li {
    margin-top: 8px;
}

/* =========================
   LISTS INSIDE MEGA
========================= */
ul.yo-fm ul.fm-list {
    overflow: hidden;
    width: auto;
    padding: 0;
    margin: 0;
}

ul.yo-fm ul.fm-list li {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}

ul.yo-fm ul.fm-list li + li {
    margin-top: 3px;
}

ul.yo-fm ul.fm-list li a {
    position: relative;
    padding: 0 0 0 12px;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.35;
    color: #4b5359;
    background: transparent;
}

ul.yo-fm ul.fm-list li a:hover {
    color: #0950a6;
    background: transparent;
}

ul.yo-fm ul.fm-list li a span:before {
    content: '\00B7';
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 16px;
    line-height: 0;
    color: #0950a6;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}

/* =========================
   PRODUCT / IMAGE CARDS
========================= */
ul.yo-fm .fm-container .fm-image-center,
ul.yo-fm .fm-container .fm-image-left .fm-image {
    border: 1px solid #e8eef5;
    background: #ffffff;
    overflow: hidden;
    -webkit-transition: all .28s ease;
       -moz-transition: all .28s ease;
        -ms-transition: all .28s ease;
         -o-transition: all .28s ease;
            transition: all .28s ease;
}

ul.yo-fm .fm-container .fm-image-center:hover,
ul.yo-fm .fm-container .fm-image-left .fm-image:hover {
    border-color: rgba(9, 80, 166, 0.18);
    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.08),
        0 4px 10px rgba(15, 23, 42, 0.03);
    -webkit-transform: translateY(-2px);
       -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
         -o-transform: translateY(-2px);
            transform: translateY(-2px);
}

ul.yo-fm .fm-container .fm-image-center > a {
    display: block;
    padding: 8px 6px;
    color: #1f2529;
    font-weight: 300;
    text-align: center;
    background: #fafbfc;
}

ul.yo-fm .fm-container .fm-image-center a.fm-pr-name {
    min-height: 30px;
    margin-bottom: 3px;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
    font-weight: 300;
}

ul.yo-fm .fm-container .fm-image-center .fm-image {
    position: relative;
}

ul.yo-fm .fm-container .fm-image-left .fm-image {
    float: left;
    width: 30%;
    margin-right: 5%;
}

ul.yo-fm .fm-container .fm-image-left > a {
    font-size: 12px;
    font-weight: 300;
    background: #fafbfc;
    padding: 8px 6px;
}

/* =========================
   PRICE / RATING / CART
========================= */
ul.yo-fm .fm-price {
    display: inline-block;
    margin-left: .3em;
    padding: 4px 7px;
    font-size: 10px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    color: #0950a6;
    background: rgba(9, 80, 166, 0.08);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

ul.yo-fm .fm-container .fm-image-center .fm-price {
    background: rgba(9, 80, 166, 0.08);
    box-shadow: none;
}

ul.yo-fm .fm-rating {
    float: right;
    margin: 4px 0;
}

ul.yo-fm .fm-price-left {
    display: inline-block;
    float: none;
    overflow: hidden;
    margin: 6px 0;
}

ul.yo-fm .fm-rating-center {
    position: absolute;
    left: 8%;
    bottom: 12%;
}

ul.yo-fm .fm-cart-center {
    position: absolute;
    right: 8%;
    bottom: 11%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

ul.yo-fm li:hover > .fm-image .fm-cart-center {
    visibility: visible;
    opacity: 1;
}

/* =========================
   DESKTOP HOVER OPEN
========================= */
@media (min-width: 992px) {
    ul.yo-fm li:hover > ul,
    ul.yo-fm li:hover > .fm-container {
        display: block;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1199px) {
    ul.yo-fm .fm-container {
        width: 700px;
        max-width: calc(100vw - 30px);
        padding: 12px 10px;
    }

    .yo-heading {
        font-size: 13px;
        padding: 10px 13px;
    }

    .yo-menu ul.yo-fm li > a {
        min-height: 38px;
        padding: 8px 30px 8px 11px;
        font-size: 11px;
    }

    .yo-menu ul.yo-fm li > a:hover {
        padding-left: 13px;
    }
}

/* =========================
   MOBILE / TABLET
========================= */
@media (max-width: 991px) {
    .yo-menu {
        margin-bottom: 12px;
    }

    .yo-heading {
        min-width: 100%;
        padding: 10px 12px;
        font-size: 13px;
    }

    .yo-heading.yo-close {

    }

    .yo-wrapper {

    }

    .yo-menu ul.yo-fm li > a {
        min-height: 36px;
        padding: 8px 28px 8px 10px;
        font-size: 11px;
    }

    .yo-menu ul.yo-fm li > a:hover {
        padding-left: 12px;
    }

    ul.yo-fm.fm-one ul,
    ul.yo-fm .fm-container,
    #column-right ul.yo-fm.fm-one ul,
    #column-right ul.yo-fm .fm-container {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        display: none;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: 0;
        padding: 8px;
        border: 0;
        border-top: 1px solid #ecf1f6;
        border-radius: 0;
        box-shadow: none;
        background: #fbfdff;
    }

    ul.yo-fm .fm-container > ul {
        float: none;
        width: 100%;
    }

    ul.yo-fm .fm-container > ul > li {
        margin: 0;
    }

    ul.yo-fm .fm-container > ul > li + li {
        margin-top: 8px;
    }

    ul.yo-fm .fm-container .fm-title a {
        font-size: 12px;
        padding: 7px 8px;
    }

    ul.yo-fm .fm-container .fm-image-left .fm-image {
        width: 78px;
        margin-right: 10px;
    }

    ul.yo-fm .fm-cart-center {
        visibility: visible;
        opacity: 1;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 575px) {
    .yo-heading {
        padding: 9px 10px;
        font-size: 12px;

    }

    .yo-heading.yo-close {
    }

    .yo-wrapper {

    }

    .yo-menu ul.yo-fm li > a {
        min-height: 34px;
        padding: 7px 24px 7px 9px;
        font-size: 10px;
    }

    ul.yo-fm li a.fm-parent:after {
        right: 9px;
        font-size: 11px;
    }

    ul.yo-fm .fm-container {
        padding: 7px;
    }

    ul.yo-fm .fm-container .fm-title a {
        font-size: 11px;
    }

    ul.yo-fm ul.fm-list li a {
        font-size: 10px;
    }

    ul.yo-fm .fm-price {
        font-size: 9px;
        padding: 3px 6px;
    }
}

