/*------------------------------------------------------------------
[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: #DEDEDE;
  
}
.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-color {    
    background: #DEDEDE;
    color: #000;
    padding: 10px 30px !important;
}
.btn-color:hover {
    background:#9b00ae;
    color: #fff;
}
.btn-color-transparent {
    border: 2px solid #DEDEDE;
    background: none;
    color: #000;
    padding: 10px 30px !important;
}
.btn-color-transparent:hover {
    border: 2px solid #9b00ae;    
    color: #9b00ae;
}


/*------------------------------------------------------------------
[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:after {
  z-index: -1;
  position: absolute;
  height: 2000px;
  display: block;
  content: '';
  top: 0;
  right: 0;
  width: 40%;
  
}


/*------------------------------------------------------------------
[5.1 Left Panel / .stack-signup-left]
*/
.stack-signup-left {
   padding: 40px;
   color: #fff;
   margin-bottom: 45px;
}
.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: #9b00ae;       
}


/*------------------------------------------------------------------
[5.1.2. Testimonial Slider / .stack-slider-container]
*/
.bx-wrapper {
    background: none;
    border: none;
    box-shadow: none;
}
.stack-signup-testimonial {
    margin-top: 30px;
    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;

}

/*------------------------------------------------------------------
[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;
}
.stack-steps .radio-inline{
  margin-right: 20px;
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline { 
    margin-left:0;
}
.stack-steps .checkbox-inline {
    padding-left:15px;
}
.form-horizontal .checkbox-inline {
  padding-top : 0px; 
}

/*------------------------------------------------------------------
[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 {
  opacity: 1;
  visibility: visible;
}

.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: 12px;
    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: 60px;
}
.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: #9b00ae;
    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: #DEDEDE;
}
.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;
        top: 20%;
        margin-top: 0px;
    }
    .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;
    }
    .checkbox-inline {
      padding: 0px;
    }
    .stack-steps .checkbox-inline {
      font-size: 14px;
    }
    .step-label {
      margin-bottom: 10px;
    }
    .agreement {
      font-size:14px;
    } 
    .stack-right-heading {
        margin-left: 20px;
        /*margin-top: 5px;*/
        font-size: 11px;
    }
}







.bootstrap-checkbox > button.btn {
    padding: 0px 12px 3px 0px;
    width: 0px;
}
.btn-link {
    font-weight: 400;
    color: #000;
    border-radius: 0;
}
.btn-link:focus, .btn-link:hover {
    color: #000;    
    background-color: transparent;
}
/*.checkbox-inline {
	padding-left: 0px;
}*/


.bootstrap-select.form-control {
  background: 0 0;
  border-radius: 0;
  box-shadow: none;
  height: auto;
}

.bootstrap-select button {
  border: none;
  background: 0 0;
  color: #000;
  border-bottom: 2px solid #000;
  border-radius: 0;
  box-shadow: none;
  outline: 0!important;
  font-size: 16px;
  font-weight: 300;
}

.bootstrap-select .btn-default:hover,.bootstrap-select.open>.dropdown-toggle.btn-default:hover {
  background: 0 0;
  border-color: #000;
  color: #000;
  box-shadow: none!important;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.bootstrap-select .btn-default.active,.bootstrap-select .btn-default.focus,
.bootstrap-select .btn-default:active,.bootstrap-select .btn-default:focus,
.bootstrap-select.open>.dropdown-toggle.btn-default, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder {
  background: 0 0;
  outline: 0!important;
  border-color: #000;
  color: #000;
}

.bootstrap-select .dropdown-menu {
  box-shadow: rgba(0,0,0,.16) 0 3px 6px,rgba(0,0,0,.23) 0 3px 6px;
  background-color: #FFF;
  border-radius: 0;
  
}

.bootstrap-select .dropdown-menu a:focus {
  outline: 0;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  padding: 6px 20px;
}

.bootstrap-select.btn-group .dropdown-menu li.selected a {
  color: #FFF;
  background: #9b00ae;
}


.social-media-login {
  margin-top: 30px;
  margin-left: 30px;
}

.social-media-login .fa {
  padding: 10px;
  font-size: 20px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 5px 5px;
  border-radius: 50%;
}

.social-media-login .fa:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #fff;
}


.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}


.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;
}
}
    .stack-right-heading {
        margin-left: 20px;
        /*margin-top: 5px;*/
        font-size: 11px;
    }