.leadbox_window input {
    outline: 0 !important;
}

.leadbox_window{
    display: none;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
    background-color: #FFFFFF;
    padding: 20px;
    z-index: 100000001;
    border-radius: 3px;
}

.ld_bg_layer{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 100000000;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
}
.ld_bg_layer.visible{
    opacity: 0.5;
}

.leadbox_window.inited{
    opacity: 0;
    position: fixed;
}
.leadbox_window.visible{
    opacity: 1;
}

.leadbox_window .ld_content_wrapper{
    position: relative;
}
.leadbox_window .ld_close{
    cursor: pointer;
    opacity: 0.8;
    position: absolute;
    right: -12px;
    top: -12px;
    margin: -20px -20px 0 0 ;
    width: 24px;
    height: 24px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAADP0lEQVRIS7WVb0gTcRjHvzdpiQi+kwIHgi98IVpLS6Y0xEAoaJkKChLi3Li9ES2MFNRWIObApaFxOkQaDBQcaQwrmFCiTVgTq8XANw7ReieIoPlvF8/hxe12pwvqB4Pd7+73fJ7f9/nH4D8v5i/ta06+jyV77iwAvdcDuAvgCoCLAHgAPwF8BuAF8O002GmASwCcOTk55bW1tTAYDMjKyhJsra+vIxAIYGJiAtFo9B2ABwAiSiA1gDkjI+Nlb2/veavVipSUFDBM/Kc8z+Po6Agcx6Grq2tve3vbCsAjhygBLDqdzuXz+VBQUJCU1MvLyzCZTPzm5uY9OUQO0Kenpy/Nz89r9XqSPvkVDAZRVla2t7u7WyiVSwqg/x8cDoexra1NkMRmswnaNzQ0KJJcLhfC4TAGBwdBkvX09JBcbwHcEg9IAcWZmZlLa2trSEtLE97T1SsqKtDf358AGR0dRWdnJ/x+/x8pd3Z2kJ2dja2trXwAYbIhBTyzWCyPRkZGoNGI6a4MUTJOxo6Pj2E2m+F2ux8DeCoH+DmOu8GybIIc0pvs7+8neC49MDQ0hObm5jcA7kgB5PLXmZmZPJPJpKg3QYxGo3C7hYUF1Qzzer2oqamhIiwGEBMlEgBerzevqqpKEUCytLe3C8EcGBhQDfzk5CTq6upCAK5JAWR0zul0lre2tiYUlVRzKi61wBO8r68PHR0dPgC35TFwVFZWPpyamhIqV1xKAVXLLgoySTw7O2sH8EQOMKSmpn5aXV2FTqcT7I+NjZE3cakogkUI1UB9fb2wHY1GkZubi4ODg8sAvsgBFI+PTU1N1ylV6RbUZ0pLS5GfT2mduAiysrIipCZ5TwXp8XjeA7h50nXj6oAsFDIMExgfHz+nVr1qzYOqmmXZPZ7nrwL4rlTJ4h6r1Wq54eFhNDY2xsVDyTgFnYy3tLTg8PCQeopb+p1au2YZhnlRXV2ttdvtgq6U/2KFx2Ix0C8SiaC7uxvT09O/ANgAvJI7cdrAoQn2XKPRGIuKilBSUiIMHErFjY0NLC4uIhQK0fMcgPtqky2ZkUkFQyOT2vCFEw9/AAgCeE09UQyokoRnAeRn/vnQV0uapPd/AwftVCjJt/z2AAAAAElFTkSuQmCC');
}
.leadbox_window .ld_close:hover{
    opacity: 1;
}
.leadbox_window .ld_progressbar{
    text-align: center;
    margin-bottom: 30px;
}

.leadbox_window .ld_progressbar {
    height: 20px;  /* Can be anything */
    position: relative;
    background: #cdcdcd;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    -moz-box-shadow   : inset 0 -1px 1px rgba(255,255,255,0.3);
    box-shadow        : inset 0 -1px 1px rgba(255,255,255,0.3);
}
.leadbox_window .ld_progressbar > div {
    display: block;
    height: 100%;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(43,194,83);
    background-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(0, rgb(43,194,83)),
            color-stop(1, rgb(84,240,84))
    );
    background-image: -moz-linear-gradient(
            center bottom,
            rgb(43,194,83) 37%,
            rgb(84,240,84) 69%
    );
    -webkit-box-shadow:
    inset 0 2px 9px  rgba(255,255,255,0.3),
    inset 0 -2px 6px rgba(0,0,0,0.4);
    -moz-box-shadow:
    inset 0 2px 9px  rgba(255,255,255,0.3),
    inset 0 -2px 6px rgba(0,0,0,0.4);
    box-shadow:
    inset 0 2px 9px  rgba(255,255,255,0.3),
    inset 0 -2px 6px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    transition: 300ms width linear;
}
.leadbox_window .ld_progressbar > div:after{
    -webkit-animation: move 2s linear infinite;
    -moz-animation: move 2s linear infinite;
    content: " ";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image:
    -webkit-gradient(linear, 0 0, 100% 100%,
    color-stop(.25, rgba(255, 255, 255, .2)),
    color-stop(.25, transparent), color-stop(.5, transparent),
    color-stop(.5, rgba(255, 255, 255, .2)),
    color-stop(.75, rgba(255, 255, 255, .2)),
    color-stop(.75, transparent), to(transparent)
    );
    background-image:
    -moz-linear-gradient(
            -45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent
    );
    z-index: 1;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    background-size: 50px 50px;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.leadbox_window .ld_content iframe{
    min-height: 250px;
}



@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}



.leadbox_window .ld_main_line>div{
    display: inline-block;
    vertical-align: top;
}
.leadbox_window .ld_icon{
    margin-left: 20px;
}
.leadbox_window .ld_content{
    max-width: 500px;
}
.leadbox_window .ld_icon+.ld_content{
    margin-left: 50px;
}
.leadbox_window .ld_title{
    font-size: 27px;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
}

.leadbox_window .ld_header{
    font-size: 90%;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.leadbox_window .ld_form form{
    text-align: center;
    background-color: rgba(186, 186, 186, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    min-width: 400px;
}
.leadbox_window .ld_form form input{
    margin: 10px 0;
}

.leadbox_window .input_field input {
    box-sizing: content-box;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 10px 18px;
    border: 0;
    border-radius: 8px;
    background-color: #FFFFFF;
    font: 22px Helvetica, Arial, sans-serif;
    color: #7A7C7C;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.leadbox_window .input_field input:focus{
    box-shadow: 0px 0px 1px 3px #e8ba4c;
}

.leadbox_window input[type="submit"]{
    display: block;
    text-align: center;
    width: 100%;
    margin: 16px 7px 21px;
    border: none;
    text-transform: uppercase;
    font: 26px Helvetica, Arial, sans-serif;
    cursor: pointer;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 66px;
    background-color: #E8E828;
    color: #000;
    font-size: 27px;
    font-weight: bold;
    text-shadow: none;
    padding-top: 6px;
    border-radius: 5px;
}

.leadbox_window input[type="submit"]:hover{
    background-color: #FEFF11;
}
.leadbox_window .ps{
    font-size: 12px;
    color: #999;
    font-family: Helvetica, Arial, sans-serif;
    margin-top: 25px;
    text-align: right;
    display: none;
}

.leadbox_window .ps:before{
    content: ' ';
    opacity: 0.5;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-bottom: -2px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABIklEQVQ4T6XSsSuFURzG8e9zXGUhitEiWUiYZTGIWRYmf4BBmWwyYFD+AxPZlEVKGU1yY5IysChSBhPn0Vtvuvdc1/vijOf8zud3znmO+OdQk/29IYQt21NAkHQcY1wB7tP674AeSRdAm6RdwLYXgTfbY8BTLdIAhBA2bC/ZHgZu8+IBSVVJ2zHG1R8BSWd5t5m6QukEaLE9WQScAw+2ZxPgEOi2Pd4MqADZUfeBR9vLCbADdNleAG6A92z96w1CCAe258qkKmkvxjhfB0i6BgYT4DVv0p7MV22PFAEvtvuzh5OUpdFRg5QCnm335R/pDuj8LZD9oGmgIunoL1fIgAmgVdJpGeAKGCqTAnBpezSNcT3PPhQgH7Y3gbU6oGTnhrJPAUqAEW6EvYYAAAAASUVORK5CYII=');
}
.leadbox_window .ps a{
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid;
}
.leadbox_window .ps a:hover{
    border-bottom-color: transparent;
}
.toolTipElem{
    z-index: 1000000002 !important;
    font-family: Arial;
}

.leadbox_window.mobile{
    text-align: center;
    margin: 0 10px;
    max-height: 100%;
    overflow: auto;
    top: 20px !important;
}

.leadbox_window.mobile .ld_form form{
    min-width: 120px !important;
    margin-top: 0 !important;
}

.leadbox_window.mobile .ld_icon {
    display: none !important;
    margin: 0;
}

.leadbox_window.mobile .ld_progressbar{
    margin: 15px 0 20px;
    height: 20px;
}

.leadbox_window.mobile .ld_content {
    margin-left: 0 !important;
    padding-top: 0 !important;
    max-width: 100%;
}

.leadbox_window.mobile .ps {
    max-width: 360px;
    text-align: center !important;
    display: none;
}

.leadbox_window.mobile input[type="submit"]{
    font-size: 20px !important;
}
.leadbox_window.mobile .ir_fm.bizon_success_form{
    margin-top: 50px !important;
}

.leadbox_window.mobile .ir_fm.bizon_success_form .bizon_success_title{
    top: -50px;
}
.leadbox_window .privacy_agreement_block{
    margin-top: 20px;
}
.leadbox_window .privacy_agreement_block label {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
    white-space: nowrap;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
    color: #777;
}
.leadbox_window .privacy_agreement_block.fail label{
    color: red !important;
}
.leadbox_window .privacy_agreement_block input {
    width: 13px;
    height: 13px;
    padding: 0;
    margin:0 !important;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    *overflow: hidden;
}
.leadbox_window .privacy_agreement_block label a{
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid;
}
.leadbox_window .privacy_agreement_block label a:hover{
    border-bottom-color: transparent;
}

.leadbox_window .time__block{
    max-width: 100%;
    width: 300px;
    margin: 30px auto 10px;
    opacity: 0.65;
}

.leadbox_window .time__block .idvd_timer>div{
    max-width: 22%;
    margin-right: 3%;
}

.leadbox_window .time__block .idvd_timer .tmr_el_val{
    font-size: 200%;
    padding: 20% 0;
}

.leadbox_window .time__block .idvd_timer .tmr_el_unit{
    color: #000000;
    font-size: 100%;
}

.ui-dialog{z-index: 100000002;}.ui-dialog a.cmf_link{color: #03C;}.ui-widget-overlay {background: #000000;opacity: .6;}


@media all and (max-width: 980px) {
    .leadbox_window, .leadbox_window.mobile{
        text-align: center;
        width: 96% !important;
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 500px;
    }

    .leadbox_window .ld_close{
        /*top: -20px;
        right: -20px;
        margin: 0;*/
        display: none;
    }

    .leadbox_window .ld_content{
        width: 100% !important;
        max-width: none;
    }

    .leadbox_window .ld_form form{
        min-width: 120px !important;
    }

    .leadbox_window .ld_icon {
        display: none !important;
    }

    .leadbox_window .ld_content {
        margin-left: 0 !important;
    }

    .leadbox_window .ps {
        max-width: 360px;
        text-align: center !important;
        display: none;
    }

    .leadbox_window input[type="submit"]{
        font-size: 20px !important;
    }

    .leadbox_window .ld_title{
        font-size: 25px;
        line-height: 32px;
    }

    .leadbox_window .privacy_agreement_block label{
        white-space: normal;
    }
    .leadbox_window .ld_header{

    }
}

@media all and (max-width: 480px) {
    .leadbox_window, .leadbox_window.mobile{
        width: 100% !important;
        padding: 5px;
        left: 0 !important;
    }
    .leadbox_window.mobile .ld_form form{
        padding: 5px;
    }

    .leadbox_window .ld_main_line>div{
        max-width: 100% !important;
        width: 100% !important;
    }

    .leadbox_window .ld_close{
        top: -7px;
        right: -4px;
        margin: 0;
        display: none;
    }

    .leadbox_window .ld_progressbar {
        /*margin-bottom: 10px;
        height: 10px;
        margin-right: 23px;
        margin-top: 5px;*/
    }

    .leadbox_window .time__block .idvd_timer .tmr_el_unit{
        font-size: 80%;
    }

    .leadbox_window .ld_header{
        font-size: 12px !important;
        font-family: Arial;
    }

}