.location__wrap {
    display: block;
    position: absolute;
    top: 30px;
    left: 10px;
    min-width: 245px;
    background: #fff;
    border-radius: 2px;
    padding: 20px;
    box-shadow: 1px 30px 70px 1px rgba(119, 136, 127, 0.2);
    z-index: 999;
}

.location__wrap:before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #fff transparent;
}
.location__guess {
    margin-bottom: 5px;
}

.location__wrap .btn {
    font-size: 12px;
    height: 30px;
    line-height: 28px;
    padding: 0 25px;
}
.b_location__header .st_arows {
    position: relative;
    border-bottom: 1px dotted navy;
}
.b_location__header .st_arows:hover{
    color: #f45b50;
    border-color: #f45b50;
}
.b_location__header .st_arows:after,
.b_location__header .st_arows:before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    right: -15px;
    background: #000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.b_location__header .st_arows:before {
    margin-right: 4px;
    -webkit-transform: scale(.96,.8) rotate(50deg);
    transform: scale(.96,.8) rotate(50deg);
}
.b_location__header .st_arows:after {
    -webkit-transform: scale(.96,.8) rotate(-50deg);
    transform: scale(.96,.8) rotate(-50deg);
}