/*
* Main Style
* @package exit-intent-popup
* v1.0
*/
.eipblock__container {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    color: #000000 !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 1;
    box-shadow: none;
    height: 100%;
}

.eipblock__content {
    font-family: inherit;
    padding: 50px 50px 0 50px;
}

.eipblock__content-title {
    margin: 0 0 20px;
    font-family: inherit;
}

.eipblock__content-title h1 {
    font-family: inherit;
}

.eipblock__content-desc {
    font-family: inherit;
}

.eipblock__content-desc p {
    font-family: inherit;
    padding-bottom: 10px;
}

.eipblock__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 20px 50px;
}

.eipblock__controls a {
    width: 100%;
}

.eipblock__close img {
    padding: 5px;
    position: absolute;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.eipblock__close img:hover{
    background-color: #cfcfcf;
}

#eip-overlay {
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.eip-container {
    position: fixed;
    top: 0;
    right: -600px;
    z-index: 9999;
    width: 570px;
    height: 100%;
    box-shadow: 0 6px 12px rgba(107, 82, 82, 0.3);
    background-color: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: ease 0.4s all;
}

body.eip-open #eip-overlay {
    display: block;
}

body.eip-open .eip-container {
    right: 0;
}

.eipblock__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow-y: hidden;
}

.eipblock__image.default {
    min-height: 150px;
    background-position: center -40px;
    background-repeat: repeat;
}

.cta-block {
    flex-grow: 1;
    background-position: center;
    background-size: cover;
}

.eipblock__controls a {
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    text-align: center;
    width: 100%;
}

.eipblock__controls a:hover {
    text-decoration: none;
}

.eipblock__icon {
    text-align: center;
    position: relative;
    top: -60px;
    height: 10px;
    margin-bottom: -10px;
}

.eipblock__icon img {
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.81);
    background-color: #ffffff;
    max-width: 80px;
}


.eipblock__container {
    font-family: 'Lato', sans-serif !important;
}

.eipblock__content-title {
    color: #000000;
}

.eipblock__content-desc {
    font-size: 20px;
}

.eipblock__content-desc p {
    color: #000000;
    font-size: 18px;
}

.eipblock__controls a {
    background-color: #d1cfcf;
    margin: 15px 0;
    padding: 22px 24px;
    color: #000000;
    border-radius: 12px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

@media only screen and (min-width: 768px) {
    .eipblock__content-title h1 {
        line-height: 56.32px;
        font-size: 44px;
        color: #000000;
        margin: 0;
    }
}

@media only screen and (max-width:767px) {
    .eip-container {
        width: auto;
        height: auto;
        margin: 20px 30px 120px;
        max-width: 570px;
    }

    body.eip-open .eip-container {
        bottom: 0;
        right: 0;
        left: 0;
    }

    .eipblock__content {
        padding: 20px 30px 0 30px;
    }

    .eipblock__image.default {
        background-position: center -10px;
    }

    .eipblock__image {
        height: 150px;
    }

    .eipblock__content-title {
        margin-top: 20px;
    }

    .eipblock__controls {
        padding: 0 30px;
        margin-top: 10px;
    }

    .eipblock__controls a {
        margin-top: 25px;
    }

    .eipblock__content-desc p {
        font-size: 14px;
    }

    .eipblock__controls a {
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
        padding: 16px 10px;
        letter-spacing: 1px;
    }
}