.wcsmodalBackground {
    position: fixed;
    float: left;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 460px;
    height: auto;
    border-radius: 20px;
    text-align: left;
    padding: 24px 24px;

    @media only screen and (max-width: 1370px) {
        width: 70%;
        max-width: 350px;
        height: 80%;
    }

    .support-body {
        .spt-header {
            display: flex;
            flex-direction: row;
            gap: 24px;
            text-align: center;
            align-items: center;

            .brandlogo {
                text-align: left;
                width: 5px;
                height: 5px;
                position: relative;
                margin-bottom: 10px;
                margin-left: 8px;

                img.wpnts_brandlogo {
                    width: auto;
                    height: 33px;
                    display: flex;
                    align-items: center;
                    text-align: center;
                    justify-content: center;
                    margin-top: -8px;
                }

                .close {
                    position: absolute;
                    left: 433px;
                    top: 0px;
                    background: unset;
                    color: unset;
                    border: none;
                    cursor: pointer;

                    button {
                        background: unset;
                        border: unset;
                        width: 12px;
                        height: 12px;
                        cursor: pointer;

                    }
                }

                @media only screen and (max-width: 1370px) {
                    .close {
                        position: absolute;
                        left: 321px;
                        top: 0px;
                        background: unset;
                        color: unset;
                        border: none;
                        cursor: pointer;
                    }
                }
            }

            h3 {
                text-align: left;
                margin-left: 10px;
                font-family: Inter;
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
            }
        }

        .spt-content {
            .template {
                background-color: #F9FAFB; // Light white color
                padding: 10px;
                margin-top: 10px;
                display: flex;
                align-items: center;
                border-radius: 10px;
                position: relative;
                transition: box-shadow 0.3s ease;

                // Add box shadow on hover
                &:hover {
                    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
                    cursor: pointer;
                }

                .logo {
                    text-align: left;
                    margin: 8px;
                }

                .logo.facebook img {
                    width: 43px;
                    margin-right: 19px;
                }

                .content {
                    margin-left: 10px;

                    .spt-title {
                        font-weight: bold;
                        text-align: left;
                    }

                    .spt-details {
                        margin-top: 5px;
                    }
                }

                .iconmark {
                    position: absolute;
                    right: 50px;
                    opacity: 0;
                    transition: opacity 0.3s ease, transform 0.3s ease;
                    transform: translateX(0);
                }

                &:hover .iconmark {
                    opacity: 1;
                    transform: translateX(20px);
                }

                @media only screen and (max-width: 1370px) {
                    background-color: #F9FAFB;
                    padding: 0px;
                    margin-top: 5px;
                    display: flex;
                    align-items: center;
                    border-radius: 10px;
                    position: relative;
                    transition: box-shadow 0.3s ease;
                }
            }
        }

        .spt-footer {
            text-align: center;
            margin-top: 10px;

            .spt-footer-content {
                margin-top: 25px;
            }

            a {
                text-decoration: none;
                color: #007bff; // Link color
            }

            @media only screen and (max-width: 1370px) {
                code.support {
                    font-size: 10px;
                }
            }

        }
    }
}

.wcs_popup_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
}