.overlayInfoWrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(75,75,75,0.5);
    z-index: 150;
}

.overlayInfoWrapper.is-visible {
    display: block;
}

#overlayInfo {
    position: relative;
    width: 100%;
}

.overlayInfo__btnclose {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    height: 15px;
    width: 15px;
    background-image: url("/typo3conf/ext/coulis/Resources/Public/Images/overlay-close.png");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-origin: content-box;
    background-size: 100%;
    z-index: 160;
}


.overlayInfo__content {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    padding: 8px 0 30px;
    background: #1a729c; /* Old browsers */
    background: -moz-linear-gradient(top, #1a729c 0%, #0599be 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #1a729c 0%,#0599be 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #1a729c 0%,#0599be 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a729c', endColorstr='#0599be',GradientType=0 ); /* IE6-9 */
    text-align: center;
}

.overlayInfo__header {
    text-align: center;
    padding: 22px 0 27px;
    background-color: #fff;
    position: relative;
}

.overlayInfo__header:after {
    content: '';
    display: block;
    width: 100%;
    height: 27px;
    background-image: url("/typo3conf/ext/coulis/Resources/Public/Images/edge.png");
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    background-size: 100% 100%;
}

.overlayInfo__header img {
    width: 234px;
    height: auto;
}

.overlayInfo__headline {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 21px;
}

.overlayInfo__headline h2 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 4px;
}

.overlayInfo-features {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    margin: 15px auto 20px;
}

.overlayInfo__content .icon-feature {
    position: relative;
    padding-left: 45px;
    height: 30px;
    line-height: 30px;
    margin: 0 20px;
    margin: 20px auto !important;
    width: 127px;
}

.overlayInfo__content .icon {
    position: absolute;
    top: 0;
    left: 0;
}

#overlayInfo .icon-check {
    background-image: url("/typo3conf/ext/coulis/Resources/Public/Images/icon-check.png");
    background-size: 100%;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
}

.overlayInfo__actions .btn-action {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    background: #00790e; /* Old browsers */
    background: -moz-linear-gradient(top, #00790e 0%, #00a013 100%);
    background: -webkit-linear-gradient(top, #00790e 0%,#00a013 100%);
    background: linear-gradient(to bottom, #00790e 0%,#00a013 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00790e', endColorstr='#00a013',GradientType=0 );
    padding: 13px 25px;
    border: 0;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: 7px 7px 3px -2px rgba(0,0,0,0.09);
    -moz-box-shadow: 7px 7px 3px -2px rgba(0,0,0,0.09);
    box-shadow: 7px 7px 3px -2px rgba(0,0,0,0.09);
}
.bsz-login-dialog {
    display:none;
    width: 71rem;
    margin: 0 auto;
    padding: 42px 12px 60px 12px;
    position: relative;
    background-color: #f5f5f5;
    border: 2px solid #edeb6f;
    overflow: hidden;
}
#bszOverlay {
    display: none;
    width: 100%;
    top: 0px;
    position: fixed;
    z-index: 1000;

}
.closeBox {
    overflow: hidden;
    padding-right: 6px;

}
.closeBox .icon-close--blue {
    float: right;
    cursor: pointer;
}

.overlayBackground {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 100;
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.overlayBackground + div {
    position: relative;
    z-index: 200;
}

@media (min-width: 617px) {
    #overlayInfo {
        top: 50%;
        left: 50%;
        margin-left: -300px !important; /* Override layout definition for all divs */
        margin-top: -190px;
        width: 600px;
    }

    .overlayInfo__header:after {
        background-size: 100%;
    }

    .overlayInfo-features {
        width: 78%;
    }

    .overlayInfo__content .icon-feature {
        float: left;
        margin: 0 20px !important;
        width: auto;
    }
}

@media (max-width: 991px) {
    .contentFrame div.overlayInfo-features {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

