﻿.top-addr {
    position: relative;
    cursor:pointer;
    width:260px;
}
.top-addr:before  {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border: 2px solid transparent;
    border-top: 10px solid #f04247;
    border-bottom: 0;
    border-right: 0px solid transparent;
    border-left: 15px solid transparent;
}
.top-addr:hover > .top-addr-info {
display:block;
}

.top-addr-info {
    display:none;
    position: absolute;
    box-sizing: border-box;
    bottom: 50%;
    left: 100%;
    min-width: 250px;
    z-index: 10;
    margin-left: 10px;
    background-color: #edecce;
    padding: 7px 14px;
}
@media (max-width:600px) {
.top-addr-info {
display:none !important;
}
}