.containerPopup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    align-items: center;
    display: none;

    &.open {
        display: flex;
    }

    .warning-modal-center {
        position: relative;
        left: 16.667vw;
        width: calc(100vw - 16.667vw);
        display: flex;
        justify-content: center;
    }

    .warningModal {
        display: flex;
        padding: 2.0834vw;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        border-radius: 1.0417vw;
        background: #FFFFFF;
        box-shadow: 0vw 1.0417vw 3.125vw 0.5208vw rgba(0, 0, 0, 0.30);
        width: 21.875vw;
        height: 23.75vw !important;

        .data {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.0417vw;
            align-self: stretch;

            width: 17.7084vw;
            height: 13.9584vw;
            margin-bottom: 3.126vw;

            .img {
                width: 6.25vw;
                height: 6.25vw;

                svg {
                    height: 100%;
                    width: 100%;
                }
            }

            .desc {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.4167vw;
                align-self: stretch;

                h3 {
                    color: #637DAD;
                    text-align: center;
                    font-size: 1.0417vw;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 1.6667vw;
                    letter-spacing: 0.0104vw;
                }

                p {
                    color: #5E626B;
                    text-align: center;
                    font-size: 0.7292vw;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 1.0417vw;
                    letter-spacing: 0.0104vw;
                }
            }
        }

        .warningFooter {
            display: flex;
            align-items: center;
            justify-content: space-between;
            align-self: stretch;
            gap: 1.0417vw;

            .cancel {
                display: flex;
                min-width: 6.25vw;
                padding: 0.625vw 1.25vw;
                justify-content: center;
                align-items: center;
                gap: 0.4167vw;
                border-radius: 0.5208vw;
                border: 1px solid #869DC8;
                background-color: transparent;
                color: #4E638A;
                font-family: Karla;
                font-size: 0.8333vw;
                font-style: normal;
                font-weight: 500;
                line-height: 1.25vw;
                letter-spacing: 0.0104vw;
                max-height: 2.5vw;
                cursor: pointer;

                &:hover {
                    background: #F5F8FC;
                }
            }

            .confirm-btn {
                display: flex;
                min-width: 10.4167vw;
                padding: 0.625vw 1.0417vw;
                justify-content: center;
                align-items: center;
                gap: 0.4167vw;
                border: none;
                border-radius: 0.5208vw;
                background: #637DAD;
                box-shadow: 0vw 0vw 0.5208vw 0vw #8EA1BA9C;
                color: #fff;
                font-family: Karla;
                font-size: 0.8333vw;
                font-style: normal;
                font-weight: 500;
                line-height: 1.25vw;
                letter-spacing: 0.0104vw;
                cursor: pointer;

                &:hover {
                    background: #435475;
                    color: #fff;
                }

            }

            .disabled {
                cursor: not-allowed;
                background: #8D919B;
            }
            .disabled:hover {
                background: #8D919B;
                color: #fff;
            }

        }
    }
}