
#pop-box-notice {
    position: relative;
    z-index: 999;
    position: fixed;
    left: 20px;
    bottom: 20px;
    padding:  20px;
    width: 360px;
    height: 120px;
    overflow: hidden;
    line-height: 1.1;
}

#pop-box-notice-close {
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
}

#pop-box-inner {
    box-sizing: border-box;
    border-radius: 5px;
    min-width: 230px;
    max-width: 320px;
    height: 80px;
    transform: translateY(200%);
    background: #fff;
    box-shadow: 2px 2px 10px 2px rgba(11, 10, 10, 0.2);
}

.notice-animation{

    animation:showNotice 6s;
	-webkit-animation:showNotice 6s;
	-o-animation:showNotice 6s;
	-moz-animation:showNotice 6s;
}
@keyframes showNotice {
    0% {
        transform: translateY(200%);
    }
    10% {
        transform: translateY(0%);
    }
    90% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(200%);
    }
}

#pop-box-img {
    height: 50px;
    width: 50px;
    vertical-align: middle;
    margin-left: 10px;
    display: inline-block;
}

.pop-box-right {
    display: inline-block;
    padding:  15px 0 0 15px;
    color: gray;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
    vertical-align: middle;
}

#pop-purchased-count {
    font-weight: 600;
}

.pop-time-text,#pop-time {
    font-size: 12px;
    line-height: 18px;
}


@media only screen and (max-width: 650px) {
    #pop-box-notice {
        display:none;
    }
}