.glgeo {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 0 0 0 32px;
    padding: 0 12px 0 10px;
    border: 2px solid rgba(244, 243, 243, 1);
    border-radius: 12px;
    cursor: default;
    transition: border-color .2s, opacity .2s, visibility .2s;
}

.glgeo:hover {
    border-color: #eee;
}

.glgeo--hide {
    opacity: 0;
    visibility: hidden;
}

.glgeo__city {
    display: flex;
    align-items: center;
    margin: 0 15px 0 5px;
    font: 500 16px/20px "sf pro display";
    cursor: pointer;
    transition: color 150ms;
}

.glgeo__city:hover {
    color: #ff0000;
}

.glgeo__cityTick {
    position: relative;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
    margin: 0 0 0 5px;
    background: #F4F3F3;
    border-radius: 50%;
}

.glgeo__cityTick > svg {
    position: relative;
    top: 1px;
}

.glgeo__address {
    margin: 0 0 0 5px;
    color: rgba(152, 152, 152, 1);
    font: 500 16px/20px "sf pro display";
    cursor: pointer;
    transition: color .2s, background .2s;
}

.glgeo__address:hover {
    color: #000;
}

.glgeo__clear {
    position: relative;
    top: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background: #F4F3F3;
    border-radius: 50%;
    color: #989898;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    opacity: 1;
    visibility: visible;
    transition: background .25s, opacity .2s, visibility .2s;
}

.glgeo__clear:hover {
    background: #eee;
}

.glgeo__clear::after {
    content: 'Очистить адрес';
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    padding: 4px 8px;
    background: #333;
    color: #fff;
    font: 500 12px/1.2 "sf pro display";
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity .25s;
}

.glgeo__clear:hover::after {
    opacity: 1;
}

.glgeo__address--empty {
    padding: 0 6px;
    color: #0AAA00;
    font: 500 14px/20px "sf pro display";
    background: rgba(45, 195, 106, .1);
    border-radius: 5px;
}

.glgeo__address--empty:hover {
    color: #0a9100;
    background: rgba(45, 195, 106, .15);
}