/* 
    Created on : 19. 8. 2022, 14:17:23
    Author     : Tomas Bradle
*/

@charset 'UTF-8';



.funnel-preview {
    
    --mt: 80px;
    --toolbox-width: 150px;
    --toolbox-top: -80px;
    --toolbox-right: -180px;
    --props-top: -80px;
    --props-left: -3px;
    --border-radius: 1rem;
    --box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, .6);
    --box-shadow-2: 0px 0px 12px 0px rgba(0, 0, 0, .1);
    
    font-family: Poppins, Roboto, sans-serif;
    font-weight: 300;
    
    background-color: #1c1c1c;
    width: 575px;
    height: calc(100vh - 200px);
    border-radius: var(--border-radius);
    border: 3px solid #e0e0e0;
    box-shadow: var(--box-shadow);
    padding: 20px;
    /*margin: 0 auto;*/
    position: relative;
    margin-top: var(--mt);
}

.funnel-preview.is-show, 
.funnel-preview.is-cta {
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 0 none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
}

.funnel-preview .funnel-preview-content {
    background: #fff;
    width: 100%;
    height: calc(100vh - 245px);
    border-radius: .15rem;
    overflow: auto;
}

.funnel-preview.is-show .funnel-preview-content, 
.funnel-preview.is-cta .funnel-preview-content {
    height: auto;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 5rem;
}

.funnel-preview.is-cta:not(.is-show) {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
}

.funnel-preview .funnel-toolbox {
    /*background: #fff;*/
    width: var(--toolbox-width);
    /*height: 100px;*/
    /*border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-2);
    padding: 10px;*/
    
    position: absolute;
    top: var(--toolbox-top);
    right: var(--toolbox-right);
}

.funnel-preview .funnel-props {
    width: calc(100% + 6px);
    position: absolute;
    top: var(--props-top);
    left: var(--props-left);
}

.funnel-block {
    
    --px: 5rem;
    --px-md: 3rem;
    --px-sm: 1rem;
    
    position: relative;
    transition: all .3s;
    /*margin-bottom: 1rem;*/
}

.funnel-block:not(.is-cta) {
    padding-left: var(--px);
    padding-right: var(--px);
}
    
.funnel-block.size-1_4 {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-block.size-1_4:not(.is-cta) {
    padding-left: var(--px-sm);
    padding-right: var(--px-sm);
}
    
.funnel-block.size-1_3 {
    width: 33.333333%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-block.size-1_3:not(.is-cta) {
    padding-left: var(--px-sm);
    padding-right: var(--px-sm);
}
    
.funnel-block.size-1_2 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-block.size-1_2:not(.is-cta) {
    padding-left: var(--px-md);
    padding-right: var(--px-md);
}
    
.funnel-block.size-2_3 {
    width: 66.666666%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-block.size-2_3:not(.is-cta) {
    padding-left: var(--px-md);
    padding-right: var(--px-md);
}
    
.funnel-block.size-3_4 {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-block.size-3_4:not(.is-cta) {
    /*padding-left: var(--px-md);
    padding-right: var(--px-md);*/
}
    
.funnel-block.size-full {
    width: 100%;
}

.funnel-block:hover,
.funnel-block:focus,
.funnel-block:active, 
.funnel-block.active {
    box-shadow: 0px 0px 0px 3px var(--def-color) inset;
}

.funnel-block .funnel-block-toolbox {
    background: var(--def-color);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    transition: all .3s;
}

.funnel-block:hover .funnel-block-toolbox,
.funnel-block:focus .funnel-block-toolbox,
.funnel-block:active .funnel-block-toolbox, 
.funnel-block.active .funnel-block-toolbox {
    opacity: 1;
}

.funnel-block .funnel-block-add-after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(0, calc(50% - 3px));
    background-color: var(--def-color);
    color: #fff;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    transition: all .3s;
}

.funnel-block:hover .funnel-block-add-after,
.funnel-block:focus .funnel-block-add-after,
.funnel-block:active .funnel-block-add-after, 
.funnel-block.active .funnel-block-add-after {
    opacity: 1;
    z-index: 20;
}

.funnel-block [contenteditable="true"] {
    outline: none;
}

.funnel-block .cke_textarea_inline {
    border: 0 none;
}

.funnel-block .cke_textarea_inline p {
    margin-bottom: 1rem;
}

.funnel-block h1 {
    font-weight: 600;
    padding: 3rem 0;
    margin: 0;
}

.funnel-block.is-cta h1 {
    padding: 1.5rem 0 .75rem;
}

.funnel-block h1 strong {
    font-weight: 800;
}

.funnel-block h2 {
    font-weight: 600;
    padding: 3rem 0 2rem;
    margin: 0;
}

.funnel-block.is-cta h2 {
    padding: 1.5rem 0 .75rem;
}

.funnel-block h2 strong {
    font-weight: 800;
}

.funnel-block h3 {
    font-weight: 600;
    padding: 3rem 0 2rem;
    margin: 0;
}

.funnel-block.is-cta h3 {
    padding: 1.5rem 0 .75rem;
}

.funnel-block h3 strong {
    font-weight: 800;
}

.funnel-block h4 {
    font-weight: 600;
    padding: 2rem 0 1rem;
    margin: 0;
}

.funnel-block.is-cta h4 {
    padding: 1.5rem 0 .75rem;
}

.funnel-block h4 strong {
    font-weight: 800;
}

.funnel-block h5 {
    font-weight: 600;
    padding: 2rem 0 1rem;
    margin: 0;
}

.funnel-block.is-cta h5 {
    padding: 1.5rem 0 .75rem;
}

.funnel-block h5 strong {
    font-weight: 800;
}

.funnel-block h6 {
    font-weight: 600;
    padding: 1rem 0 .5rem;
    margin: 0;
}

.funnel-block.is-cta h6 {
    padding: 1rem 0 .5rem;
}

.funnel-block h6 strong {
    font-weight: 800;
}

.funnel-block .funnel-text {
    font-size: 1.125rem;
}

.funnel-block.is-cta .funnel-text p {
    margin-bottom: .5rem;
}

.funnel-block .funnel-text p:last-of-type {
    margin-bottom: 0;
}

.funnel-block .funnel-img img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.funnel-block .funnel-video video {
    display: block;
    margin: 0 auto;
}

.funnel-block .funnel-video .funnel-video-poster {
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.funnel-block .funnel-video .funnel-video-poster.see-thru {
    background: transparent !important;
}

.funnel-block .funnel-video .funnel-video-poster .FVP-btn-play {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background: #3c3c3c;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 50%;
}

.funnel-block .funnel-video .funnel-video-poster .FVP-btn-pause {    
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background: #3c3c3c;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: .25rem;
    left: 50%;
    transform: translate(-50%, 0);
}

.funnel-block .funnel-cta .btn {
    text-transform: none;
    font-weight: 500;
    font-size: 1.4rem;
    /*letter-spacing: .02rem;*/
    margin-left: 50% !important;
    transform: translateX(-50%);
    display: inline-block;
    box-shadow: none;
}

.funnel-block .funnel-form form .md-form:first-of-type {
    margin-top: 0;
}

.funnel-block .funnel-form button[type="submit"] {
    text-transform: none;
    font-weight: 500;
    font-size: 1.2rem;
}

.funnel-ae-link-prepend,
.funnel-ae-link-append {
    color: #a5a5a5;
}

.funnel-ae-link-prepend {
    position: absolute;
    top: .65rem;
    left: 0;
    width: 280px;
    text-align: right;
}

.funnel-ae-link-prepend ~ input, 
.funnel-ae-link-prepend ~ label {
    margin-left: 280px !important;
}

.funnel-ae-link-prepend ~ input { 
    width: calc(100% - 280px);
}

.funnel-ae-link-append {
    
    position: absolute;
    top: .65rem;
    right: -2rem;
}

.funnel-preview.is-show.is-cta  {
    margin-top: -2rem;
}

.funnel-preview.is-show.is-cta .funnel-preview-content {
    background: transparent;
}

.funnel-preview.is-cta .funnel-preview-content {
    margin-bottom: 0;
}

.funnel-cta-editor {
    cursor: text;
}



@media (min-width: 768px) {
    
    .funnel-preview {
        width: 768px;
    }
    
}

@media (min-width: 992px) {
    
    .funnel-preview {
        width: 992px;
    }
    
}

@media (min-width: 1200px) {
    
    .funnel-preview {
        width: 1200px;
    }
    
}

@media (min-width: 1400px) {
    
    .funnel-preview {
        width: 1400px;
    }
    
}

