.location {
    position: fixed;
    bottom: 3em;
    right: 3em;
    z-index: 100;
}
@media screen and (max-width: 1024px) {
    .location {
        bottom: 3em;
        left: 1em;
        right: 1em;
    }
}
.location {
    background: linear-gradient(220deg, rgb(255 255 255) 0%, #eee 100%);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 20px #00000050;
}
.location {
    box-sizing: border-box;
    padding: 1.5em;
}
.location .inner {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

/**** Address ****/
.location .inner .address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.location .inner .address {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 50px;
}
.location .inner .address {
    box-sizing: border-box;
    padding: 8px 0;
}
.location .inner .address svg {
    width: 18px;
    height: auto;
}
.location .inner .address p {
    font-family: 'content-font';
    font-size: 14px;
}
.location .inner .address svg,
.location .inner .address p {
    color: #111;
}
.location .inner .address .copy {
    cursor: pointer;
}
.location .inner .address .copy {
    color: #999;
}
.location .inner .address .copy:hover {
    color: cadetblue;
    transition: .3s ease-in-out;
}

@keyframes locationIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
        filter: blur(6px);
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes locationOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
        filter: blur(4px);
        visibility: hidden;
    }
}

.location.locationIn {
    visibility: visible;
    pointer-events: auto;
    animation: locationIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.location.locationOut {
    visibility: visible;
    pointer-events: none;
    animation: locationOut 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}