.kebab-component .kebab {
    cursor: pointer;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 16px;
    top: 12px;
}

.kebab-component .kebab figure {
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background: #5b5b5b;
    margin: 3px 0;
}

.kebab-component .middle {
    transition: all 0.25s cubic-bezier(0.72, 1.2, 0.71, 0.72);
    transform: scale(1);
    position: relative;
    box-shadow: 0 0.1px 0.1px 0 rgba(0, 0, 0, 0.16), 0 0.1px 0.3px 0 rgba(0, 0, 0, 0.12);
    -webkit-filter: blur(0.1px);
    filter: blur(0.1px);
}

.kebab-component .middle.active {
    transform: scale(4.5);
    transition: all 0.25s cubic-bezier(0.32, 2.04, 0.85, 0.54);
    box-shadow: 0 0.1px 0.1px 0 rgba(0, 0, 0, 0.16), 0 0.1px 0.3px 0 rgba(0, 0, 0, 0.12);
}

.kebab-component .cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    margin-top: -1px;
    font-family: 'Nunito', sans-serif;
    color: white;
    transition: all 0.2s cubic-bezier(0.72, 1.2, 0.71, 0.72);
    font-size: 22px;
    user-select: none;
}

.kebab-component .cross.active {
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.15s cubic-bezier(0.32, 2.04, 0.85, 0.54);
}

.kebab-component .nav {
    margin-left: 20%;
}

.kebab-component .nav > li {
    display: inline-block;
    padding: 1em 18px;
    cursor: pointer;
}

.kebab-component .nav > li:hover {
    background: #b3b3b3;
}

.kebab-component .dropdown {
    position: absolute;
    right: 0;
    top: 3em;
    transition: all 0.25s ease-out;
    transform: scale(0);
    transform-origin: 100% 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

.kebab-component .dropdown li {
    display: block;
    width: 100%;
    margin: 5px;
}

.kebab-component .dropdown li:hover {
    background: #656565;
}

.kebab-component .dropdown:hover ul {
    transform: scale(1);
}

.kebab-component .dropdown.active {
    z-index: 9999;
    background: #919191;
    transform: scale(1);
    transition: all 0.25s cubic-bezier(0.5, 1.8, 0.9, 0.8);
    padding-left: 5px;
}


.kebab-component .follow {
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: #545454;
    display: block;
    margin: 300px auto 0;
    white-space: nowrap;
    padding: 13px;
    box-sizing: border-box;
    color: white;
    transition: all 0.2s ease;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.2);
}

.kebab-component .follow i {
    margin-right: 20px;
    transition: margin-right 0.2s ease;
}

.kebab-component .follow:hover {
    width: 134px;
}

.kebab-component .follow:hover i {
    margin-right: 10px;
}

@media screen and (max-width: 800px) {
    .kebab-component .follow {
        margin: 400px auto 0;
    }
}
