#popup-php * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#popup-php {
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    background-color: #85265c;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

/*POPUP STYLES*/
#popup-php .modal-background {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(32,33,36,.6);
    z-index: 1001;
}
#popup-php .modal {
    position: relative;
    font-family: "Roboto-Medium", sans-serif;
    background: white;
    width: 100%;
    height: 100%;
    margin: 5%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#popup-php .modal-img {
    max-width: 795px;
    height: fit-content;
}
#popup-php .modal-text {
    max-width: 560px;
    min-width: 300px;
    height: auto;
}
#popup-php .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #979797;
    font-weight: 400;
    fill: rgb(95,99,104);
}
#popup-php .modal-content {
    display: flex;
    width: 100%;
    padding: 5% 4%;
}
#popup-php .modal-content.only-text {
    padding: 5%;
}
#popup-php .modal-content.no-image {
    display: block;
}
#popup-php .image-column {
    flex: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}
#popup-php .image-column img {
    width: 100%;
}
#popup-php .text-column {
    flex: 15;
    padding: 20px 20px 20px 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#popup-php .text-column p {
    text-wrap: pretty;
}
#popup-php .text-column #chrome-info,
#popup-php .text-column #edge-info {
    width: 20px;
    margin: 0 5px;
}
#popup-php .two-buttons {
    display: flex;
    gap: 20px;
}
#popup-php .note {
    font-size: .8em;
    padding: 0 15% 5% 15%;
    margin: 0;
    text-wrap: pretty;
    text-align: center;
}
#popup-php h1 {
    margin-bottom: 20px;
    color: #85265c;
    font-size: 1.375em;
    line-height: 1.24;
    font-weight: 500;
    text-wrap: pretty;
}
#popup-php p {
    margin-bottom: 10px;
    color: #959bae;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
}
#popup-php .buttons {
    text-align: right;
}
#popup-php .btn {
    padding: 15px 10px;
    background-color: #f58f1e;
    border: 2px solid #f58f1e;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    width: fit-content;
    min-width: 80px;
    height: fit-content;
    font-size: 12px;
    font-weight: bold;
    padding: 15px 10px;
    white-space: nowrap;
    text-transform: uppercase;
}

#popup-php .modal-text .btn {
    margin-top: 10px;
}

#popup-php .btn-outline {
    background-color: #ffffff;
    color: #f58f1e;
}
@media (max-width: 601px), (max-height: 501px) {
    #popup-php .close-btn {
        top: 5px;
        right: 5px;
    }
    #popup-php .modal {
        height: auto;
        max-height: 90%;
        overflow-y: auto;
        /* padding: 5% 0; */
    }
    #popup-php .modal-content {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    #popup-php .text-column {
        padding: 0 10px 30px 10px;
    }
    #popup-php h1 {
        text-align: center;
    }
    #popup-php .settings-btn {
        margin: 20px auto 0 auto;
    }
    #popup-php .image-column img {
        max-width: 240px;
        margin-bottom: 30px;
        padding: 0px 30px 0 30px;
    }
    #popup-php .btn {
        margin: 20px auto 0 auto;
    }
    #popup-php .two-buttons {
        text-align: center;
    }
    #popup-php .settings-btn {
        padding: 15px 30px;
    }
}
@media (max-height: 501px) {
    #popup-php .modal {
        max-width: 40%;
    }
    #popup-php .modal-text {
        padding: 2% 0;
    }
}
