body.ucet .popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s;
}

body.ucet .popup.visible{
    opacity: 1;
    pointer-events: all;
}

body.ucet .popup .inner{
    position: relative;
    background: white;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.ucet .popup.period .inner{
    max-width: 600px;
}

body.ucet .popup .inner h4{
    font-size: 24px;
    font-weight: normal;
    color: #CB0044;
}

body.ucet .popup .inner p{
    font-size: 16px;
}

body.ucet .popup .inner .close{
    position: absolute;
    right: 20px;
    top:20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

body.ucet .popup .inner .close:hover{
    color: #CB0044;
}