body { 
  background-color: #fff !important;
  color: #000;
}

/* Thinking Interface Styles */
.thinking-interface {
    background: #f8f9fc;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
}

.thinking-header {
    background: #ffffff;
    padding: 12px 16px;
    border-bottom: 1px solid #e3e6f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.thinking-header:hover {
    background: #f8f9fc;
}

.thinking-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #5a5c69;
    flex-grow: 1;
}

.thinking-brain {
    animation: thinkingPulse 1.5s infinite ease-in-out;
}

@keyframes thinkingPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.thinking-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 8px 0;
}

.thinking-steps {
    padding: 0 16px;
}

.thinking-step {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #5a5c69;
    border-left: 2px solid #e3e6f0;
    padding-left: 12px;
    margin-left: 4px;
    transition: all 0.3s ease;
    animation: fadeInStep 0.3s ease-in-out;
    border-radius: 4px;
    margin-bottom: 4px;
}

.thinking-step.processing {
    border-left-color: #4e73df;
    background: rgba(78, 115, 223, 0.08);
    animation: fadeInStep 0.3s ease-in-out, processingPulse 2s infinite ease-in-out;
}

.thinking-step:not(.processing) {
    border-left-color: #1cc88a;
    background: rgba(28, 200, 138, 0.05);
}

.step-message {
    color: #5a5c69;
    font-weight: 500;
}

.step-icon {
    transition: all 0.3s ease;
    min-width: 16px;
}

.toggle-icon {
    color: #858796;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes processingPulse {
    0%, 100% {
        background: rgba(78, 115, 223, 0.08);
    }
    50% {
        background: rgba(78, 115, 223, 0.15);
    }
}

.btn-theme, .badge-theme { 
  color: #323232; 
}

.btn-theme, .badge-theme {
    color: #fff;
    background-color: #ffad1f;
    border-color: #ffad1f;
}

.text-theme {
  color: #ffad1f;
}

.bg-theme {
  background-color: #ffad1f;
}

.bg-theme-dark {
  background-color: #323232;
}

.text-theme-dark {
  color: #323232;
}

.text-light-purple {
    color: #bfb9d9;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
}

.navbar-horizontal.navbar-transparent .navbar-nav .nav-link {
    color: rgb(50 50 93);
}

.form-control {
    font-size: .8rem;
}

.form-control::placeholder {
    font-size: .8rem;
}

.dropdown-menu {
    border-radius: 0.2rem;
    box-shadow: 0 1px 1px 0 rgb(66 66 66 / 8%), 0 1px 3px 1px rgb(66 66 66 / 16%) !important;
}

.card { box-shadow: 0 1px 1px 0 rgb(66 66 66 / 8%), 0 1px 3px 1px rgb(66 66 66 / 16%) }

.card-light { background-color: #f6f9fc; }

.card-primary { background-color: #abb8ff56; }

.bg-theme-gradient-primary { background: linear-gradient(87deg,#ffad1f 0,#ffc60e 100%)!important; }

.d-grid { display: grid; }

.focused .form-control {
  border-color: #ffad1f !important;
}

.focused .input-group-text {
  border-color: #ffad1f !important;
}

.icon-shape {
    color: #ffad1e;
}

.form-control { color: #000 !important; }

.flowres-shadow { box-shadow: 0 1px 1px 0 rgb(66 66 66 / 8%), 0 1px 3px 1px rgb(66 66 66 / 16%) !important; }

.breadcrumb-links {
    margin: 0;
    padding: 0;
    background: 0 0;
}

.breadcrumb-dark .breadcrumb-item {
    font-weight: 600;
}

.breadcrumb-item {
    font-size: .875rem;
}

.breadcrumb-dark .breadcrumb-item a {
    color: #323232;
}

.breadcrumb-dark .breadcrumb-item.active {
    color: #323232;
}

item+.breadcrumb-item::before {
    display: inline-block !important;
    padding-right: .5rem !important;
    content: '-' !important;
    color: #8898aa !important;
}

.breadcrumb-dark .breadcrumb-item+.breadcrumb-item::before {
    color: #adb5bd !important;
}

.border-bottom.navbar-dark {
    border-color: rgba(255,255,255,.08)!important;
}

@media (min-width: 768px) {
    .navbar-vertical.navbar-expand-md {
        max-width: 207px;
    }
}

.navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9);
    background-color: #ffad2124;
}

.navbar-vertical .navbar-nav .nav-link {
    font-size: 0.8rem;
}

.shadow, .card-profile-image img {
    box-shadow: 0 2px 2px 0 rgba(122, 122, 122, 0.1), 0 3px 1px -2px rgba(122, 122, 122, 0.1), 0 1px 5px 0 rgba(122, 122, 122, 0.2) !important;
}

@media (min-width: 768px) {
    .navbar-vertical.navbar-expand-md.fixed-left+.main-content {
        margin-left: 210px;
    }
}

@media (min-width: 768px) {
    .navbar-vertical .navbar-collapse:before {
        content: "";
        display: block;
        margin: 0rem !important;
    }
}

@media (min-width: 768px) {
    .navbar-vertical.navbar-expand-md .navbar-nav .nav-link.active:before {
        left: auto;
        right: 0;
        border-left: 2px solid #4caf50;
    }
}

.card-header {
    padding: 0.875rem 0.875rem;
}

@media (min-width: 768px) {
    .main-content .container-fluid, .main-content .container-sm, .main-content .container-md, .main-content .container-lg, .main-content .container-xl {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #000;
    background-color: #fff;
    border-bottom: 2px solid #feae1c;
    border-radius: 0;
}

.nav-pills .nav-link {
    padding: 0.75rem 1rem;
    color: #000;
    font-size: 0.78rem;
    box-shadow: none;
}

.checklist-item {
    position: relative;
    display: flex;
    padding-left: .75rem;
    justify-content: space-between;
    align-items: center;
}

.checklist-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    content: '';
    border-radius: 8px;
    background-color: #f5f5f5;
}

.checklist-item-success:before {
    background-color: #2dce89;
}

.checklist-item-warning:before {
    background-color: #fb6340;
}

.checklist-item-info:before {
    background-color: #11cdef;
}

.checklist-item-past:before {
    background-color: #5e72e4;
}

.divider {
    display: flex;
}
.divider:before, .divider:after {
    content: "";
    flex: 1;
}

.line {
    align-items: center;
    margin: 1em -1em;
}
.line:before, .line:after {
    height: 1px;
    margin: 0 1em;
}

.one-line:before, .one-line:after {
    border: 1px solid rgba(0, 0, 0, .05);
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
*******************************/
    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        position: fixed;
        margin: auto;
        width: 471px;
        height: 100%;
        -webkit-transform: translate3d(0%, 0, 0);
            -ms-transform: translate3d(0%, 0, 0);
             -o-transform: translate3d(0%, 0, 0);
                transform: translate3d(0%, 0, 0);
    }

    .modal.left .modal-content,
    .modal.right .modal-content {
        height: 100%;
        overflow-y: auto;
    }
    
    .modal.left .modal-body,
    .modal.right .modal-body {
        padding: 15px 15px 80px;
    }

/*Left*/
    .modal.left.fade .modal-dialog{
        left: 0px;
        -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
           -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
             -o-transition: opacity 0.3s linear, left 0.3s ease-out;
                transition: opacity 0.3s linear, left 0.3s ease-out;
    }
    
    .modal.left.fade.in .modal-dialog{
        left: 0;
    }
        
/*Right*/
    .modal.right.fade .modal-dialog {
        right: 0;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
           -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
             -o-transition: opacity 0.3s linear, right 0.3s ease-out;
                transition: opacity 0.3s linear, right 0.3s ease-out;
    }
    
    .modal.right.fade.in .modal-dialog {
        right: 0;
    }

.modal-content {
    border: none;
}

.responsive-img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

label,
input {
  cursor: pointer;
}

.top-text-wrapper {
  margin: 20px 0 30px 0;
}

.top-text-wrapper h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.top-text-wrapper code {
  font-size: 0.85em;
  background: linear-gradient(90deg, #fce3ec, #ffe8cc);
  color: #ff2200;
  padding: 0.1rem 0.3rem 0.2rem;
  border-radius: 0.2rem;
}

.tab-section-wrapper {
  padding: 30px 0;
}

.grid-wrapper {
  display: grid;
  grid-gap: 30px;
  place-items: center;
  place-content: center;
}

.grid-col-auto {
  grid-auto-flow: column;
  grid-template-rows: auto;
}

/* ******************* Main Styeles : Radio Card */
label.radio-card {
  cursor: pointer;
}
label.radio-card .card-content-wrapper {
  background: #fff;
  border-radius: 5px;
  max-width: 280px;
  min-height: 330px;
  padding: 15px;
  display: grid;
  box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.04);
  transition: 200ms linear;
}
label.radio-card .check-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: solid 2px #e3e3e3;
  border-radius: 50%;
  transition: 200ms linear;
  position: relative;
}

label.radio-card .check-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.93552 4.58423C0.890286 4.53718 0.854262 4.48209 0.829309 4.42179C0.779553 4.28741 0.779553 4.13965 0.829309 4.00527C0.853759 3.94471 0.889842 3.88952 0.93552 3.84283L1.68941 3.12018C1.73378 3.06821 1.7893 3.02692 1.85185 2.99939C1.91206 2.97215 1.97736 2.95796 2.04345 2.95774C2.11507 2.95635 2.18613 2.97056 2.2517 2.99939C2.31652 3.02822 2.3752 3.06922 2.42456 3.12018L4.69872 5.39851L9.58026 0.516971C9.62828 0.466328 9.68554 0.42533 9.74895 0.396182C9.81468 0.367844 9.88563 0.353653 9.95721 0.354531C10.0244 0.354903 10.0907 0.369582 10.1517 0.397592C10.2128 0.425602 10.2672 0.466298 10.3112 0.516971L11.0651 1.25003C11.1108 1.29672 11.1469 1.35191 11.1713 1.41247C11.2211 1.54686 11.2211 1.69461 11.1713 1.82899C11.1464 1.88929 11.1104 1.94439 11.0651 1.99143L5.06525 7.96007C5.02054 8.0122 4.96514 8.0541 4.90281 8.08294C4.76944 8.13802 4.61967 8.13802 4.4863 8.08294C4.42397 8.0541 4.36857 8.0122 4.32386 7.96007L0.93552 4.58423Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
  transform: scale(1.6);
  transition: 200ms linear;
  opacity: 0;
}

label.radio-card .checkbox-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: solid 2px #e3e3e3;
  border-radius: 28%;
  transition: 200ms linear;
  position: relative;
}

label.radio-card .checkbox-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.93552 4.58423C0.890286 4.53718 0.854262 4.48209 0.829309 4.42179C0.779553 4.28741 0.779553 4.13965 0.829309 4.00527C0.853759 3.94471 0.889842 3.88952 0.93552 3.84283L1.68941 3.12018C1.73378 3.06821 1.7893 3.02692 1.85185 2.99939C1.91206 2.97215 1.97736 2.95796 2.04345 2.95774C2.11507 2.95635 2.18613 2.97056 2.2517 2.99939C2.31652 3.02822 2.3752 3.06922 2.42456 3.12018L4.69872 5.39851L9.58026 0.516971C9.62828 0.466328 9.68554 0.42533 9.74895 0.396182C9.81468 0.367844 9.88563 0.353653 9.95721 0.354531C10.0244 0.354903 10.0907 0.369582 10.1517 0.397592C10.2128 0.425602 10.2672 0.466298 10.3112 0.516971L11.0651 1.25003C11.1108 1.29672 11.1469 1.35191 11.1713 1.41247C11.2211 1.54686 11.2211 1.69461 11.1713 1.82899C11.1464 1.88929 11.1104 1.94439 11.0651 1.99143L5.06525 7.96007C5.02054 8.0122 4.96514 8.0541 4.90281 8.08294C4.76944 8.13802 4.61967 8.13802 4.4863 8.08294C4.42397 8.0541 4.36857 8.0122 4.32386 7.96007L0.93552 4.58423Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
  transform: scale(1.6);
  transition: 200ms linear;
  opacity: 0;
}
label.radio-card input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
label.radio-card input[type=radio]:checked + .card-content-wrapper {
  box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5), 0 0 0 2px #3057d5;
}
label.radio-card input[type=radio]:checked + .card-content-wrapper .check-icon {
  background: #3057d5;
  border-color: #3057d5;
  transform: scale(1.2);
}
label.radio-card input[type=radio]:checked + .card-content-wrapper .check-icon:before {
  transform: scale(1);
  opacity: 1;
}
label.radio-card input[type=radio]:focus + .card-content-wrapper .check-icon {
  box-shadow: 0 0 0 4px rgba(48, 86, 213, 0.2);
  border-color: #3056d5;
}

label.radio-card input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
label.radio-card input[type=checkbox]:checked + .card-content-wrapper {
  box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5), 0 0 0 2px #3057d5;
}
label.radio-card input[type=checkbox]:checked + .card-content-wrapper .checkbox-icon {
  background: #3057d5;
  border-color: #3057d5;
  transform: scale(1.2);
}
label.radio-card input[type=checkbox]:checked + .card-content-wrapper .checkbox-icon:before {
  transform: scale(1);
  opacity: 1;
}
label.radio-card input[type=checkbox]:focus + .card-content-wrapper .checkbox-icon {
  box-shadow: 0 0 0 4px rgba(48, 86, 213, 0.2);
  border-color: #3056d5;
}

label.radio-card .card-content img {
  margin-bottom: 10px;
}
label.radio-card .card-content h4 {
  font-size: 16px;
  letter-spacing: -0.24px;
  text-align: center;
  color: #1f2949;
  margin-bottom: 10px;
}
label.radio-card .card-content h5 {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #686d73;
}

.ql-formats:first-child {
    padding-left: 0;
    display: none;
}

.cancel-email {
  vertical-align: bottom;
  cursor: pointer;
}

.timeline {
    position: relative;
}

.timeline-one-side:before {
    left: 1rem;
}

@media (min-width: 992px) {
  .timeline:before {
      left: 50%;
      margin-left: -2px;
  }
}

[data-timeline-axis-style=dashed]:before {
    border-right-style: dashed!important;
}

.timeline:before {
    position: absolute;
    top: 0;
    left: 1rem;
    height: 100%;
    content: '';
    border-right: 2px solid #e9ecef;
}

.timeline-block:first-child {
    margin-top: 0;
}

.timeline-block {
    position: relative;
    margin: 2em 0;
}

.timeline-one-side .timeline-step {
    left: 1rem;
}

@media (min-width: 992px) {
  .timeline-step {
      left: 50%;
  }

  .timeline-one-side .timeline-content {
      max-width: 30rem;
  }

  .timeline-content {
      width: 38%;
  }
}

.timeline-step {
    font-size: 1rem;
    font-weight: 600;
    position: absolute;
    z-index: 1;
    left: 0;
    display: inline-flex;
    width: 33px;
    height: 33px;
    transform: translateX(-50%);
    text-align: center;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.timeline-one-side .timeline-content {
    width: auto;
}

.timeline-content {
    position: relative;
    position: relative;
    top: -6px;
    margin-left: 60px;
    padding-top: .5rem;
}

.timeline-block:after {
    display: table;
    clear: both;
    content: '';
}

input#search {
    color: inherit;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    width: 100%;
    border: none;
    outline: none;
}

#services ul {        
    background: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    height: 0;
    overflow: hidden;  
    padding-inline-start: 0px;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.2);
    transition: .4s height;
}

#services ul li {
    font-size: 13px;
    padding: 10px 10px;
    list-style: none;
    border-top: 1px solid #ddd;
}

.match {
    font-weight: 600;
    color: green;
}

.cursor-pointer {
    cursor: pointer;
}

.md-chip {
  display: inline-block;
  background: #e0e0e0;
  padding: 0 12px;
  border-radius: 32px;
  font-size: 12px;
}

.md-chip-clickable {
  cursor: pointer;
}

.md-chip, .md-chip-icon {
  height: 32px;
  line-height: 32px;
}

.md-chip-icon {
  display: block;
  float: left;
  background: #009587;
  width: 32px;
  border-radius: 50%;
  text-align: center;
  color: white;
  margin: 0 8px 0 -12px;
}

.md-chip-remove {
  display: inline-block;
  background: #aaa;
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  padding: 0;
  margin: 0 -4px 0 4px;
  cursor: pointer;
  font: inherit;
  line-height: 20px;
}
.md-chip-remove:after {
  color: #e0e0e0;
  content: "x";
}
.md-chip-remove:hover {
  background: #999;
}
.md-chip-remove:active {
  background: #777;
}

.md-chips {
  padding: 12px 0;
}
.md-chips .md-chip {
  margin: 0 5px 3px 0;
}

.md-chip-raised {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
  
.btn .badge-floating {
    position: absolute;
    top: -50%;
    transform: translateY(50%);
    border: 3px solid;
}

.dropzone {
    min-height: 0px !important;
    border: none !important;
    padding: 0px !important;
}

.dz-message {
    z-index: 999;
    padding: 5rem 1rem;
    cursor: pointer;
    transition: all .15s ease;
    text-align: center;
    color: #8898aa;
    border: 1px dashed #dee2e6;
    border-radius: .375rem;
    background-color: #fff;
    order: -1;
}

.sidenav {
    z-index: 0 !important;
}

.navbar {
    z-index: 1;
}

.fix-contrast {
    image-rendering: -webkit-optimize-contrast;
}

#scroll-progress {
    background: #ffad1e;
    height: 2px;
    width: 0;
}

#scroller {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
    white-space: nowrap;
}
#scroller li {
    display: inline-block;
    font-size: 12px;
    height: 50px;
    width: 100px;
    margin-top: 2px;
    text-align: center;
}
.vertical-text {
    writing-mode: vertical-rl; 
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'8\' height=\'8\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z\'/%3e%3c/svg%3e') !important;
}

.native-shadow { box-shadow: 0 1px 1px 0 rgb(66 66 66 / 8%), 0 1px 3px 1px rgb(66 66 66 / 16%) !important; }

.chip-input {
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 12px;
  outline: none;
}

.chip-input::placeholder {
  font-size: 12px;
}

.note-editor {
  box-shadow: none !important;
  border-radius: 0px !important;
}

.note-btn-group .btn-light {
    color: #5e71e4;
    border-color: #adb5bd;
    background-color: #fff !important;
    box-shadow: none !important;
}

.note-btn-group .note-btn {
    border-color: rgb(174 171 171 / 20%) !important;
}

.note-editor.note-airframe, .note-editor.note-frame {
    border: 1px solid rgb(131 131 131 / 20%) !important;
}

.note-toolbar {
    background: #fff !important;
}

.image-upload{
    position: relative;
    max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
}
.image-upload input {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        opacity: 0;
    }
.upload-field {
  display: block;
  background: #F4FAFE;
  padding: 12px;
  border-radius: 2px;

}

.upload-field .file-thumbnail {
  cursor: pointer;
  border: 1px dashed #BBD9EC;
  border-radius: 2px;
  text-align: center;
  padding: 20px;
}

.upload-field .file-thumbnail img {
  height: 100px;
  width: 100px;
  object-fit: cover;
}

.upload-field .file-thumbnail h3 {
  font-size: 12px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 4px;
}

.upload-field .file-thumbnail p {
  font-size: 12px;
  color: #9ABCD1;
  margin-bottom: 0;
}

.text {
  display: table;
  margin: 20px auto;
}
.t-dropdown-block {
  position:relative
}

.t-dropdown-list {
  display: none;
  background-color: #FFF;
  border: 1px solid #DDD;
  z-index: 10;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, .3);
  list-style: none;
  margin: 0;
  padding: 0;
  height: 150px;
  width: 100% !important;
  overflow: auto;
  position: absolute;
  margin-top: 10px;
}

.t-dropdown-item {
  padding: 5px 20px;
  margin: 0;
  cursor: pointer;
}

.t-dropdown-item:hover {
  background-color: #F1F1F1;
}

.t-dropdown-select {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  background-color: #FFF;
  box-sizing: content-box;
}

.t-dropdown-input {
      font-weight: 400;
    line-height: 1.5;
    display: block;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px);
    padding: 0.625rem 0.75rem;
    transition: all .15s cubic-bezier(.68, -.55, .265, 1.55);
    color: #8898aa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: padding-box;
}


.sidenavf-left {
    left: 0 !important;
}

.sidenavf {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.2s;
}

.sidenavf a {
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenavf a:hover {
    color: #242424;
}

.sidenavf .closebtn {
    font-size: 36px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0);
    opacity: .7;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-height: 450px) {
    .sidenavf { padding-top: 15px; }
    .sidenavf a { font-size: 18px; }
}

.form-control[readonly] {
    background-color: #f5f5f5 !important;
}

.profile-pic-wrapper {
  width: 100%;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pic-holder {
  text-align: center;
  position: relative;
  border-radius: .25rem;
  width: 110px;
  height: 110px;
  overflow: hidden;
  display: flex;
  border: 1px solid #dee2e6;
  justify-content: center;
  align-items: center;
}

.pic-holder .pic {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(90, 92, 105, 0.7);
  color: #f8f9fc;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pic-holder .upload-file-block {
  cursor: pointer;
}

.pic-holder:hover .upload-file-block {
  opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
  display: none;
}

.pic-holder.uploadInProgress .upload-loader {
  opacity: 1;
}

/* Snackbar css */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 14px;
  transform: translateX(-50%);
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.dropdown-menu {
  border-radius: 0.2rem !important;
}

@media (min-width: 992px){
    .modal-lg, .modal-xl {
        max-width: 1200px!important ;
    }
}

.modal-custom-height {
   height: calc(100% - 119px) !important;
}

.avatar-cmt {
  height: 38px !important;
  width: 38px !important;
  object-fit: cover;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #5e72e4;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin .8s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.img-fit {
    object-fit: cover;
    height: 36px !important;
    width: 36px !important;
}

.copy-link-sec {
    position: fixed;
    bottom: 0;
    background-color: #fbfbfb; 
    width: inherit;
    z-index: 1;
}

a.text-light:hover, a.text-light:focus {
    color: #ffad1f !important;
}

.dropdown-menu .dropdown-item {
    font-size: .8rem !important;
}

.supplier-logo-fit {
    height: 140px !important;
    width: 140px !important;
    object-fit: contain;
}

.navbar-vertical .navbar-brand-img, .navbar-vertical .navbar-brand > img {
    max-width: 100%;
    max-height: 2.5rem;
}

.avatar {
    background-color: #fff !important;
    object-fit: cover;
}

.nav-img {
    height: 36px !important;
    width: 36px !important;
    object-fit: cover;
}

.nav-logo {
    height: 48px !important;
    width: 48px !important;
    object-fit: contain;
}

.clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    text-overflow: ellipsis;
    overflow: hidden;
}

.clamp-7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;  
    text-overflow: ellipsis;
    overflow: hidden;
}

.jexcel_content {
  padding-right: 0px !important;
}

.jexcel_container {
  padding-right: 0px !important;
}

.jexcel {
  width: 100% !important;
}

.btn-toggle {
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem;
    color: #6b7381;
    background: #29b5a8;
}
.btn-toggle:focus,
.btn-toggle.focus,
.btn-toggle:focus.active,
.btn-toggle.focus.active {
    outline: none;
}
.btn-toggle:before,
.btn-toggle:after {
    line-height: 1.5rem;
    width: 3rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}
.btn-toggle:before {
    content: attr(data-before);
    left: -4rem;
}
.btn-toggle:after {
    content: attr(data-after);
    right: -4rem;
    opacity: 0.5;
}
.btn-toggle > .handle {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #fff;
    transition: left 0.25s;
}
.btn-toggle.active {
    transition: background-color 0.25s;
}
.btn-toggle.active > .handle {
    left: 1.6875rem;
    transition: left 0.25s;
}
.btn-toggle.active:before {
    opacity: 0.5;
}
.btn-toggle.active:after {
    opacity: 1;
}
.btn-toggle:before,
.btn-toggle:after {
    color: #6b7381;
}
.btn-toggle.active {
    background-color: #29b5a8;
}

.modal-dialog {
    pointer-events: visible !important;
}

.star-earned, .rating-input-enabled:hover, .rating-input-enabled:hover ~ .rating-input-enabled { 
    color: #fec42d;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    left: 20px;
}

.rating-input .fa-star {
    font-size: 18px;
    margin-left: 1.8px;
}

.swal2-container {
    z-index: 3000000000 !important;
}

.carousel-inner {
    overflow: inherit;
}

.service-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.2;
}

.service-para {
  line-height: 1.6;
  font-size: 13px;
  text-align: left;
}

.service-section .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background-color: #f8f9fa;
}

.service-section .icon-box:hover .service-title a {
  color: #41A1FD;
}

.service-section .icon-box .service-icon {
  float: left;
  color: #f8a927;
  font-size: 40px;
}

.service-section .icon-box .service-title {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
}

.service-section .icon-box .service-title a {
  color: #556270;
  transition: 0.3s;
  text-decoration: none;
}

.service-section .icon-box .service-para {
  margin-left: 70px;
  line-height: 1.6;
  font-size: 13px;
}

.service-section .service-main-heading {
  color: #556270;
  padding: 0;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 60px;
  font-weight: 600;
}

.feature-img-shadow {
  box-shadow: -8px -8px #f8a927; 
  border: 1px solid #f8a927;
}

.custom-control-label::before {
    border: 1px solid #5e72e4 !important;
}

.datepicker table tr td, .datepicker table tr th {
    font-size: .78rem !important;
    font-weight: 600 !important;
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
    background-color: #505fc0 !important;
    background-image: -moz-linear-gradient(to bottom,#505fc0,#505fc0) !important;
    background-image: -ms-linear-gradient(to bottom,#505fc0,#505fc0) !important;
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#505fc0),to(#505fc0));
    background-image: -webkit-linear-gradient(to bottom,#505fc0,#505fc0) !important;
    background-image: -o-linear-gradient(to bottom,#505fc0,#505fc0) !important;
    background-image: linear-gradient(to bottom,#505fc0,#4f60c0) !important;
    color: #fff !important;
}

.coupon-card{
    background: linear-gradient(135deg, #7158fe, #9d4de6);
    color: #fff;
    text-align: center;
    padding: 40px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
    position: relative;
}
.logo{
    border-radius: 8px;
    margin-bottom: 20px;

}
.coupon-card p{
    font-size: 15px;

}
.coupon-row{
    display: flex;
    align-items: center;
    margin: 25px auto;
    width: fit-content;

}
#cpnCode{
    border: 1px dashed #fff;
    padding: 10px 20px;
    border-right: 0;

}
#cpnBtn{
    border: 1px solid #fff;
    background: #fff;
    padding: 10px 12px;
    color: #7158fe;
    cursor: pointer;
}
.circle1, .circle2{
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

}
.circle1{
    left: -25px;
    background: #5c83ad;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.circle2{
    right: -25px;
    background: #7c77c6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.reward-bg {
  background: linear-gradient(150deg, #009688 15%, #8f6ed5 70%, #d782d9 94%); 
  height: 100vh;
}

.wordcloud-wrapper {
    height: 75vh;
    width: -webkit-fill-available;
    overflow: scroll;
}

.driver-popover-footer button {
    padding: 7px 14px !important;
    text-shadow: none !important;
    background-color: #5e72e4 !important;
    color: #fff !important;
    border: none !important;
    font-size: 12px !important;
}

.driver-popover * {
    font-family: Open Sans, sans-serif !important;
}

.driver-popover-description {
    font: inherit !important;
    line-height: 1.4 !important;
    color: #525f7f !important;
    font-size: 13px !important;
}

.driver-popover {
    max-width: 500px !important;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: auto;
}

.input-group-flush > .input-group-prepend > .input-group-text, .input-group-flush > .input-group-append > .input-group-text {
    padding-right: 1rem;
    padding-left: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    font-size: .875rem;
    height: calc(1.5em + 1.25rem + 5px);
    transition: all .15s ease-in-out;
}

.recording-status-border {
    height: 17px;
    width: 17px;
    border-radius: 20px;
    align-items: center;
    border: 1px solid #a9a9a9;
    display: flex;
    justify-content: center;
}

.bg-active {
  padding: 10px 10px 10px 10px;
  cursor: pointer;
}

.bg-active:hover {
    background-color: #eaecfc; 
    border-radius: 8px;
}

.custom-tab .tab-bg {
    background-color: #f0f0f0;
    width: fit-content;
    padding: 6px;
    border-radius: 5px;
}

.custom-tab .nav-pills .nav-link {
    border-radius: 5px;
    background-color: transparent;
}

.custom-tab .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    border-bottom: none !important;
    background-color: transparent;
}

.d-inline {
  display: inline;
}

.dot-elastic {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #524293;
  color: #524293;
  animation: dot-elastic 1s infinite linear;
}
.dot-elastic::before, .dot-elastic::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-elastic::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #524293;
  color: #524293;
  animation: dot-elastic-before 1s infinite linear;
}
.dot-elastic::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #524293;
  color: #524293;
  animation: dot-elastic-after 1s infinite linear;
}

@keyframes dot-elastic-before {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1.5);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes dot-elastic {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 1.5);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes dot-elastic-after {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

.badge {
    text-transform: capitalize;
}
