.floating {
    position: fixed;
    bottom: 2vh;
    right: 1vw;
    width: 320px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px #f0f0f0 solid;
    box-shadow: 0 0 8px rgb(0, 0, 0,0.5);
    z-index: 99;
}

.none {
    display: none;
}

.floating img {
    width: 180px;
}

.floating p {
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
}

.floating div a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 48px;
    background: #D12C38;
    border-radius: 999px;
    color: #fff;
    font-weight: bold;
}

.floating_close {
    position: absolute;
    right:12px;
    top: -4px;
    font-size: 20px;
    cursor: pointer;
}



@media screen and (max-width: 600px) {
 .floating {
    bottom: 1vh;
    width: 48vw;
    height: 120px;
    gap: 8px;
}

.floating img {
    width: 30vw;
}

.floating p {

    font-size: 10px;
}

.floating div a {
    width: 120px;
    height: 24px;
     font-size: 10px;
}

.floating_close {
    right:6px;
    top: -2px;
    font-size: 16px;
}


}