/* Demo styling,
 * this file will bring Demo Landing Page styles,
 * you can safely remove if you're not using any style the index.html
 */
.demo-link {
  width: 64px;
  max-width: 64px;
  -webkit-transition: max-width 0.8s ease-in-out;
  transition: max-width 0.8s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.demo-link .demo-link-text {
  opacity: 0;
  font-weight: 400;
  font-size: 0.875rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease 0.2s;
  transition: -webkit-transform 0.3s ease 0.2s;
  transition: transform 0.3s ease 0.2s;
  transition: transform 0.3s ease 0.2s, -webkit-transform 0.3s ease 0.2s;
}

.demo-link:hover {
  max-width: 192px;
  width: auto;
}

.demo-link:hover .demo-link-text {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.demo-blocks {
  background-color: #f1f4f8;
}

.demo-blocks .block {
  margin-bottom: 3rem;
  margin-top: 3rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.075);
  border: 1px solid #d9e2ef;
  border-radius: 0.25rem;
  background-color: #ffffff;
}

.preview-pane {
  padding: 0;
  height: 320px;
  text-align: center;
}

.preview-pane .preview-page {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.preview-pane .preview-page img {
  width: 100%;
  display: block;
  margin-top: 0;
}

.card-demo .card-body {
  z-index: 1;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
}

.card-demo .is-new {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.count-down {
  padding-top: 30px;
  padding-bottom: 30px;
}

.count-down li {
  padding: 0 30px 0;
}

.count-down span {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.count-down p {
  margin-top: 0;
  font-weight: 300;
}

@media (min-width: md) {
  .count-down span {
    font-size: 4.5rem;
  }
}

.example-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
}

.example-selector > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin: 0.5em;
  padding: 2.5em;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
  border: 1px solid #d9e2ef;
}

.example-selector > li:hover {
  border-color: #5533ff;
}

.cookie-location-message {
  margin-top: 4rem;
}

.cookie-location-message ul {
  list-style: none;
  padding: 0;
}


/*#login-account .mfp-close{
  right: 33% !important;
}*/

/*#register-account .mfp-close{
  right: 25% !important;
}*/

/*#forgot-account .mfp-close{
  right: 33% !important;
}*/

/*@media (max-width: 576px) {
  #login-account .mfp-close,#forgot-account .mfp-close {
    right: 0 !important;
  }
}*/

/*# sourceMappingURL=demo.css.map */

/*Registration Process Custom Code*/
.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.formbold-form-wrapper {
  margin: 0 auto;
/*  max-width: 550px;*/
  width: 100%;
  background: white;
}

.formbold-steps {
        padding-bottom: 18px;
        margin-bottom: 35px;
        border-bottom: 1px solid #DDE3EC;
}

.formbold-steps ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        gap: 40px;
}

.formbold-steps li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #536387;
}

.formbold-steps li span {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #DDE3EC;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #536387;
}

.formbold-steps li.active {
        color: #07074D;
        ;
}

.formbold-steps li.active span {
        background: #125BC9;
        color: #FFFFFF;
}

.formbold-input-flex {
        display: flex;
        gap: 20px;
        margin-bottom: 22px;
}

.formbold-input-flex>div {
        width: 50%;
}

.formbold-form-input {
        width: 100%;
        padding: 13px 22px;
        border-radius: 5px;
        border: 1px solid #DDE3EC;
        background: #FFFFFF;
        font-weight: 500;
        font-size: 16px;
        color: #536387;
        outline: none;
        resize: none;
}

.formbold-form-input:focus {
        border-color: #6a64f1;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-form-input::placeholder {
        font-size: 13px !important;
        color: #969696;
}

.formbold-form-label {
        color: #07074D;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        display: block;
        margin-bottom: 10px;
}

.formbold-form-confirm {
        border-bottom: 1px solid #DDE3EC;
        padding-bottom: 35px;
}

.formbold-form-confirm p {
        font-size: 16px;
        line-height: 24px;
        color: #536387;
        margin-bottom: 22px;
        width: 75%;
}

.formbold-form-confirm>div {
        display: flex;
        gap: 15px;
}

.formbold-confirm-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #FFFFFF;
        border: 0.5px solid #DDE3EC;
        border-radius: 5px;
        font-size: 16px;
        line-height: 24px;
        color: #536387;
        cursor: pointer;
        padding: 10px 20px;
        transition: all .3s ease-in-out;
}

.formbold-confirm-btn {
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}

.formbold-confirm-btn.active {
        background: #6A64F1;
        color: #FFFFFF;
}

.formbold-form-step-1, 
.formbold-form-step-2, 
.formbold-form-step-3, 
.formbold-form-step-4, 
.formbold-form-step-5, 
.formbold-form-step-6 {
    display: none;
}

.formbold-form-step-1.active,
.formbold-form-step-2.active,
.formbold-form-step-3.active,
.formbold-form-step-4.active,
.formbold-form-step-5.active,
.formbold-form-step-6.active {
        display: block;
}

.formbold-form-step-1>div, 
.formbold-form-step-2>div, 
.formbold-form-step-3>div, 
.formbold-form-step-4>div, 
.formbold-form-step-5>div, 
.formbold-form-step-6>div {
    margin-bottom: 14px;
}

.formbold-form-btn-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
        margin-top: 25px;
}

.formbold-back-btn {
        cursor: pointer;
        background: #FFFFFF;
        border: none;
        color: #07074D;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        display: none;
}

.formbold-back-btn.active {
        display: block;
}

.formbold-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
    background-color: #125BC9;
    color: white;
    cursor: pointer;
    margin-top: 2rem;
}

.formbold-btn-sm{
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  border: none;
  background-color: #125BC9;
  color: white;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.formbold-btn-info{
  background-color: #6c757d;
}

.formbold-btn-danger{
  background-color: #dc3545;
}

.formbold-btn:hover {
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

#sendOtpBtn,
#verifyOtpBtn {
        margin-top: 2.4rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .formbold-main-wrapper {
            padding: 20px;
    }

    .formbold-steps ul {
            gap: 20px;
            flex-direction: column;
    }

    .formbold-input-flex {
            flex-direction: column;
            gap: 10px;
    }

    .formbold-form-wrapper {
            padding: 15px;
            max-width: 90%;
    }

    .formbold-input-flex>div {
            width: 100%;
    }

    #sendOtpBtn,
    #verifyOtpBtn {
            margin-top: 0rem;
    }
}

.password-container {
    position: relative;
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 62%;
/*    transform: translateY(-50%);*/
    cursor: pointer;
/*    font-size: 24px;*/
}


/*cl switch code*/
.clToggleSwichContainer{
    display: flex; align-items: center;
  }
.cl-toggle-switch {
 position: relative;
 margin-left: 3rem;
}

.cl-switch {
 position: relative;
 display: inline-block;
 cursor: pointer;

}
/* Input */
.cl-switch > input {
 appearance: none;
 -moz-appearance: none;
 -webkit-appearance: none;
 z-index: -1;
 position: absolute;
 right: 6px;
 top: -8px;
 display: block;
 margin: 0;
 border-radius: 50%;
 width: 40px;
 height: 40px;
 background-color: rgb(0, 0, 0, 0.38);
 outline: none;
 opacity: 0;
 transform: scale(1);
 pointer-events: none;
 transition: opacity 0.3s 0.1s, transform 0.2s 0.1s;
}
/* Track */
.cl-switch > span::before {
 content: "";
 float: right;
 display: inline-block;
 margin: 5px 0 5px 10px;
 border-radius: 7px;
 width: 36px;
 height: 14px;
 background-color: rgb(0, 0, 0, 0.38);
 vertical-align: top;
 transition: background-color 0.2s, opacity 0.2s;
}
/* Thumb */
.cl-switch > span::after {
 content: "";
 position: absolute;
 top: 2px;
 right: 16px;
 border-radius: 50%;
 width: 20px;
 height: 20px;
 background-color: #fff;
 box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
 transition: background-color 0.2s, transform 0.2s;
}
/* Checked */
.cl-switch > input:checked {
 right: -10px;
 background-color: #85b8b7;
}

.cl-switch > input:checked + span::before {
 background-color: #85b8b7;
}

.cl-switch > input:checked + span::after {
 background-color: #018786;
 transform: translateX(16px);
}
/* Hover, Focus */
.cl-switch:hover > input {
 opacity: 0.04;
}

.cl-switch > input:focus {
 opacity: 0.12;
}

.cl-switch:hover > input:focus {
 opacity: 0.16;
}
/* Active */
.cl-switch > input:active {
 opacity: 1;
 transform: scale(0);
 transition: transform 0s, opacity 0s;
}

.cl-switch > input:active + span::before {
 background-color: #8f8f8f;
}

.cl-switch > input:checked:active + span::before {
 background-color: #85b8b7;
}
/* Disabled */
.cl-switch > input:disabled {
 opacity: 0;
}

.cl-switch > input:disabled + span::before {
 background-color: #ddd;
}

.cl-switch > input:checked:disabled + span::before {
 background-color: #bfdbda;
}

.cl-switch > input:checked:disabled + span::after {
 background-color: #61b5b4;
}

.asterik{
  color: red;
}

.section-c-div{
  margin-left: 3rem;
  border: 1px solid #DDE3EC;
  padding: 1.5rem;
  width: 50%;
  border-radius: 10px;
}