﻿#PreviewModal {
 
    z-index: 10000;

    .modalContent {
        top: 10%;
        bottom: 10%;
        background-color:white;

        div{
            height: 100%;
        }
    }

    .xBtn{
        border:none;
        font-size:30px;
    }
}


.Popup-Window {
    position: fixed;
    width: 1120px;
    height: 419px;
    margin: 0 auto;
    background-color: white;
    z-index: 10002 !important;
    left: 50%;
    top: 50%;
    margin-left: -560px;
    margin-top: -209px;
    border-radius: 6px;
    display: flex;

    .popup-image {
        flex-shrink: 0;

        img {
            border-radius: 6px;
        }
    }

    .popup-text {
        h1 {
            color: #124B48;
            margin-bottom: 32px;
        }

        p {
            font-size: 16px;
            margin-bottom: 32px;
            padding-right: 48px;
            line-height: 160%;
        }

        padding-top: 75px;
        padding-left: 56px;
    }

    button {
        border: none;
        font-size: 15px;
        height: 48px;
        line-height: 48px;
    }

    button.confirm {
        background-color: #04958D;
        color: white;
        padding: 0 32px;
        border-radius: 100px;

        &:hover {
            background-color: #4FB5AF;
        }
    }

    button.cancel {
        background-color: transparent;
        text-decoration: underline;
        margin-left: 24px;
    }
}