.position-mask {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    z-index: 1100;
}

.position-detail {
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background:white;
    border-radius: 10px 10px 0 0;
    
}


.position-container {
    background: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 85%;
    /* max-width: 400px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.position-opening {
    animation: couponDetailSlide 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.position-closeing {
    animation: couponDetailClose 0.3s ease-out;
}