﻿/*
    Common
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

/* .wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}
 */
/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
}

.wizard > .steps > ul > li
{
    width: 25%;
}

.wizard > .steps > ul > li
{
    float: left;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 0 0.5em 0.5em;
    padding: 1em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #eee;
    color: #aaa;

}
/* .actions > ul > li a[disabled]{


} */
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #2184be;
    color: #fff;
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #9dc8e2;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizard > .content
{
    background: #fff;
    display: block;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    width: 100%;
    float: left;

   /*  position: absolute; */
    /* width: 95%;
    height: 95%; */
    /* padding: 2.5%; */
}

/* .wizard > .content > .body ul
{
    list-style: disc !important;
}
 */
/* .wizard > .content > .body ul > li
{
    display: list-item;
}
 */
.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 0;
    line-height: 1em;
}

.wizard > .content > .body label.error
{
    display: none !important;
}

.wizard > .actions
{
    position: relative;
    display: block;
    width: 100%;
}


.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    width: 290px;
    margin: auto;
    display: block;
    max-width: 100%;
    background: #DC2929;
    color: #fff;
    display: block;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{

    cursor: default;
    pointer-events: none;
    opacity: 0.4;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}

.wizardFormModal .modal-dialog{
    max-width: 780px;
    margin-top: 1rem;
}
.wizardFormModal .calc_filter{
    overflow: visible;
}
.wizardFormModal .modal-content{
    -webkit-border-radius: 5px;
            border-radius: 5px;
}
.wizardFormModal .close_btn{
    position: absolute;
    top: -0.7rem;
    right: 1rem;
}
.close_btn{
    border: none;
    color: #FFF;
}
.wizard_form{
    width: 100%;
    font-size: 15px;
}
.wizard_form p{
    line-height: 1.5em;
}
.wizard_form h2{
    text-align: center;
    font-size: 24px;
    margin: 0.5rem 0 2rem 0;
}
.wizard_form h3{
    display: none;
}
.wizard > .actions{
    background: #F1F8FB;
    padding: 1.4rem 1rem;
    -webkit-border-bottom-left-radius: 5px;
            border-bottom-left-radius: 5px;
     -webkit-border-bottom-right-radius: 5px;
            border-bottom-right-radius: 5px;
}
.wizard > .content{
    min-height: 570px;
}
.wizard_form .title{
    font-size: 15px;
    color: #2A2E2F;
    text-transform: uppercase;
}
 .wizard > .steps{
    display: none;
  }
.wizard_form .bank_logo{
  width: 144px;
  height: 60px;
  background-color: #F1F8FB;
  display: flex;
  margin: 1rem auto;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.actions > ul > li:first-child{
    display: none;
}

.item_custom{
    width: 90px;
    height: 50px;
    border: 1px solid #BCC8D6;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
}
.item_custom img{
    max-height: 80%;
    max-width: 90%;
}
#noActive_group .item_custom{
    -moz-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
        opacity: 0.7;
}

.prefixed_sortable li{
    float: left;
}
/* .accept-label .jq-checkbox{
  border-color: red;
} */





/* counter step */

.proccess_counter{
  width: 100%;
  min-height: 620px;
  border-color: red;
  display: flex;
  position: relative;
  margin: 1rem auto;
  text-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.proccess_counter .count_num{
  font-weight: bold;
  font-size: 200px;
  line-height: 1em;
  margin: 1.2rem 0;
  /* Fallback: Set a background color. */
  background-color: red;

  /* Create the gradient. */
  background-image: linear-gradient(0deg, #60AE3D, #FBB231);

  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;

  /* Use the text as a mask for the background. */
  /* This will show the gradient as a text color rather than element bg. */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.dollar{

  position: absolute;
}
.d1{
   top: -1rem;
  left: 1rem;
   -moz-animation-duration: 8s;
   -webkit-animation-duration: 8s;
}
.d2{
   top: -4rem;
   right: 1rem;
   -moz-animation-duration: 5s;
   -webkit-animation-duration: 5s;
}
.d3{
   top: 6rem;
  left: 17rem;
   -moz-animation-duration: 7s;
   -webkit-animation-duration: 7s;
}
.d4{
   top: 5rem;
  left: 7rem;
   -moz-animation-duration: 10s;
   -webkit-animation-duration: 10s;
}
.d5{
   top: -10rem;
  left: 27rem;
   -moz-animation-duration: 12s;
   -webkit-animation-duration: 12s;
}
/* .accept-label .jq-checkbox{
  border-color: red;
} */
@-moz-keyframes drop{
   from {top: -20px;}
   to {top: 700px; }
}
@-webkit-keyframes drop{
   from {top: -20px;}
   to {top: 700px; }
}
@-moz-keyframes bill{
    0% { -moz-transform: rotate(-90deg) translate(0px, 0px) rotateX(-180deg) rotateY(-90deg); border-bottom-left-radius: 0px; border-top-left-radius: 0px;}
    10% { border-bottom-right-radius: 0px; border-top-right-radius: 3px;}
    15% { border-bottom-right-radius: 35px; border-bottom-left-radius: 0px; border-top-right-radius: 60px;}
    50% { -moz-transform: rotate(90deg) translate(10px, 95px) rotateX(90deg) rotateY(90deg); border-bottom-left-radius: 50px;}
    60% { border-top-left-radius: 60px; border-top-right-radius: 3px;}
    70% { border-top-left-radius: 10px;}
}

@-webkit-keyframes bill{
    0% { -webkit-transform: rotate(-180deg) translate(0px, 0px) rotateX(-360deg) rotateY(-180deg); border-bottom-left-radius: 0px; border-top-left-radius: 0px;}
    10% { border-bottom-right-radius: 0px; border-top-right-radius: 3px;}
    15% { border-bottom-right-radius: 35px; border-bottom-left-radius: 0px; border-top-right-radius: 60px;}
    50% { -webkit-transform: rotate(180deg) translate(10px, 95px) rotateX(180deg) rotateY(180deg); border-bottom-left-radius: 50px;}
    60% { border-top-left-radius: 60px; border-top-right-radius: 3px;}
    70% { border-top-left-radius: 10px;}
}
/* @-moz-keyframes flip{
    0% { -moz-transform: rotateX(-180deg);}
    100% { -moz-transform: rotateX(180deg);}
} */

.dollar {
   position: absolute;
  /*  top: -40px; */
   -moz-animation-name: drop, bill;
   -moz-animation-iteration-count: infinite;
   -moz-animation-direction: normal;
   -moz-animation-timing-function: ease-in;
   -webkit-animation-name: drop, bill;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-direction: normal;
   -webkit-animation-timing-function: ease-in;
}


.wizard_form .list_custom2 li{
    padding-left: 25px;
}
.wizard_form .list_custom2 li:before{
    background: #7DC200;
}
.wizard_form .card_collapse{
    -webkit-border-radius: 0;
            border-radius: 0;
        border: none;
}
.wizard_form .card_collapse .card-header{
    font-size: 18px;
    border-top: none;
    border-bottom: none;
    padding: 1rem;
}
.wizard_form .card_collapse.blue0 .card-header{
    border-color: #229EFE;
}
.wizard_form .card_collapse.red .card-header{
    border-color: #DC2929;
}
.wizard_form .cardCollapse_default .card_header__collapse:after{
    color: #2A2E2F;
}
.wizard_form .card_collapse .card-header{
    -webkit-border-radius: 0;
            border-radius: 0;
}
.prefixed_sortable li{
    margin: 5px;
}

.option_item{
    border: 1px solid #BCC8D6;
    -webkit-border-radius: 4px;
            border-radius: 4px;
}
.option_item .logo{
    width: 80px;
    height: 45px;
    background: #F1F8FB;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    position: relative;
}

.option_item .logo img{
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.option_item .success_percent{
    width: 50px;
    height: 50px;
    position: relative;
}
.option_item .success_percent .chart{
    position: absolute;
    top: 0;
    left: 0;
}
.option_item .success_percent .num{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    letter-spacing: -0.5px;
}
.wizard_form .prefixed_sortable {
  min-height: 10px;
  width: 100%;
}

@media screen and (max-width: 579px){
    .wizard_form .title{
        font-size: 12px;
    }
    .wizard_form{
        font-size: 13px;
    }
    .wizard_form h2{
        font-size: 20px;
    }
    .alarm_pic{
        max-width: 190px;
        margin-left: -30px;
    }
    .prefixed_sortable li{
        margin: 3px !important;
    }
    .wizard_form .card_collapse .card_body_inner{
        padding: 0.6rem 0.4rem;
    }
    .option_item .btn_custom{
        white-space: normal !important;
        height: 46px;
        width: 95px;
        line-height: 1.2em;
        padding: 5px;
        display: flex;
        -webkit-justify-content: center;
                justify-content: center;
        -webkit-align-items: center;
                align-items: center;
    }
    .prefixed_sortable {
        display: flex !important;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
         -webkit-justify-content: center;
                justify-content: center;
    }
}
