#close_widget {
    display: none;
    position: fixed;
    height: 30px;
    width: 30px;
    right: -200px;
    bottom: 16px;
    border: 0px;
    z-index: 9999999;
    cursor: pointer;
    /* transition: opacity 0.5s ease-in-out; */
    opacity: 0;
}
#close_widget::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 3px;
    height: 25px;
    background-color: #333;
    filter: brightness(100%);
}
#close_widget::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 3px;
    height: 25px;
    background-color: #333;
    filter: brightness(100%);
}
@media (min-height: 670px) {
    #close_widget.active {
        height: 64px;
        width: 65px;
        right: 15px;
        bottom: 16px;
        /* transition: opacity 0.5s ease-in-out; */
        opacity: 1;
        border-radius: 50%;
    }
}
@media (max-height: 669px) {
    #close_widget.active {
        top: 28px;
        right: 28px !important;
        bottom: auto;
        /* transition: opacity 0.5s ease-in-out; */
        opacity: 1;
        border-radius: 50%;
        padding: 5px;
        height: 48px;
        width: 48px;
    }
}