﻿#MenuBlockButton {
    position: fixed;
    background: #0CAF89;
    display: flex;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    bottom: 40px;
    left:20px;
    z-index:1;
}

@media (min-width: 992px) {
    #MenuBlockButton {
        height: 100%;
        width: 25px;
        border-radius: 0;
        bottom: initial;
        left: 0;
        z-index: initial;
        transition: all 0.3s linear;
    }
}

#MenuBlockButton:hover {
    background: #12a784;
}

#MenuBlockButtonText {
    margin: auto auto;
    color: white;
}

#MenuBlockPC {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    z-index: 100;
    left: -100%;
    width: 300px;
    transition: all 0.3s linear;
    background: white;
    border-right: 1px solid #e9e9e9;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

    #MenuBlockPC.Active {
        left: 0%;
    }

#MenuPCButtonLogOut {
    border: none;
    outline: none !important;
    color: white;
    font-family: 'SourceSansPro-SemiBold';
    font-size: 15px;
    width: 100%;
    background: #F34F49;
    padding: 0.3rem 0;
    border-radius: 7px;
    margin-top: 0.5rem;
    transition: all 0.3s linear;
}

    #MenuPCButtonLogOut:hover {
        background: #dd4944;
    }

.MenuPCItem {
    padding: 1rem;
    font-family: 'SourceSansPro-SemiBold';
    font-size: 14px;
    color: #b2aaaa;
    transition: all 0.3s linear;
    cursor: pointer;
    background: white;
    border-radius: 7px;
}

    .MenuPCItem:hover {
        background: #0caf8940;
        color: #0CAF89;
    }

.MenuPCItemParent {
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    font-family: 'SourceSansPro-SemiBold';
    font-size: 14px;
    color: #b2aaaa;
    transition: all 0.3s linear;
    cursor: pointer;
    position: relative;
    transition: all 0.3s linear;
    border-radius: 7px;
}

    .MenuPCItemParent:hover {
        background: #0caf8940;
        color: #0CAF89;
    }

.MenuPCItemParentChield {
    opacity: 0;
    position: absolute;
    right: -55%;
    border: 1px solid #e9e9e9;
    width: 300px;
    top: -1px;
    left: -1px;
    margin-left: 300px;
    transition: all 0.3s linear;
    visibility: hidden;
    background: white;
    box-shadow: 10px -10px 20px #0000000f, 10px 10px 20px #0000000f, 10px 0px 20px #0000000f !important;
}

.MenuPCItemBlock {
    position: relative;
    padding: 4px;
    border-bottom: 1px solid #e9e9e9;
}

    .MenuPCItemBlock:hover > .MenuPCItemParentChield {
        opacity: 1;
        visibility: visible;
    }

.MenuPCItemParentChield:hover ~ .MenuPCItemParent {
    color: #0CAF89;
}
