
.tp_installer{
    color: $primary_color;
    &__steps{
        &{
            display: inline-block;
            width: 528px;
            text-align: right;
            padding-right: 309px;
            margin-top: 60px;

        }
        li{
            &{
                color: #999;
                font-weight: bold;
            }
            span{
                width: 20px;
                height: 20px;
                background-color: #999;
                color: #fff;
                display: inline-block;
                border-radius: 20px;
                text-align: center;
                margin-left: 20px;
                line-height: 20px;
                font-size: 12px;
            }
            &.active{
                &{
                    color: $primary_color;
                }
                span{
                    background-color: #37a7de;
                }
            }
        }
    }

    &__forms{

        [data-form]{
            &{
                position: relative;
                display: none;

            }
            &.active{
                display: inline-block;
            }
            input[type="text"],input[type="email"]{
                box-shadow: none;
                border-radius: 40px;
                width: 526px;
                height: 40px;
                padding: 0px 19px 2px 19px;
                font-size: 18px;
                border-color: #203c4e;
                background-color:#fffaf1;
                text-align: left;
                color:#37a7de;
            }

            button{
                &{
                    transition: .2s;
                    background-color: #203c4e;
                    height: 38px;
                    font-size: 16px;
                    border: none;
                    border-radius: 0px 20px 20px 0px;
                    position: absolute;
                    top: 2px;
                    right: 2px;
                    padding: 2px 20px 3px 20px;
                    color: #ffffff;
                    font-weight: bold;
                    text-transform: uppercase;
                    cursor: pointer;
                    outline: none;
                    min-width: 172px;
                    overflow: hidden;
                }

                &:hover{
                    background-color: #386684
                }

                &:disabled{
                    background-color: #386684;
                    cursor: initial;
                }
            }


        }
    }
    .tp-errors{
        color: red;
        li{
        }
    }

}

.validate-result{
    &{
        padding-top: 40px;
    }
    h4{
        margin: 20px 0 25px 0;
        font-size: 25px;
        font-weight: normal;
        line-height: 1.1em;
    }
    .dispaly-icon{
        width: 80px;
        height: 80px;
        display: inline-block;
        background-image: url(../images/success_80x80.png);
    }
    .frm-change-code{
        position: relative;
        display: inline-block;
    }
    .title-invalid{
        display: none;
    }

    &.validate-result--failure{
        .dispaly-icon{
            background-image: url(../images/warning.png);
            background-size: 80px 80px;
        }
        .title-success{
            display: none;
        }
        .title-invalid{
            display: block;
        }
    }

    .action-buttons{
        &{

        }
        a{
            &{
                text-decoration: none;
                box-shadow: none;
                text-decoration: none;
                background-color: #f7af65;
                display: inline-block;
                padding: 3px 10px;
                border-radius: 4px;
                color: #fff;
                margin: 0px 3px;
                display: none;
            }
            &:hover{
                background-color: $primary_color;
            }
        }
        .cancel_update_token{
            &{
                background-color: #999;
            }
            i{
                color: red;
            }
        }
        .create_new_token{
            i{
                color: #3bb54a;
                font-size: 17px;
                position: relative;
                top:1px;
            }
        }
    }

}

.tpba-install{
    &{
        text-align: center;
        height: 400px;
        background-image: url(../images/bg.jpg);
        background-repeat: no-repeat;
        background-position: right bottom;
    }
}

.tpba-install{
    &{
        border-radius: 5px;
        background-color: #FFF;
        box-shadow: 0 2px 0 #EAEAEA;
        padding: 30px;
        margin: 0 0 30px;
        border: 1px solid #eee;
    }
    
    .tpba_panel__header{
        &{
            margin-left: -30px;
            margin-right: -30px;
            border-bottom: 1px solid rgba(0,0,0,.07);
            margin-top: -30px;
            overflow: hidden;
            position: relative;
            height: 80px;
            padding-left: 80px;
            text-align: left;
        }
        .tpba-logo{
            img{
                width: 80px;
                height: 80px;
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                border-radius: 5px 0px 0px 0px;
            }
        }
        h3{
            font-size: 20px;
            text-transform: uppercase;
            font-weight: bold;
            padding-left: 20px;
            margin-top: 22px;
            margin-bottom: 0;
            color:#203c4e;
        }
        p{
            margin-bottom: 0;
            font-size: 16px;
            margin-top: 2px;
            padding-left: 21px;
            color: #555;
        }
        .btn-help{
            &{
                position: absolute;
                top: 10px;
                bottom:10px;
                right: 0;
                width: 80px;
                box-shadow: none;
                text-decoration: none;
                text-align: center;
                color: $primary_color;
                border-left:1px solid rgba(0,0,0,.07);
                padding-top: 13px;
                transition: .2s;
            }
            i{
                border: 2px solid $primary_color;
                border-radius: 100%;
                width: 30px;
                height: 30px;
                &:before{
                    top:5px;
                    position: relative;
                }
            }
            &:hover{
                opacity: .8;
            }
        }
    }
    .tpba_panel__content{
        padding-top: 30px;
    }
}


.redirect_alert{
    margin-top: -17px;
    color: #666;
}