﻿.user-cart {
    width: 200px;
    position: absolute;
    top: 50px;
    right: 150px;
    background: #fffafa;
    padding-top: 5px;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23) !important;
    display: none;
}
    .user-cart:before {
        position: absolute;
        top: -7px;
        right: 15px;
        display: inline-block;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #ccc;
        border-left: 7px solid transparent;
        border-bottom-color: #f2edf1;
        content: '';
    }

.MenuLogout {
    background-color: #e1e1e1;
    color: #000;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
    .user-cart:before {
        right: 170px;
    }
    .user-cart {
        left: 50px;
    }

}