.popup-report {
    position: fixed;
    z-index: 11;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.popup-report.active {
    opacity: 1;
    pointer-events:all;
}

.popup-report .fon {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}

.popup-report .main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 3.75vw;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 3.125vw;
}

.popup-report .img img {
    width: 14.89vw;
    height: 14.89vw;
}

.popup-report .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25vw;
}

.popup-report .text-container .title {
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.popup-report .text-container .subtitle {
    color: #444651;
    font-size: 0.833vw;
    font-family: "Inter Tight", serif;
    font-weight: 500;
}

.popup-report .text-container .btn {
    padding: 1.041vw 1.25vw;
    border-radius: 5px;
    background-color: #EF7403;
    color: #FFFFFF;
    font-size: 0.833vw;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    transition: background-color 300ms ease;
}

.popup-report .text-container .btn:hover {
    background-color: #1976D2;
    cursor: pointer;
}

@media (max-width: 768px) {
    .popup-report .main {
        width: 87.69vw;
        padding: 15.38vw 6.15vw;
        flex-direction: column;
    }

    .popup-report .img img {
        width: 33.33vw;
        height: 33.33vw;
    }

    .popup-report .text-container {
        margin-top: 9.23vw;
        gap: 3.07vw;
    }

    .popup-report .text-container .title {
        font-size: 7.17vw;
        text-align: center;
    }

    .popup-report .text-container .subtitle {
        font-size: 4.1vw;
        text-align: center;
    }

    .popup-report .text-container .btn {
        margin-top: 3.07vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
        width: 100%;
        text-align: center;
    }
}