.Panier {
    position: absolute;
    top: 170px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 40px;
    border: 1px #00000064 solid;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #000000;
    -webkit-text-stroke: .1px #faf5ed;
    z-index: 1;
    transition: background-color .2s;
}

.Panier:hover {
    background-color: rgba(128, 128, 128, 0.05);
}

/*.Panier::after {
    position: absolute;
    top: -8px;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00000064;
}

.Panier::before {
    position: absolute;
    bottom: -8px;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00000064;
}*/

.Panier span {
    transform: scaleY(1.1);
}


@media (max-height: 1200px) {
    .Panier {
        top: 10vh;
    }
}


@media (max-height: 800px) {
    .Panier {
        top: 14vh;
    }
}


@media (max-height: 650px) {
    .Panier {
        top: 16vh;
    }
}

@media (max-height: 500px) {
    .Panier {
        top: 19vh;
    }
}