﻿/* EXIT POPUP START */


#exitPopWrap {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(48,114,200,0.5);
    backdrop-filter: blur(3px);
    display: none;
}

    #exitPopWrap.showPop {
        display: grid;
    }

#exitPop {
    place-self: center;
    display: grid;
    position: relative;
    max-width: 700px;
    margin: 0 5vw;
    width: 90vw;
}

#exitPopInner {
    padding: 80px 30px 30px 30px;
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 5px 5px 15px 4px rgba(0,0,0,0.3);
    box-shadow: 5px 5px 15px 4px rgba(0,0,0,0.3);
}

#exitPopTitle h2 {
    color: #ffffff;
    font-size: 34px !important;
    font-weight: 500;
    margin: 0px;
}

#exitPopInner h3 {
    color: #0f72cf !important;
    font-size: 30px !important;
    font-weight: 600;
    font-family: 'Muli','Fira Sans', Arial, sans-serif !important;
}

#exitPopInner p {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Muli', 'Fira Sans', Arial, sans-serif !important;
    margin: 30px 0 15px 0;
    max-width: 600px;
}

#exitPopTitle {
    background: #0f72cf;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
    overflow: hidden;
    padding: 15px 70px 15px 40px;
    position: absolute;
    top: -25px;
}

#exitPopStartSurvey {
    padding: 11px 70px 11px 50px;
    background: url('/Images/start-icon.png') no-repeat right 22px center #262626;
    background-size: 26px auto;
    color: #fff;
    font-size: 26px;
    font-weight: 600 !important;
    margin: 10px 0 10px 0;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

    #exitPopStartSurvey:hover {
        background: url('/Images/start-icon.png') no-repeat right 18px center #262626;
        background-size: 26px auto;
    }

#exitPopSub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f0f0f0;
}

    #exitPopSub > a {
        color: #222222;
        font-size: 20px;
        padding: 17px 0;
        font-weight: 400;
        cursor: pointer;
        text-align: center;
        cursor: pointer !important;
        font-family: 'Muli Regular','Fira Sans', Arial, sans-serif !important;
    }

        #exitPopSub > a:hover {
            text-decoration: none;
        }

        #exitPopSub > a:after {
            content: "";
            display: inline-block;
            margin-left: 4px;
            background: url(/Images/chev-right.svg) no-repeat center center;
            background-size: contain;
            height: 32px;
            width: 24px;
            position: absolute;
            margin-top: -2px;
            transition: all 0.2s ease;
        }




        /*#exitPopSub>a:hover:after
{
    margin-left: 8px;
}*/

        #exitPopSub > a:before {
            content: "";
            display: inline-block;
            position: absolute;
            height: 40px;
            margin-left: -36px;
            margin-top: -6px;
            width: 28px;
            margin-right: 10px;
            transition: all 0.2s ease;
        }

        #exitPopSub > a:hover:before {
            transform: rotate(14deg);
        }

#exitPopLater:before {
    background: url('/Images/bell-on.svg') no-repeat center center;
    background-size: contain;
}


#exitPopDont:before {
    background: url('/Images/bell-off.svg') no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 600px) {
    #exitPopSub {
        grid-template-columns: 1fr;
    }

        #exitPopSub > a {
            border-top: 1px solid #ccc;
        }

    #exitPopTitle {
        clip-path: initial;
        padding: 15px;
        text-align: center;
        width: 100%;
    }
}
