.popup-trigger {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #D74100;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    height: 80px;
    width: 80px;
    border-radius: 80px;
}
.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 2;
}
.popup-content.active {
    display: block;
    z-index: 999;
    margin-top: 50px;
    width: 1024px;
}
.popup-content .image {
    float: left;
    margin-right: 20px;
    height: 600px;
}
.popup-content .content {
    overflow: auto;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #8B949C;
}
.popup-content .report-button {
    background-color: #D74100;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
.popup-content p {
    margin-bottom: 10px;
}
.close {
    color: #16161D;
    font-size: 25px;
    text-align: -webkit-right;
    cursor: pointer;
}
.popup-trigger.hidden {
    display: none;
}
.report-button a {
    color: white;
}
/* CSS for mobile devices */
@media (max-width: 768px) {
    .popup-content .image {
        float: left;
        margin-right: 20px;
        height: auto;
    }
    /* Make the popup full screen */
    .popup-content.active {
        display: block;
        z-index: 999;
        margin-top: 50px;
        width: 100%;
    }
    /* Center the content vertically and horizontally */
    .popup-content .content {
        position: absolute;
        top: 65%;
        left: 72%;
        transform: translate(-50%, -50%);
        text-align: center;
        border: none !important;
    }
    .report-button a {
        color: #fff;
        font-size: 15px;
    }
    .popup-trigger {
        position: fixed;
        right: 10px;
        bottom: 10px;
        background-color: #D74100;
        color: #fff;
        padding: 10px;
        border: none;
        border-radius: 100%;
        cursor: pointer;
        z-index: 1;
        height: 70px !important;
        width: 70px !important;
    }
    /* Adjust the font sizes */
    .popup-content h2 {
        font-size: 24px;
        display: none;
    }
    .popup-content .report-button {
        font-size: 18px;
    }
    /* Adjust the close button */
    .popup-content .close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
    }
}
@media (min-width: 770px)and (max-width:820px) {
    .popup-content.active {
        width: 700px;
    }
}
@media (max-width: 500px) {
    button.report-button {
        margin-right:465px;
        width: 110px;
        margin-bottom: 300px;
        margin-left: 40px;
    }
}