/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-secondary); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-primary); 
}
.pull-right{
    float:right;
}
.pull-left{
    float:left;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.flex-centering{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex-centering-row{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-lg{
  font-size: 1.5rem;
}
.p-md{
  font-size: 1.2rem;
}
.colorpri{
    color: var(--theme-primary);
}
.colorsec{
    color: var(--theme-secondary);
}
.coloroffbg{
    color: var(--theme-off-bg);
}
.join-page .container.main {
  height: 95vh;
  overflow: auto;
  padding: 20px; 
  background-color: #F6F6F6;
  border-radius: 20px; 
}

.max-heading{
  font-size: 2rem;
}
.input-group-text.w-hun{
    /* width: 120px; */
    width: 150px;
}
.login-page, .join-page {
  /* background: #6a30a9d4  url('../img/image@2x.png') no-repeat center center/cover; */
  background: #e7e2edd4  url('../img/image@2x.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.tabs-list {
  /* background: #6a30a9d4  url('../img/image@2x.png') no-repeat center center/cover; */
  background: #e7e2edd4  url('../img/image@2x.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.tabs-list .card-bg {
  height: 95vh;
  padding: 20px;
  background-color: #F6F6F6;
  border-radius: 20px;
  margin: 0px 20px;
}
.bg-sec{
    background-color: var(--theme-secondary);
}
.login-page .left {
  background: url('../img/login-left-image1.jpg') no-repeat;
  background-size: cover !important; 
  background-position: top center; 
  display: flex; 
  align-items: center;
  justify-content: center;
  border-radius: 15px 0px 0px 15px;
  /* box-shadow: 0px 1px 5px 3px; */
}

.login-card img{
    width: 100%;
    max-width: 200px;
    margin-bottom: 25px;
}
.login-page .left .wrapper{
    padding: 2rem;
}
.login-card{
    padding-left: 0;
}
.login-card .card{
    
    border:0;
}
/*OTP Form*/
.otp-wrapper{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}
.digit-group input{
		width: 30px;
		height: 50px;
		background-color: var(--theme-secondary);
		border: none;
		line-height: 50px;
		text-align: center;
		font-size: 24px;
		font-weight: 200;
		color: white;
		margin: 0 2px;
}
.digit-group input[type=text]:active{
    border: 2px solid var(--theme-primary);
}
.digit-group input[type=text]:focus{
    border: 2px solid var(--theme-primary);
}
.digit-group .splitter {
		padding: 0 5px;
		color: var(--theme-secondary);
		font-size: 30px;
	}

.prompt {
	margin-bottom: 20px;
	font-size: 20px;
	color: white;
}

  /* Progressbar */
  .prog-wrapper{
    position: fixed;
    display: flex;
    width: 50%;
    bottom: -5%;
    justify-content: center;
    
  }
  .progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 1rem 0 3rem;
    width: 500px;
    max-width: 40vw
  }
  @media only screen and (max-width: 600px) {
    .progressbar {
        width: 300px;
    }
  }
  .progressbar::before,
  .progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
  }
  
  .progress {
    background-color: var(--theme-primary);
    width: 0%;
    transition: 0.3s;
  }
  
  .progress-step {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #dcdcdc;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  .progress-step-active {
    background-color: var(--theme-primary);
    color: #f3f3f3;
  }
  .progress-step-active.spl{
    background-color: var(--theme-secondary);
  }
  /* Form */
  
  .form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
  }
  .form-step .unit{
    width: 350px;
  }
  .form-step .unit.spl{
    width: 300px;
  }
  .form-step-active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
   .form-step-active form{
       display: flex;
    flex-direction: column;
    align-items: center;
   }
  .form-step .unit input:hover{
      border-color: #ffe480;
  }
  .btns-group{
    margin-top: 1rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  @keyframes animate {
    from {
      transform: scale(1, 0);
      opacity: 0;
    }
    to {
      transform: scale(1, 1);
      opacity: 1;
    }
  }
  .icon {
    margin-left: auto; 
}
  .form-page-nav{
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0;
  }
  .form-page-nav a{
    font-size:1rem;
  }
 .form-page-nav img{
    width: 100%;
    max-width: 160px;
    text-align: center;
    height: 50px;
 }
.cladding{    
    position: fixed;
    bottom: 0;
}
.cladding .rcol1{
    /* background-color: var(--theme-primary); */
    width: 100vw;
    height: 8px;
}
.cladding .rcol2{
    /* background-color: var(--theme-secondary); */
    width: 100vw;
    height: 40px;
}
.swal2-actions .swal2-confirm.swal2-styled{
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}
.swal2-actions .swal2-confirm.swal2-styled:focus{
    box-shadow: 0 0 0 3px rgba(244,175,20,.5);
}
.faded{
    color: rgba(0, 0, 0, 0.6);
}

.card-chit {
  background: #c6d1db;
}
.input-group-text {
  font-size: 0.9rem !important;
}
.nominee input::-webkit-input-placeholder, option:first { 
  font-size: 12px;
  color: #999;
  opacity: 1;
} 
.nominee input, .nominee select, .card-chit input, .card-chit select {
  font-size: 14px;
}
.ng-select .ng-select-container .ng-value-container .ng-placeholder {
  color: #999;
  font-size: 14px;
}
@media (min-width: 320px) and (max-width:500px) { 
  .login-card {
    padding-left: 0.8rem !important;
  }
  .form-step .unit {
    width: 322px;
  }
  .snapshot {
    height: 160px !important;
  }
}