/*
 * YUMenu v1.0.3 Copyright © 2017, iDiY
 */

.panel-heading
{
    font-size: 16px;
    position: relative;
    cursor: pointer;
}
.panel-heading:after
{
    position: absolute;
    top: 50%;
    right: 15px;
    width: 14px;
    height: 2px;
    margin-top: -5px;
    content: '';
    opacity: 0;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 2px transparent, 0 4px rgba(0,0,0,.5), 0 6px transparent, 0 8px rgba(0,0,0,.5);
       -moz-box-shadow: 0 2px transparent, 0 4px rgba(0,0,0,.5), 0 6px transparent, 0 8px rgba(0,0,0,.5);
            box-shadow: 0 2px transparent, 0 4px rgba(0,0,0,.5), 0 6px transparent, 0 8px rgba(0,0,0,.5);
}
.panel-heading.menu-collapsed
{
    padding-right: 30px;
    -webkit-transition: border-color .15s ease;
       -moz-transition: border-color .15s ease;
        -ms-transition: border-color .15s ease;
         -o-transition: border-color .15s ease;
            transition: border-color .15s ease;
    border-color: transparent;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel-heading.menu-collapsed:after
{
    opacity: 1;
}

.yum-pm
{
    position: relative;
}
.yum-pm ul
{
    display: none;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.yum-pm .igroup > ul
{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
}
.yum-pm ul ul
{
    position: absolute;
    top: 0;
    left: 100%;
}
.yum-pm ul.pm-invisible,
.yum-pm ul ul.pm-invisible
{
    -webkit-transform: translate(-100%, 0);
       -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
         -o-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
}
.yum-pm ul.pm-trans,
.yum-pm ul ul.pm-trans
{
    -webkit-transition: transform .15s ease;
       -moz-transition: transform .15s ease;
        -ms-transition: transform .15s ease;
         -o-transition: transform .15s ease;
            transition: transform .15s ease;
}
.yum-pm li
{
    line-height: 1.5;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}
.yum-pm li + li,
.yum-pm li li,
.yum-pm .igroup + li,
.yum-pm li +.igroup
{
    border-top: 1px solid rgba(0,0,0,.065);
}
.yum-pm li .icurrent
{
    font-weight: bold;
}
.yum-pm .iwrapper
{
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    color: #595959;
    border: none;
    outline: none;
    background-color: transparent;

    align-items: stretch;
}
.yum-pm li.active > .iwrapper,
.yum-pm li .iwrapper:hover
{
    color: #333;
    background-color: rgba(0,0,0,.02);
    text-shadow: 0 1px 0 #fff;
}
.yum-pm .iwrapper > div
{
    position: relative;
    padding: .9rem 1.5rem;
    vertical-align: middle;
    word-wrap: break-word;
}
.yum-pm .iwrapper .ititle
{
    display: flex;

    flex-shrink: 2;
    flex-grow: 6;
    justify-content: space-between;
    align-items: center;
}
.yum-pm .iwrapper .icount
{
    font-size: 85%;
    font-weight: normal;
    line-height: 1;
    margin-right: 0;
    margin-left: .5rem;
    padding: .25em .55em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 1rem;
    background-color: #fff;
}
.yum-pm .icats .icount
{
    margin-right: 1.5rem;
}
.yum-pm .iwrapper .iicon
{
    display: flex;
    padding: 0 1.5rem;

    justify-content: space-between;
    align-items: center;
}
.yum-pm .iwrapper .iicon img
{
    display: block;
    max-width: 1.5rem;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    vertical-align: middle;
    border: 0;
}
.yum-pm .iwrapper .iicon + div
{
    padding-left: 0;
}
.yum-pm .iwrapper .iicon .fa
{
    font-size: 1.5rem;
}
.yum-pm .iparent
{
    cursor: pointer;
}
.yum-pm li > .iparent:after
{
    position: absolute;
    top: 50%;
    right: .25rem;
    width: 2em;
    height: 2em;
    margin-top: -1em;
    content: '';
    opacity: .35;
    background: transparent url('image/yum.svg') 0 -4em no-repeat;
    -webkit-background-size: 2em 8em;
       -moz-background-size: 2em 8em;
         -o-background-size: 2em 8em;
            background-size: 2em 8em;
}
.yum-pm li li.active > .iparent:after
{
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}
.yum-pm li.active > .iparent:after,
.yum-pm li .iparent:hover:after
{
    opacity: 1;
}
.yum-pm li li .iwrapper .ititle:before
{
    font-weight: normal;
    position: absolute;
    top: 50%;
    left: .25em;
    margin-top: -.8em;
    content: '\2022';
    opacity: .65;
    color: #23a1d1;
}
.yum-pm li li .pm-prev .ititle:before
{
    content: '';
}
.yum-pm li li .icurrent .ititle:before,
.yum-pm li li .iwrapper:hover .ititle:before
{
    opacity: 1;
}
.yum-pm li li .iwrapper
{
    padding-left: 1.6em;
}
.yum-pm li li.active > .iwrapper
{
    padding-left: 0;
}
.yum-pm li li.active
{
    border-top: none;
}
.yum-pm *:before,
.yum-pm *:after
{
    display: block;
}
.panel-heading:after,
.yum-pm .iwrapper
{
    -webkit-transition: all .15s ease;
       -moz-transition: all .15s ease;
        -ms-transition: all .15s ease;
         -o-transition: all .15s ease;
            transition: all .15s ease;
}
