/*------------------------------------------------------------------
[Table of contents]

1. Body 
2. Input & Labels
3. Buttons
    4. Loader / .stack-loader-container
    5. Signup Container / .stack-signup-container
        5.1. Left Panel / .stack-signup-left
            5.1.1. Logo / .stack-signup-logo
            5.1.2. Testimonial Slider / .stack-slider-container
        5.2. Right Panel / .stack-signup-right
            5.2.1. Steps Counts / .steps-count
            5.2.2. Steps / .stack-steps
            5.2.2.1 Step Content / .step
            5.2.2.2 Confirm Step / .step-confirm
            5.2.3. Buttons / .button-container
6. Animations
7. Responsive Styles


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[1. Body / body]
*/
body {	
	font-family: 'Montserrat', sans-serif;
	background-size: cover;
    background-color: #000B29;
	
}
.stack-overlay {
    position: absolute;
    top:0;
    left:0;
    bottom:0; 
    right:0;    
    opacity: 0.1;
}
/*------------------------------------------------------------------
[2.Input & Labels ]
*/
.formLabel {
    display: block;
    color: rgba(0, 0, 0, 1);
    position: absolute;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 300;
    transition: all .2s
}
.formLabel.active {
    -webkit-transform: translateY(-140%);
    transform: translateY(-140%);
    font-size: 20px;
    color: #000B29;
}
.formInput {
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #000B29;
    font-size: 32px;
    width: 100%;
    color: #000;
    display: block;
}
.formInput:focus {
    outline: none;
    border-bottom: 2px solid #000B29;
    -webkit-transition: border-bottom .5s;
    -moz-transition: border-bottom .5s;
    -ms-transition: border-bottom .5s;
    -o-transition: border-bottom .5s;
    transition: border-bottom .5s;
}
.formInput.input-error {
    border-bottom-color: rgb(255, 8, 8);
}
.formLabel.active.input-error {
    border-bottom-color: rgb(255, 8, 8);
}
.help-error {
    font-size: 14px;
    font-style: italic;
    color: rgb(255, 8, 8);
    font-weight: bold;
    padding: 10px 0;
    display: none;
    text-align: right;
    margin-right: 3px;
}
.help-error i {
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
    float: right;
    margin-left: 20px;
}
.help-info {
    text-align: right;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    padding: 10px 0;
    margin-right: 2px;
}


/*------------------------------------------------------------------
[3. Buttons ]
*/
.btn {
    font-weight: 700;
    font-size: 15px;
}
.btn-rounded {
    border-radius: 30px;
}
.btn-red {    
    background: #000B29;
    color: #fff;
    padding: 10px 30px !important;
}
.btn-red:hover {
    background:#D70026;
    color: #fff;
}
.btn-red-transparent {
    border: 2px solid #000B29;
    background: none;
    color: #000B29;
    padding: 10px 30px !important;
}
.btn-red-transparent:hover {
    border: 2px solid #D70026;    
    color: #D70026;
}


/*------------------------------------------------------------------
[4. Loader / .stack-loader-container]
*/
.stack-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #FFF;
    z-index: 1000;
}


.stack-loader{
    position: relative;
    top: 50%;
    left: 50%;
}

.stack-loader>div {
    position: absolute;
    left: -20px;
    top: -20px;
    border: 3px solid #D70026;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: rotate 1s 0s ease-in-out infinite;
    animation: rotate 1s 0s ease-in-out infinite;
}

.stack-loader>div:last-child {
    display: inline-block;
    top: -6px;
    left: -5px;
    width: 20px;
    height: 20px;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    border-color: #D70026 transparent;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0) scale(1);
        transform: rotate(0) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(.6);
        transform: rotate(180deg) scale(.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}


/*------------------------------------------------------------------
[5. Signup Container / .stack-signup-container]
*/
.stack-signup-container {
    display: none;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius:10px;
    margin:150px auto;
    background:#fff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
}
.stack-signup-container:before {
   position: absolute;
   top:0;
   bottom:0;
   left:0;
   right:0;  
   display:block;
   content:'';
   opacity: 0.5;
    
}

/*------------------------------------------------------------------
[5.1 Left Panel / .stack-signup-left]
*/
.stack-signup-left {
   padding: 40px;
   color: #fff;
   margin-bottom: 65px;
}
.stack-signup-left p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}
.stack-trial {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    font-weight: bold;
}

.stack-signup-left hr { border-top:1px solid rgba(255,255,255,0.2); }

/*------------------------------------------------------------------
[5.1.1. Logo / .stack-signup-logo]
*/
.stack-signup-logo {
    margin-bottom: 20px;
}
.stack-left {
    background-color: #D70026;        
}


/*------------------------------------------------------------------
[5.1.2. Testimonial Slider / .stack-slider-container]
*/
.bx-wrapper {
    background: none;
    border: none;
    box-shadow: none;
}
.stack-signup-testimonial {
    margin-top: 60px;
    height: 250px;
}
.stack-signup-testimonial:after {
    clear: both;
    content: '';
    display: block;
}
.stack-signup-testimonial img {
    height: 60px;
    float: right;
}
.stack-signup-testimonial b {
    font-size: 16px;
    color: #fff;
    display: block;
    margin-top: 20px;
}
.stack-signup-testimonial b span {
    font-size: 14px;
    color: #CCC;
    display: block;
    font-weight: normal;
    margin-top: 3px;
}
.stack-signup-testimonial i {
    font-size: 30px;
    color:#FFC926;
}
.stack-signup-testimonial p {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin-top: 15px;
}

/*------------------------------------------------------------------
[5.2. Right Panel / .stack-signup-right]
*/
.stack-signup-right {
    color: #000;
    position: relative;
    overflow-y: auto;
    overflow-x:hidden;
    min-height: 600px;
}
.stack-right {
    padding: 40px;
   
}

/*------------------------------------------------------------------
[5.2.1 Steps Counts / .steps-count]
*/
.steps-count {
    font-weight: bold;
    font-size: 10px;
    /*text-align: right;*/
    margin-top: 5px;
}
.btn-circle {
    border: none;  
    outline: none !important;
    overflow: hidden;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: gray;
    font-size: 10px;
    padding: 6px;
}
.step-current {
    color:gray;
}
.step-current:hover {
    color: black;
}


/*------------------------------------------------------------------
[5.2.2 Steps / .stack-steps]
*/
.stack-steps .step {
    padding-left: 20px;
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -80px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}
.step.step-active {
    transform: none;
    visibility: visible;
    opacity: 1;
}
.step-hide {
    -webkit-transform: translateY(-50px) !important;
    transform: translateY(-50px) !important;
}
.stack-steps .step-confirm {
    position: initial;
    top: initial;
    margin-top: 0;
    padding-top: 10px;
    overflow-x: hidden;
    display: none;
}
.stack-steps .step-confirm.step-active {
    display: block;
}
.step-label { 
    font-size:40px; 
    margin-bottom:20px; 
    font-weight:300; 
    font-size:32px; 
}

.stack-steps .checkbox-inline, .stack-steps .radio-inline{
    font-size:16px; 
    font-weight:300;
    padding-left:25px;
    line-height: 20px;
    margin-right: 20px;
    margin-bottom:10px;
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline { 
    margin-left:0;
}
.stack-steps .checkbox-inline {
    padding-left:35px;
}

/*------------------------------------------------------------------
[5.2.2.2 Confirm Step / .step-confirm]
*/
.step-confirm .form-group {
    opacity: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding: 15px 0;
}
.step-confirm.step-active .form-group {
    animation: animateInput .3s forwards;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}
.step-confirm .form-group:nth-of-type(1) {
    animation-delay: .1s;
}
.step-confirm .form-group:nth-of-type(2) {
    animation-delay: .3s;
}
.step-confirm .form-group:nth-of-type(3) {
    animation-delay: .5s;
}
.step-confirm .form-group:nth-of-type(4) {
    animation-delay: .7s;
}
.step-confirm .form-group:nth-of-type(5) {
    animation-delay: .9s;
}
.step-confirm .control-label {
    text-align: left;
    color: rgba(0, 0, 0);
    font-weight: normal;
    font-size: 20px;
}
.step-confirm input {
    box-shadow: none;
    background: none;
    border: none;
    box-shadow: none;
    color: rgba(0, 0, 0);
    font-size: 20px;
    padding: 10px 20px;
    height: auto;
    transition: all .35s ease;
    font-weight: 600;
}
.step-confirm input:hover {} .step-confirm input:focus {
    box-shadow: none;
    background: rgba(216, 216, 216);
    color: #333;
}
.step-confirm .input-container {
    position: relative;
}
.step-confirm .input-container>a {
    position: absolute;
    top: 15px;
    right: 0;
    color: #FFF;
    font-weight: bold;
    font-size: 14px;
    color: rgba(0, 0, 0)
}
.step-confirm .input-container>a:hover {
    color: #D70026;
    text-decoration: none;
}
.step-confirm .input-container>a.showPass {
    right: 35px;
}
.step-confirm-buttons {
    text-align: right;
    margin-top: 35px;
}
.step-confirm-buttons a {
    display: block;
    margin-bottom: 10px;
}
.step-confirm-buttons>div {
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
}
.step-confirm .confirm-input-error,
.step-confirm .confirm-input-error:focus {
    background: #b74950 !important;
    color: #FFF;
}

.step-confirm .bootstrap-select button {
    border-bottom:none;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 20px;
}

.step-confirm .bootstrap-select.btn-group .dropdown-toggle .caret {
    display:none;
}

.agreement {
    font-size: 14px;
}
.agreement a {    
    color: #D70026;
    text-decoration: underline;
    font-weight: 600;
}


/*------------------------------------------------------------------
[5.2.3 Buttons / .button-container]
*/
.button-container {
    position: absolute;
    bottom: 20px;
    right: 0;
    text-align: right;
    width: 100%;
}
.button-container>div {
    display: inline-block;
    text-align: center;
    float: right;
    margin-left: 10px;
}
.button-container>div a {
    margin-bottom: 10px;
    display: block;
}
.prevStep {
    outline: none;
    display: none;
    border-color: #000B29;
}
.button-container a,
.button-container a:hover,
.button-container a:focus,
.button-container a:active,
.button-container a:active:focus {
    outline: none;
}

/*------------------------------------------------------------------
[6. Animations]
*/

.stack_loading {
    width: 80px;
    height: 40px;
    margin:auto;
    margin-bottom:20px;
    display:block;    
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animateInput {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@keyframes animateInput {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}


/*------------------------------------------------------------------
[7. Responsive Styles]
*/

@media only screen and (max-width: 990px) {
    .stack-signup-left {
        padding: 60px 15px 30px 15px;
    }

    .stack-signup-testimonial { 
        height:360px;  
    }
}

@media only screen and (max-width: 760px) {
    .container{
        width:100%;
    }

    .stack-signup-container { margin:15px auto; padding:0px;  }
    .stack-slider-container { display: none;}
    
    .stack-signup-left {
        padding: 10px;
    }
    .stack-signup-left hr {
        display: none;
    }
    .stack-signup-right {
        min-height: 400px;
        padding: 15px 0;
    }
    .stack-steps .step {
        padding: 0 20px;
    }
    .steps-count,.button-container {
        padding-right: 20px;
    }
    .step-confirm .form-group {
        margin-bottom: 0;
        padding: 10px 0;
    }
    .step-confirm .control-label {
        font-size: 16px;
    }
    .step-confirm input,.step-confirm .bootstrap-select button {
        padding: 6px 15px;
        font-size: 16px;
    }

    .formLabel,.formInput,.step-label {
        font-size: 20px;
    }    
    .stack-right {
        padding : 0px;
    }
    .stack-right-heading {
        margin-left: 20px;
        /*margin-top: 5px;*/
        font-size: 11px;
    }
    .btn-circle {
        width: 20px;
        height: 20px;
        padding: 0px;
    }
    .stack-steps .checkbox-inline {
        padding-left: 20px;
    }
    .step-confirm .input-container > a {    
        top: 7px;        
    }
}


.mdl-badge[data-badge]::after {
    content: attr(data-badge);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: -24px;
    font-weight: 600;
    font-size: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff4081;
    color: #fff;
}

.demo-badge__badge-on-text-text .mdl-badge {
    color: rgba(0, 0, 0, 0.24);
}
.mdl-badge {
    position: relative;
    white-space: nowrap;
    margin-right: 24px;
}
.st-steps {
    color: #a3a3a3;
}