html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.step-indicator {
  counter-reset: step;
  margin-bottom: 30px;
}

.step-indicator li {
  list-style: none;
  display: inline-block;
  width: 33.33%;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.step-indicator li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 25px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #999;
  text-align: center;
  display: block;
  margin: 0 auto 10px;
  font-weight: bold;
}

.step-indicator li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ddd;
  top: 15px;
  left: 50%;
  z-index: -1;
}

.step-indicator li:last-child:after {
  display: none;
}

.step-indicator li.active:before {
  border-color: #007bff;
  background: #007bff;
  color: #fff;
}

.step-indicator li.completed:before {
  border-color: #28a745;
  background: #28a745;
  color: #fff;
  content: '\f00c';
  font-family: 'FontAwesome';
  font-weight: 900;
}

.step-indicator li.completed:after,
.step-indicator li.active:after {
  background: #007bff;
}
.step-indicator li.completed:after, .step-indicator li.active:after
.wizard-navigation {
  margin-top: 25px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.btn-wizard {
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkbox {
  display: flex;
  align-items: center;
  margin: 0;
}

.checkbox input[type="checkbox"] {
  margin-right: 10px;
}

.step-content {
  min-height: 350px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.step-description {
  color: #666;
  margin-bottom: 30px;
}

.summary-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  border-left: 4px solid #007bff;
}

.summary-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.summary-value {
  color: #666;
}

/* Scrollbar Styling */
* {
  scrollbar-width: auto;
  scrollbar-color: #f6f7fc #f6f7fc;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #f6f7fc;
}

*::-webkit-scrollbar-thumb {
  background-color: #f6f7fc;
  border-radius: 10px;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0
}

.checkbox {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  line-height: 1.5;
  padding-left: 35px
}

.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  clip: rect(2px, 2px, 2px, 2px)
}

.checkbox input[type=checkbox]:checked~i:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

.checkbox input[type=checkbox]:checked~span a {
  color: #007bff
}

.checkbox i {
  position: relative;
  float: left;
  width: 25px;
  height: 25px;
  margin-left: -35px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  -webkit-transition: background-color .25s ease-in-out;
  -o-transition: background-color .25s ease-in-out;
  transition: background-color .25s ease-in-out;
}

.checkbox i:before {
  content: '\2713';
  display: block;
  line-height: 23px;
  font-weight: 500;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background: #181818;
  color: #fff;
  -webkit-transition: -webkit-transform .25s cubic-bezier(.23, 1, .32, 1);
  transition: -webkit-transform .25s cubic-bezier(.23, 1, .32, 1);
  -o-transition: transform .25s cubic-bezier(.23, 1, .32, 1);
  transition: transform .25s cubic-bezier(.23, 1, .32, 1);
  transition: transform .25s cubic-bezier(.23, 1, .32, 1), -webkit-transform .25s cubic-bezier(.23, 1, .32, 1);
}

.checkbox i:last-child {
  margin-right: 0
}

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 5px 0px;
  height: 40px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 13px;
  padding-right: 13px;
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  line-height: 32px;
}

a {

  outline: 0;
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.g-recaptcha {
  transform: scale(0.87);
  transform-origin: 0 0;
}

.signin_btn {
  margin-bottom: 0px;
}

.login {
  height: 100%;
  width: 100%;
  display: inline-flex;
}

.login__left {
  height: 100%;
  margin-right: 0;
  min-height: 100vh;
  width: 100%;
  padding: 1rem 4rem;
  background-color: #ffffff;
  overflow: auto;
}

.login__right {
  width: 0;
  padding: 0;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;

}

.panel {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
  padding: 2rem 0 1rem 0;
  min-height: 100vh;
}

.panel__header {
  display: block;
}

.header__brand {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__text {
  padding: 0 0.25rem;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}

.logo__tile {
  width: 180px;
}

.icon-primary-color {
  fill: #3b5998;
}

.panel__body {
  flex: 1 0 auto;
}

.panel__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.option {
  align-items: center;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.option__item {
  display: block;
  position: relative;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: center;
  padding: 0.75rem;
}

.sign {
  padding: 1rem 0;
}

.sign__input {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 5px;
}

.brand {
  font-size: 16px;
  font-weight: 300;
  color: #02a38f;
  font-family: "Roboto";
  line-height: 22px;
}

.brand-home a {
  margin-left: 5px;
  padding: 5px 20px;
  color: #00b19d;
  background: #fff;
  border: 1px solid #c2c9d6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 63px;
  text-decoration: none;
}

.brand-home p {
  font-size: 12px;
  font-family: Roboto;
  font-weight: 300;
}

.brand-home {
  color: #47536b;
  padding: 1rem 3rem;
  text-align: right;
  position: absolute;
  right: 0px;
  z-index: 99;
}

.brand-home-responsive {
  display: none;
}

.account {
  padding: 2rem 0 2rem 0;
}

.text-center {
  align-items: center;
}

.link-text {
  text-decoration: none;
  text-align: center;
  margin-bottom: 0;
  cursor: pointer;
  color: #3b5998;
}

.link-text:hover {
  color: #1e2e4f;
}

.btnbrand {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #02a38f;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out;
  width: 100%;
  border-radius: 50px;
}

.btnbrand:hover {
  border: 2px solid #01917f;
  background: #01917f;
}

.background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",
      endColorstr="#000000",
      GradientType=1);
  z-index: 1;
  transition: all 0.5s;
}

.slide {
  width: 100%;
  height: 100vh;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation-name: slideAnimation;
  animation-name: slideAnimation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.slide__title {
  font-size: 3rem;
  text-shadow: -1px 1px #000000;
}

.slide__text {
  font-size: 1.25rem;
  text-shadow: -1px 1px #000000;
}

.slide__button {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  padding: 0.575rem 2rem;
  cursor: pointer;
  background-color: #3b5998;
  color: #ffffff;
  border: 1px solid #3b5998;
}

.slide__button:hover {
  text-decoration: none;
  background-color: #1e2e4f;
  color: #ffffff;
  border: 1px solid #1e2e4f;
}

.login-logo,
.register-logo {
  margin-bottom: 0;
}

.error.text-danger {
  border-radius: 4px;
  background: #fff2f3;
  padding: 5px;
  font-size: 85%;
  font-weight: normal;
  color: #e85e42 !important;
}

.errorforgot.text-danger {
  border-radius: 4px;
  background: #fff2f3;
  padding: 5px;
  font-size: 85%;
  font-weight: normal;
  color: #e85e42 !important;
}

.circle1 {
  width: 66px;
  height: 66px;
  border-radius: 100%;
  position: absolute;
}

.circle-blue1 {
  background-color: transparent;
  -webkit-animation: pulse-blue1 2s linear infinite;
  animation: pulse-blue1 2s linear infinite;
  box-shadow: 0 0 0 0 rgba(35, 199, 112, 0.4);
  -webkit-transform: scale(1);
  transform: scale(1);
  right: 27px;
  bottom: 0;
  top: -11px;
}

@-webkit-keyframes pulse-blue1 {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #28a745;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

@keyframes pulse-blue1 {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #28a745;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/*pulse animation pointer*/
.tooltip {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500
}

.tooltip .tooltip-inner {}

.spinner,
.spinner-inverse,
.spinner-btn-sm {
  border-style: solid;
  border-radius: 50%;
  border-color: #ecf0f3;
  border-right-color: #136acd;
  border-width: 2px;
  font-size: 22px;
  width: 18px;
  height: 18px;
  margin-left: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-animation: spin-animation .9s linear infinite;
  animation: spin-animation .9s linear infinite;
}


.spinner,
.spinner-inverse,
.spinner-sm {
  border-style: solid;
  border-radius: 50%;
  border-color: #ecf0f3;
  border-right-color: #136acd;
  /* border-top-color:#136acd; */
  border-width: 2px;
  font-size: 22px;
  width: 18px;
  height: 18px;
  margin-left: 20px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-animation: spin-animation .9s linear infinite;
  animation: spin-animation .9s linear infinite;
}

.wa-ico {
  position: fixed;
  background-image: url('../../../uploads/medium/ico-whatsapp.svg');
  background-size: contain;
  background-repeat: no-repeat;
  right: 40px;
  bottom: 0;
  z-index: 10;
  transition: .5s;
}

.wa-ico a {
  display: block;
  width: 110px;
  height: 110px;
  text-decoration: none;
  border: none;
  outline: 0;
  transition: .5s
}

.wa-msg {
  position: absolute;
  opacity: 0;
  transition: .5s;
  line-height: normal;
  color: #707070;
  background-color: #fff;
  border-radius: 7px 0 0 7px;
  border-bottom: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  padding: 6px 0 6px 10px;
  font-size: 12px;
  width: 170px;
  margin-left: -145px;
  margin-top: 35px
}

.wa-ico a:hover .wa-msg {
  opacity: 1;
  transition: .5s
}

.spinner,
.spinner-inverse,
.spinner-md {
  border-style: solid;
  border-radius: 50%;
  border-color: #ecf0f3;
  border-right-color: #136acd;
  /* border-top-color:#136acd; */
  border-width: 4px;
  font-size: 22px;
  width: 52px;
  height: 52px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-animation: spin-animation .9s linear infinite;
  animation: spin-animation .9s linear infinite;
}

.spinner,
.spinner-inverse,
.spinner-lg {
  border-style: solid;
  border-radius: 50%;
  border-color: #ecf0f3;
  border-right-color: #136acd;
  /* border-top-color:#136acd; */
  border-width: 6px;
  font-size: 22px;
  width: 72px;
  height: 72px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-animation: spin-animation .9s linear infinite;
  animation: spin-animation .9s linear infinite;
}


.spinner,
.spinner-inverse,
.spinner-llg {
  border-style: solid;
  border-radius: 50%;
  border-color: #ecf0f3;
  border-right-color: #0ab09c;
  /* border-top-color:#136acd; */
  border-width: 4px;
  font-size: 22px;
  width: 72px;
  height: 72px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-animation: spin-animation .9s linear infinite;
  animation: spin-animation .9s linear infinite;
}

@-webkit-keyframes spin-animation {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes spin-animation {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

/*Floating Action Button*/
#floating-container {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 10px;
  right: 35px;
  z-index: 50;
}

#floating-container .floating-menus>div {
  position: fixed;
  background-color: #0ab09c;
  color: #fff !important;
  border-radius: 50px;
  box-shadow: 0px 1px 2px #B0BEC5;
}

#floating-container .floating-menus>div:hover {
  background: #0ab09c;
}

#floating-container .floating-menus>div a {
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  margin-left: 5px;
  padding: 10px 10px;
  line-height: 37px;
}

.floating-menus div i {
  font-size: 34px;
}

#floating-container .floating-menus>div:nth-of-type(1) {
  animation: findcon 0.1s linear;
}

#floating-container .floating-menus>div:nth-of-type(2) {
  bottom: 135px;
  animation: viewlist 0.125s linear;
}

#floating-container .floating-menus>div:nth-of-type(3) {
  bottom: 180px;
  animation: addlist 0.135s linear;
}

#floating-container .floating-menus>div:nth-of-type(4) {
  bottom: 225px;
  animation: people 0.140s linear;
}

#floating-container .floating-menus>div:nth-of-type(5) {
  bottom: 270px;
  animation: invite 0.155s linear;
}

#floating-container .floating-menus>div:nth-of-type(6) {
  bottom: 315px;
  animation: onlineuser 0.165s linear;
}

#floating-container .floating-menus>div:nth-of-type(7) {
  bottom: 355px;
  animation: activities 0.175s linear;
}

#floating-container .fab-button {
  position: absolute;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  background-color: #0ab09c;
  cursor: pointer;
  webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
}

#floating-container .fab-button:hover {
  background: #0ab09c;
  color: #fff;
}

@keyframes findcon {
  from {
    bottom: 80px;
  }

  to {
    bottom: 90px;
  }
}

@keyframes viewlist {
  from {
    bottom: 80px;
  }

  to {
    bottom: 125px;
  }
}

@keyframes addlist {
  from {
    bottom: 80px;
  }

  to {
    bottom: 160px;
  }
}

@keyframes people {
  from {
    bottom: 80px;
  }

  to {
    bottom: 195px;
  }
}

@keyframes invite {
  from {
    bottom: 80px;
  }

  to {
    bottom: 230px;
  }
}

@keyframes onlineuser {
  from {
    bottom: 80px;
  }

  to {
    bottom: 265px;
  }
}

@keyframes activities {
  from {
    bottom: 80px;
  }

  to {
    bottom: 300px;
  }
}



@media screen and (min-width: 769px) {
  .login__left {
    margin-right: auto;
    width: 500px;
  }

  .login__right {
    width: calc(100% - 500px);
  }

  #login-form .option {
    display: flex;
    flex-wrap: wrap;
  }

  .slide__title {
    font-size: 4rem;
  }

  .slide__text {
    font-size: 1.5rem;
  }

}

@media (max-width:992px) {
  .brand-home-responsive a {
    padding: 5px 20px;
    color: #00b19d;
    background: #fff;
    border: 1px solid #c2c9d6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 63px;
    text-decoration: none;
  }

  .brand-home-responsive p {
    font-size: 12px;
    font-family: Roboto;
    font-weight: 300;
  }

  .brand-home-responsive {
    display: block;
    color: #47536b;
    padding: 1rem 0px;
    text-align: center;
    z-index: 99;
    width: 100%;
  }

  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
  }

  #floating-container {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 10px !important;
    right: 35px !important;
    z-index: 50;
  }

  .circle1 {
    width: 37px !important;
    height: 37px !important;
    border-radius: 100%;
    position: absolute;
  }

  .circle-blue1 {
    background-color: transparent;
    -webkit-animation: pulse-blue1 2s linear infinite;
    animation: pulse-blue1 2s linear infinite;
    box-shadow: 0 0 0 0 rgba(35, 199, 112, 0.4);
    -webkit-transform: scale(1);
    transform: scale(1);
    right: 7px;
    bottom: 0;
    top: 17px;
  }

  .wa-ico {
    position: fixed;
    background-image: url('../../../uploads/medium/ico-whatsapp.svg');
    background-size: contain;
    background-repeat: no-repeat;
    right: 20px;
    bottom: 0;
    z-index: 10;
    transition: .5s;
  }

  .wa-ico a {
    display: block;
    width: 81px;
    height: 81px;
    text-decoration: none;
    border: none;
    outline: 0;
    transition: .5s
  }

  .wa-msg {
    position: absolute;
    opacity: 0;
    transition: .5s;
    line-height: normal;
    color: #707070;
    background-color: #fff;
    border-radius: 7px 0 0 7px;
    border-bottom: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
    padding: 6px 0 6px 10px;
    font-size: 12px;
    width: 170px;
    margin-left: -145px;
    margin-top: 35px
  }

  .wa-ico a:hover .wa-msg {
    opacity: 1;
    transition: .5s
  }
}

.carousel-indicators {
  background-color: #fff;
  width: 100%;
  height: 50px;
  padding: 8px;
  bottom: 0px !important;
  margin: 0px !important;
}

.indicator {
  background-color: #fff;
  width: 100%;
  height: 50px;
  padding: 8px;
  bottom: 0px !important;
  margin: 0px !important;
  position: absolute;
  z-index: 99;

}

.indicator .progressbar {
  padding-top: 0px !important;
  padding-left: 0px;
  overflow: hidden;
  counter-reset: step;
  width: 60%;
  margin: 0px;

}

.indicator .progressbar li:before {
  content: "\f192";
  font-family: FontAwesome;
  width: 35px;
  line-height: 35px;
  display: inline-block;
  font-size: 15px;
  color: #999;
  background: #f1f1f1;
  border-radius: 50%;
  margin: 0px 10px 6px auto;
}

.indicator .progressbar li {
  padding-top: 0px !important;
  overflow: hidden;
  counter-reset: step;
  width: auto;
  margin: 0px;
  margin-right: 50px;
}

.indicator .progressbar li.active:before,
.indicator .progressbar li.active:after {
  background: #01917f;
  color: #f1f1f1;
}

.indicator.register {
  justify-content: right;

}

.carousel-indicators.register {
  justify-content: right;
  left: auto;
  width: 30%;
}

.carousel-indicators li {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  margin: 0 5px 0 5px;
  cursor: pointer;
  top: 13px;
  border: 0.5px solid #02a38f;
}

.carousel-indicators .active {
  background-color: #02a38f;
}

.carousel-item {
  height: 100vh;
}

.carousel-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: 1rem;
  padding: 1rem;
}

.small {
  font-size: 80%;
  font-weight: 400;
}