.rc-notice-wrapper {
    max-width: 600px;
}

.rc-notice-right-bottom {
    position: fixed;
    right: 50px;
    bottom: 60px;
    max-width: 365px;
    width: 90%;
    height: 365px;
    opacity: 0;
    visibility: hidden;
    z-index: 1049;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    transition: opacity .3s ease, visibility .3s ease, bottom .3s ease;
}

.rc-notice-right-bottom.visible {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.rc-notice-right-bottom .rc-notice-right-bottom-close-btn {
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    padding: 0;
    width: 34px;
    height: 34px;
    color: #5E616B;
    opacity: 0.75;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: 0;
    transition: opacity .3s ease;
}

.rc-notice-right-bottom .rc-notice-right-bottom-close-btn:hover {
    opacity: 1;
}

.rc-notice-right-bottom .rc-notice-right-bottom-close-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.rc-notice-right-bottom-content {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 500px) {
    .rc-notice-right-bottom {
        right: 0;
        left: 0;
        margin: auto;
        height: auto;
    }
}