﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800');

* {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}



.User-area {
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
}

    .User-area > .User-avtar {
        width: 100%;
        height: 100%;
        border-radius: 8rem;
        border: 2px solid #fff;
        box-shadow: 0px 0px 12px -5px #000;
    }

        .User-area > .User-avtar > img {
            width: 100%;
            height: 100%;
            border-radius: 30px;
        }

.User-Dropdown {
    display: none;
    position: absolute;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0px 0px 8px rgba(214, 214, 214, 0.78);
    list-style: none;
    padding: 0 20px;
    width: 150px;
    margin: 0;
    top: 70px;
    right: -9%;
}

    .User-Dropdown:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        margin-left: -0.5em;
        right: 0px;
        box-sizing: border-box;
        border: 7px solid black;
        border-color: transparent transparent #fff #fff;
        transform-origin: 0 0;
        transform: rotate(135deg);
        box-shadow: -3px 3px 3px -3px rgba(214, 214, 214, 0.78);
    }

    .User-Dropdown.U-open {
        display: block;
        z-index:999 !important;
    }

    .User-Dropdown > li {
        padding: 0px;
        line-height: 1rem;
        border-bottom: 1px solid rgba(215, 215, 215, 0.17);
    }

        .User-Dropdown > li:last-child {
            border-bottom: 0px;
        }

        .User-Dropdown > li > a {
            font-size: 13px;
            padding: 15px 25px 16px 10px;
            text-decoration: none;
            color: #1787e0;
            transition: all 0.2s ease-out;
        }

    .User-Dropdown span {
        background: rgb(214 22 22);
        padding: 3px 10px;
        color: #fff;
        border-radius: 30px;
        font-size: 13px;
    }

    .User-Dropdown > li:before {
        content: '';
        width: 0px;
        height: 40px;
        position: absolute;
        background: #2196f3;
        margin-top: 4px;
        border-radius: 0 1px 1px 0;
        left: 0px;
        transition: all 0.2s ease;
    }

    .User-Dropdown > li:hover:before {
        width: 5px;
        border-radius: 30px;
    }

    .User-Dropdown > li a:hover {
        margin-left: 5px;
    }
