/* *********************** FONTS ********************** */
/* ************** AR FONTS ************* */
@font-face {
  font-family: ChangaBold;
  src: url(../assets/fonts/changa/Changa-Bold.ttf);
}
@font-face {
  font-family: ChangaExtraBold;
  src: url(../assets/fonts/changa/Changa-ExtraBold.ttf);
}
@font-face {
  font-family: ChangaExtraLight;
  src: url(../assets/fonts/changa/Changa-ExtraLight.ttf);
}
@font-face {
  font-family: ChangaLight;
  src: url(../assets/fonts/changa/Changa-Light.ttf);
}
@font-face {
  font-family: ChangaMedium;
  src: url(../assets/fonts/changa/Changa-Medium.ttf);
}
@font-face {
  font-family: ChangaRegular;
  src: url(../assets/fonts/changa/Changa-Regular.ttf);
}
@font-face {
  font-family: ChangaSemiBold;
  src: url(../assets/fonts/changa/Changa-SemiBold.ttf);
}
@font-face {
  font-family: PoppinsBold;
  src: url(../assets/fonts/poppins/Poppins-Bold.ttf);
}
@font-face {
  font-family: "FontAwesome";
  src: url("https://use.fontawesome.com/releases/v5.0.6/css/all.css");
}
root {
  --color-primary: #fd6f53;
  --color-secondary: #00A1AB;
  --color-gray: #F5F6FA;
  --font-color: #2C3E50;
  --blue: #006FFF;
  --white: #ffffff;
  --black: #000;
  --danger: red;
  --nav-height: 64px;
  --side-nav-width: 20%;
  --main-width: 80%;
  --active-side-nav-width: 10%;
  --active-main-width: 90%;
  --footer-height: 80px;
}

.theme-light {
  --color-primary: #fd6f53;
  --color-secondary: #216469;
  --color-gray: #F5F6FA;
  --font-color: #2C3E50;
  --blue: #006FFF;
  --white: #ffffff;
  --black: #000;
  --danger: red;
  --nav-height: 64px;
  --side-nav-width: 20%;
  --main-width: 80%;
  --active-side-nav-width: 10%;
  --active-main-width: 90%;
}

.theme-dark {
  --color-primary: #3632a7;
  --color-secondary: #0dc7d4;
  --color-gray: #F5F6FA;
  --font-color: #2C3E50;
  --blue: #006FFF;
  --white: #ffffff;
  --black: #000;
  --danger: red;
  --nav-height: 64px;
  --side-nav-width: 20%;
  --main-width: 80%;
  --active-side-nav-width: 10%;
  --active-main-width: 90%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  background-color: rgb(226, 101, 21);
}

.loader{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #3f3d565c;
    background-color: #00000052;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
    z-index: 999;
}
.loader .spinner{
    width: 170px;
    height: 80px;
    background-color: transparent;
    border-radius: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E26515;
    -webkit-border-radius: 83px;
    -moz-border-radius: 83px;
    -ms-border-radius: 83px;
    -o-border-radius: 83px;
}

.loader .spinner img{
    width: 100%;
}
#toast-container>div {
  background-position-x: calc(100% - 13px);
  padding: 15px 50px 15px 15px;
  min-width: 320px;
  max-width: 95%;
}
.loader .spinner .spinner-border{}

.navbar > .container {
  flex-direction: row-reverse;
}
.navbar > .container .navbar-brand img {
  width: 100px;
}
.navbar > .container .navbar-collapse {
  flex-grow: unset;
  -webkit-margin-start: 5rem;
          margin-inline-start: 5rem;
}
.navbar > .container .navbar-collapse .navbar-nav .nav-item {
  margin: 0.3rem 0.4rem;
}
.navbar > .container .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #000000;
  font-size: 14px;
  font-family: ChangaRegular;
}

.spinner-loader {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 98, 98, 0.8784313725);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}
.space-between {
  justify-content: space-between;
}
.text-primary-color {
  color: var(--color-primary);
}

.text-secondary-color {
  color: var(--color-secondary);
}

.text-blue-color {
  color: var(--blue);
}

.text-black-color {
  color: var(--black);
}

.primary-solid-bg {
  background-color: #E26515;
  color: #fff !important;
}
.primary-solid-bg:hover {
  background-color: #E26515;
  color: #fff !important;
}

button {
  box-shadow: none;
}

.tooltip-inner {
    --bs-tooltip-bg: #2C3E50 ;
    background-color: #2C3E50;
    font-family: ChangaRegular;
}

.tooltip-custom-class .tooltip-inner {
    background-color: #dc3545 !important;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
main .main-content .min-form-container {
  max-width: unset;
}
main .main-content .min-form-container .offcanvas {
  padding-top: 5px;
  padding-left: 0;
  padding-right: 0;
  /* width: 385px; */
  width: inherit;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  padding-top: 0;
  z-index: 0;
}
main .main-content .min-form-container .offcanvas .offcanvas-header {
  display: none;
}
main .main-content .min-form-container .offcanvas .offcanvas-body {
  padding: 0;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .row {
  margin: 0;
  padding: 0;
}

main .main-content .min-form-container .offcanvas .offcanvas-body .row#filterWithFunders [class*=col-] {
    margin: 0;
    padding: 0;
}

main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card {
  box-shadow: 0px 3px 6px rgba(180, 172, 172, 0.1019607843);
}

main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .header {
    width: 100%;
    padding: 0 !important;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background-color: #ECECEC !important;
    border: unset;
    border-bottom: 3px solid #E26515;
    color: #2C3E50 !important;
    font-size: 10px;
    font-family: ChangaRegular;
}

main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card ul {
  border-bottom: 1px solid #D5E1F1;
  margin-bottom: 13px;
  padding: 0;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card ul li {
  font-size: 10px;
  color: #2C3E50 !important;
  font-family: ChangaRegular;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card ul li:first-of-type {
  width: 40%;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card ul li:last-of-type {
  width: 100%;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card ul li:has(.active) {
  background-color: #ECECEC;
  border-bottom: 3px solid #E26515;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card ul li .nav-link {
  width: 100%;
  color: #2C3E50 !important;
  padding: 0 !important;
  height: 33px;
  line-height: 33px;
  text-align: center;
  background: transparent;
  border: unset;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content {
  display: flex;
  flex-direction: column;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content > .active {
  display: flex;
  height: 100%;
  flex-direction: column;
  min-height: 93vh;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .dividers {
  width: 100%;
  height: 2px;
  background-color: #BBD2F1;
  border-color: #BBD2F1;
  display: block;
  margin: 8px 0;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .title h6 {
  color: #959EA7;
  font-size: 12px;
  font-family: ChangaRegular;
  margin: 15px 0;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content label {
  font-size: 12px;
  color: #2C3E50;
  font-family: ChangaRegular;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item {
  border: unset;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button {
  color: #959EA7;
  font-size: 12px;
  font-family: ChangaRegular;
  position: relative;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button i {
  margin: 0 12px;
  font-size: 1.3rem;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button:after {
  width: 0.8rem;
  height: 0.8rem;
  left: 42px;
  position: absolute;
  background: unset;
  content: "\f078";
  font-family: FontAwesome;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button:not(.collapsed) {
  background-color: transparent;
  position: relative;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button:not(.collapsed):after {
  width: 0.8rem;
  height: 0.8rem;
  left: 42px;
  position: absolute;
  background: unset;
  content: "\f078";
  font-family: FontAwesome;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button.accordion-button {
  box-shadow: unset;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button.accordion-button:focus {
  box-shadow: unset;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body .form-check {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  justify-content: flex-end;
  padding: 0;
}

main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body .form-check label {
  -webkit-margin-start: 1.8rem;
          margin-inline-start: 1.8rem;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to {
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to:not(:has(.title)) {
  margin-top: 1rem;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to input {
  text-align: center;
  width: 120px !important;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to .values-error {
    position: absolute;
    top: 1rem;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 10px;
    color: #e26515;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .offer-fifty-percent input{
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .offer-fifty-percent label{
    margin-right: 2rem;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .aside-footer {
  margin: 17px 12px;
  margin-top: auto;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .aside-footer button {
  height: 40px;
  width: 100%;
  color: #006FFF;
  font-size: 10px;
  font-family: ChangaRegular;
  box-shadow: none;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .aside-footer button:focus {
  box-shadow: none;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content #search-options .sort-results {
  padding-right: 20px;
  padding-left: 20px;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content #search-options .sort-results .form-check-input {
  border-radius: 50px !important;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content #search-options .sort-results .form-check {
  display: flex;
  width: 100%;
  padding: 0;
  align-items: center;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content #search-options .sort-results .form-check label {
  padding-right: 33px;
}
main .main-content .min-form-container .offcanvas .offcanvas-body .section-footer .container .control-button p {
  display: block;
}
main .main-content .min-form-container.active .col-md-9 {
  width: 100%;
  padding: 0;
}
main .main-content .min-form-container.active .col-md-3.asid-filters {
  display: none !important;
  flex: none;
  width: unset;
  overflow: hidden !important;
}
main .main-content .min-form-container.active .section-footer .container .control-button p {
  display: none;
}
main footer {
  margin-top: auto;
}
main footer .finance-footer {
  background-color: #E8EFF9;
  height: 80px;
  display: flex;
  align-items: center;
}
main footer .finance-footer .copy-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
main footer .finance-footer .copy-right p {
  font-family: ChangaRegular;
  color: #000000;
}

.form-check-input {
  overflow: hidden;
}
.form-check-input:has(:checked) .required {
  background-color: #00A1AB;
  display: none;
}
.form-check-input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
}
.form-check-input[type=radio]:checked {
  border: unset !important;
  position: relative;
}
.form-check-input[type=radio]:checked::after {
  content: "\f00c";
  font-family: FontAwesome;
  width: 100%;
  height: 100%;
  background-color: #06C6B1 !important;
  border-color: #06C6B1 !important;
  text-align: center;
  line-height: 18px;
  color: #fff;
  font-size: 10px;
  border-radius: inherit;
  position: absolute;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}
.form-check-input[type=checkbox] {
  position: relative;
}
.form-check-input[type=checkbox]:checked {
  border: unset !important;
}
/*.form-check-input[type=checkbox]:checked::after {*/
/*  content: "\f00c";*/
/*  font-family: FontAwesome;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: #06C6B1 !important;*/
/*  border-color: #06C6B1 !important;*/
/*  text-align: center;*/
/*  line-height: 19px;*/
/*  color: #fff;*/
/*  font-size: 10px;*/
/*  border-radius: inherit;*/
/*  position: absolute;*/
/*  -webkit-border-radius: inherit;*/
/*  -moz-border-radius: inherit;*/
/*  -ms-border-radius: inherit;*/
/*  -o-border-radius: inherit;*/
/*}*/

form .error {
  position: absolute;
  right: 5px;
  bottom: -4px;
  background-color: transparent;
  color: #C70039 !important;
  font: normal normal normal 10px/52px ChangaRegular;
  font-size: 11px !important;
  height: 22px;
}
form .text-muted {
  position: absolute;
  right: 5px;
  background-color: transparent;
  color: var(--danger);
  font: normal normal normal 10px/52px ChangaRegular;
  height: 20px;
  line-height: 1;
}

select.appearance {
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
}

.wizard {
  min-height: 100%;
}
.wizard #wizardButtons {
  height: 165px;
  height: 110px;
  height: 94px;
  display: grid;
  align-content: end;
  background-image: url(../assets/bg-images/bg.png);
  padding-bottom: 20px;
  display: none;
}
.wizard #wizardButtons .nav-tabs {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-bottom: 0;
}
.wizard #wizardButtons .nav-tabs .nav-item {
  background-color: rgb(255, 255, 255);
  border: 1px solid #bbd2f1;
  overflow: hidden;
}
.wizard #wizardButtons .nav-tabs .nav-item:first-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.wizard #wizardButtons .nav-tabs .nav-item:nth-of-type(3) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.wizard #wizardButtons .nav-tabs .nav-item:last-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link {
  width: 256px;
  height: 59px;
  font-size: 16px;
  color: #3F3D56;
  padding: 0;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ChangaMedium;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link:hover {
  background-color: #fff !important;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link span {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100px;
  background-color: #C9C9C9;
  color: #FFFFFF;
  margin-left: 5px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.active {
  background-color: #BBD2F1;
  border-color: #BBD2F1;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.active span {
  background-color: #fff;
  color: #3F3D56;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.active:hover {
  background-color: #bbd2f1 !important;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.validated-tab {
  background-color: #06C6B1;
  color: #fff;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.validated-tab span {
  position: relative;
  overflow: hidden;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.validated-tab span:after {
  content: "\f00c";
  font-family: FontAwesome;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: #06c6b1;
}
.wizard #wizardButtons .nav-tabs .nav-item button.nav-link.validated-tab:hover {
  background-color: #06C6B1 !important;
}
/* .wizard #wizardTabContent:has(#search-in-offers.active.show):not(:has(.on-offers-list.d-none)) section {
  background-image: url(../assets/bg-images/bg2.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: inherit;
  background-size: 100% 75%;
  height: 100%;
  margin-top: auto;
} */

/* .wizard #wizardTabContent:has(#search-in-offers.active.show):not(:has(.offers-list)):not(:has(.no-data-found)) section {
    background-image: url(../assets/bg-images/bg2.png);
    background-image: url(../assets/bg-images/bg3.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: inherit;
    background-size: 100% 75%;
    height: 100%;
    margin-top: auto;
} */

#search-in-offers.active section{
    height: 100%;
    margin-top: auto;
}

/* .wizard #wizardTabContent:has(#search-in-offers.active.show):has(.no-data-found) section {
    background-image: url('../assets/bg-images/check.png');
} */


.wizard #wizardTabContent .tab-content {
  height: 100%;
  padding-top: 8px;
}
.wizard #wizardTabContent .tab-content #complete .section-body .container {
  margin: auto;
  padding: 0 5rem;
}
.wizard #wizardTabContent .tab-content #complete .section-body .container .row {
  margin: 0;
  padding: 0;
}
.wizard #wizardTabContent .tab-content .form-inputs .select2-selection--single .select2-selection__arrow,
.wizard #wizardTabContent .tab-content .form-inputs .select2-selection--single .select2-selection__rendered,
.wizard #wizardTabContent .tab-content .form-inputs .select2-container .select2-selection--single {
  height: 56px;
  line-height: 56px;
  border-color: #bbd2f1;
  border-radius: 8px;
  font-family: ChangaRegular;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.wizard #wizardTabContent .tab-content section {
  display: flex;
  flex-direction: column;
  height: 100%;

}
.wizard #wizardTabContent .tab-content section.section-information {
  min-height: max-content;
}
.wizard #wizardTabContent .tab-content section:has(.send-otp) .section-body {
  margin-top: auto;
}
.wizard #wizardTabContent .tab-content section .section-head {
  border-bottom: 1.5px solid #BBD2F1;
}
.section-head.flex-head .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  min-height: 60px;
}
.section-head.flex-head {
  margin-bottom: 10px;
  border-bottom: 1.5px solid #BBD2F1;
}
.section-head.flex-head h5 {
  margin-bottom: 0 !important;
  color: #E26515;
  font-size: 16px;
  font-family: ChangaRegular;
}
.section-head.flex-head .prev-tab {
  height: 23px;
  font-size: 14px;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  border: none;
}
.section-head.flex-head .change-car {
  height: 23px;
  font-size: 14px;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  border: none;
}
.wizard #wizardTabContent .tab-content section .section-head .container {
  min-height: 60px;
  align-items: end;
  display: grid;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card {
  width: 789px;
  height: 203px;
  margin: auto;
  border: 1px solid #06C6B1;
  border-radius: 10px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-header {
  border-bottom: 1px solid #06c6b1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-header .title {
  color: #3F3D56;
  font-size: 12px;
  font-family: ChangaRegular;
  margin-right: 10px;
  font-weight: 600;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-header .switch {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 100%;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-header .switch h5 {
  color: #E26515;
  font-size: 14px;
  font-family: ChangaRegular;
  margin: 0;
  margin: 0 5px 0 55px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-header .switch button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 30px;
  box-shadow: none;
  height: 100%;
  font-size: 12px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-header .switch button i {
  color: #3F3D56;
  font-size: 1.3rem;
  margin: 10px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content {
  padding: 10px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-title {
  margin-top: 5px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-title h6 {
  color: #E26515;
  font-size: 12px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-title h6 span {
  color: #2C3E50;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content {
  display: flex;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content {
  width: 160px;
  display: flex;
  align-items: center;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content:first-of-type {
  margin-right: 50px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content span {
  font-size: 12px;
  color: #727B85;
  display: inline-block;
  font-family: ChangaRegular;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}
.wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content p {
  font-size: 12px;
  color: #2C3E50;
  color: rgb(226, 101, 21);
  display: inline-block;
  font-family: ChangaRegular;
  font-weight: 600;
}
.wizard #wizardTabContent .tab-content section .section-head .container h5 {
  margin-bottom: .8rem;
  color: #E26515;
  font-size: 16px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body {
  height: 100%;
}
.wizard #wizardTabContent .tab-content section .section-body .container {
  height: 100%;
  padding: 0;
}
.wizard #wizardTabContent .tab-content section .section-body .container.custom-padding {
  padding: 14px 6rem;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp {
  max-width: 24rem;
  margin: auto;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp b,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp b {
  text-align: center;
  display: block;
  color: #2C3E50;
  font-size: 16px;
  font-family: ChangaBold;
  margin-bottom: 8px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp p,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp p {
  text-align: center;
  color: #727B85;
  font-size: 14px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-input,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input {
  margin-top: 12px;
  margin-bottom: 23px;
  position: relative;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-input label,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input label {
  color: #2C3E50;
  font-size: 12px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-check-conditions,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-check-conditions {
  display: flex;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-check-conditions input,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-check-conditions input {
  float: unset;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-check-conditions label,
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-check-conditions p,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-check-conditions label,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-check-conditions p {
  text-align: justify;
  font-size: 10px;
  color: #2C3E50;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-check-conditions label a,
.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .form-check-conditions p a,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-check-conditions label a,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-check-conditions p a {
  color: #0058AF;
}

.wizard #wizardTabContent .tab-content section .section-body .container .send-otp .tooltip-inner {
    --bs-tooltip-bg: #dc3545 !important;
    background-color: #dc3545 !important;
}

.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield .input {
  height: 2em;
  width: 3em;
  border: 2px solid #dad9df;
  outline: none;
  text-align: center;
  font-size: 1.5em;
  border-radius: 0.3em;
  background-color: #ffffff;
  outline: none;
  /*Hidenumberfieldarrows*/-moz-appearance: textfield;
  -webkit-border-radius: 0.3em;
  -moz-border-radius: 0.3em;
  -ms-border-radius: 0.3em;
  -o-border-radius: 0.3em;
}

.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield .input.is-valid {
    border-color: #198754;
}

.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield .input.is-invalid {
    border-color: #dc3545;
}

.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield input[type=number]::-webkit-outer-spin-button,
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp span {
  font-size: 12px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp span a {
  color: #00A1AB;
}
.wizard #wizardTabContent .tab-content section .section-body .container .row {
  padding: 0;
  margin: 0;
}

.wizard #wizardTabContent .tab-content section .section-body .container .row:has(.no-data-found){
    /* background-color: red; */
    background-image: url(../assets/bg-images/check.png);
    background-repeat: no-repeat;
    background-position: center;

}

/* .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data{
    display: none;
} */

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div {
  background-color: #F5F7F9 !important;
  border-radius: 4px;
  /*height: 72px;
  */position: relative;
  /*z-index: 9999; */
  padding: .4rem .2rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 14px;
}
.section-information .info-row-container {
  font-size: 13px;
  align-items: center;
}
.info-row-container .img-car img {
  border-radius: 15px;
  height: 85px;
}
.info-row-container,
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .info-row-container {
  flex-direction: row;
  gap: 10px;
  font-family: ChangaMedium;
  flex-wrap: wrap;
  align-items: center;
}
.info-row-container .info-row,
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .info-row-container .info-row {
  width: auto;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .selected-info {}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .selected-info [class*=col-]{
    margin-top: 6px;
    font-family: ChangaRegular;
    border-radius: 0;
    padding-bottom: 9px !important;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .selected-info [class*=col-] label{
    margin-bottom: 0 !important;
}


.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .selected-info [class*=col-]:nth-last-of-type(2),
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .selected-info [class*=col-]:nth-last-of-type(1),
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .selected-info [class*=col-]:last-of-type {
    border-bottom: unset;
}


.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .edit-details-button {}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-2:has(#editDetails){
    border-right: 2px solid #ffff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-2{}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  margin-bottom: 7px !important;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .number-mark{
    position: absolute;
    left: 1rem;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group label {
    margin: auto;
    font-size: 12px;
    color: #2C3E50;
    min-width: 77px;
    text-align: center;
    font-family: ChangaRegular;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group label.error {
    top: 4.3em;
    line-height: 22px;
    right: 5rem;
    z-index: 99;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .select2-container {
    width: 100% !important;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group select {
  /* width: 145px; */
  font-family: ChangaRegular;
  font-size: 14px;
  color: #2C3E50;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group:has(select.is-invalid) .select2-selection {
    border-color: #C70039 ;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .select2-selection--single .select2-selection__arrow,
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .select2-selection--single .select2-selection__rendered,
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .select2-container .select2-selection--single {
  height: 40px;
  line-height: 40px;
  border-color: #bbd2f1;
  font-family: ChangaRegular;
  font-size: 14px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div a {
  border: 1px solid #E26515;
  color: #E26515;
  width: 123px;
  width: 154px;
  font-size: 14px;
  font-family: ChangaRegular;
  padding: 0;
  height: 35px;
  line-height: 35px;
  margin: auto;
  margin-top: 0;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div a#searchOffersBtn {
  width: auto;
  padding: 0 10px
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div:has(a) {
  background-color: #006FFF;
}
.wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div h2 {
  color: #06C6B1;
  font-size: 35px;
  letter-spacing: -0.7px;
  font-family: ChangaBold;
  margin-top: 20px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div h4 {
  font-family: ChangaBold;
  font-size: 20px;
  color: #2C3E50;
  text-align: center;
  line-height: 2;
}
.wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div .image {
  position: relative;
}
.wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div .image img.check {
  top: -140px;
  position: absolute;
  z-index: -1;
  width: 75%;
  margin: auto;
  left: 0;
  right: 0;
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found {
  width: 41rem;
  margin: 10rem auto;
  /* height: 8rem; */
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found b {
  text-align: center;
  font-family: ChangaBold;
  font-size: 16px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found p {
  font-family: ChangaRegular;
  color: #727B85;
  font-size: 16px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found p span {
  background-color: #00A1AB;
  width: 56px;
  height: 26px;
  border-radius: 9px;
  display: inline-block;
  text-align: center;
  line-height: 26px;
  color: #fff;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found p a {
  color: #003D81;
  font-size: 20px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found .icon{
    margin: auto;
    width: 150px;
    height: 150px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .no-data-found .icon img{
    width: 100%;
}


.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group:has(input:checked) .required {
  background-color: #00A1AB;
  display: none;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group:has(.is-valid) label .required {
  display: none;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group label {
  color: #2C3E50;
  font-size: 12px;
  font-family: ChangaRegular;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group label button{
        background: transparent;
    padding: 0;
    margin: 0;
    height: auto;
    border: 0;

}

.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group label i{
    background-color: #E26515;
    color: #fff;
    width: 17px;
    height: 17px;
    border-radius: 100px;
    text-align: center;
    line-height: 17px;
}

.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group label .required {
  color: #C70039;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input {
  height: 56px;
  display: flex;
  align-items: center;
  border-color: #bbd2f1 !important;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input .form-check-inline {
  justify-content: flex-end;
  width: 15%;
  align-items: center;
  display: flex;
  padding: 0;
  flex-direction: row-reverse;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input .form-check-inline label {
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group input:not([type=radio]) {
  height: 56px;
  font-family: ChangaRegular;
  font-size: 14px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group small.number-mark {
  position: absolute;
  top: 45px;
  left: 10px;
  color: #2C3E50;
  font-size: 12px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group small.number-mark-right {
  position: absolute;
  top: 45px;
  left: 10px;
  color: #2C3E50;
  font-size: 12px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group select {
  height: 56px;
  border-color: #BBD2F1;
  font-family: ChangaRegular;
  font-size: 14px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group select.is-valid {
  border-color: green;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group select option {
  color: #2C3E50;
  font-size: 14px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group select option:focus, .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group select option:checked {
  color: #2C3E50;
  font-size: 14px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filter,
.wizard #wizardTabContent .tab-content section .section-body .container .sort {
  background-color: #F6F6F6;
  border: 2px solid #D5E1F1;
  border-radius: 5px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-family: ChangaMedium;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filter .offers-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filter .offers-count b {
  color: #2C3E50;
  font-size: 16px;
  margin-left: 5px;
  font-weight: 300;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filter .offers-count p {
  color: #721C24;
  color: #e26515;
  font-size: 12px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .form-filter .settings {
  display: none;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort{
    display: flex;
    justify-content: flex-start;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort .sort-title{
    border-left: 2px solid #e26515;
    margin-left: 50px;
    padding-left: 16px;
    width: 9rem;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort .sort-title b{
    font-weight: 300;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check{
    /* background-color: red; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 10rem;
    margin-left: 2rem;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check input{
    /*background-color: aqua;
    */border-radius: 100px;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check input[type=checkbox]:checked::after{
    line-height: 25px;
    font-size: 13px;
}

.wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check label{
    /* color: green; */
    font-size: 14px;
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
}

.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list {
  list-style: none;
  padding: 0;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card {
  border: 2px solid #D5E1F1;
  height: 114px;
  position: relative;
  border-radius: 5px;
  font-family: ChangaRegular;
  background-color: #fff;
  padding: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card:nth-child(even) {
  background-color: #F3F3F3 !important;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card:nth-child(even) .card-alert {
  background-color: #F3F3F3 !important;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content {
  height: 100%;
  align-items: center;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content .in-mobile {
  display: none;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div {
  height: 100%;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col:first-of-type {
  text-align: center;
  border-left: 1px solid #d5e1f1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo {
  flex-direction: column;
  font-size: 13px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo span {
  position: relative;

}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo span del {
  max-width: 120px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    display: block;
}
.btn-whatsapp {
    color: white;
    line-height: 47px;
    left: 10px;
    text-align: center;
    position: fixed;
    bottom: 75px;
    font-size: 26px;
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 125px;
    background: #fff;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 0 3px #9a9a9a;
    height: 48px;
    border: 0;
}
.btn-whatsapp i {
    background: #01c264;
    height: 43px;
    min-width: 43px;
    color: white;
    line-height: 43px;
    border-radius: 50%;
}
.btn-whatsapp span {
    font-size: 12px;
    line-height: 19px;
    color: #000;
    font-family: ChangaRegular;
}
@media (min-width: 767px){
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo span {
    position: absolute;
    top: 0;
    width: calc(100% - 155px);
    left: 0;
    border-bottom: 1px solid #ccc;
    text-align: start;
    padding: 5px 10px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type button {
    margin-top: 30px !important;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div p {
    padding-top: 20px;
}
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col:first-of-type {
    max-width: 155px !important;
    min-width: 155px !important;
    width: 155px !important;
  }
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo span b::before {
  content: '\f0dd';
  font-family: FontAwesome;
  position: absolute;
  bottom: -10px;
  font-size: 17px;
  left: calc(50% - 6px);
  color: #8c8c8c;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo span b {
  display: none;
  position: absolute;
  transform: translate(-50% , -26px);
  left: 50%;
  bottom: 0;
  min-width: 100px;
  max-width: 150px;
  font-size: 12px;
  font-weight: 400;
  background-color: #8c8c8c;
  padding: 7px;
  border-radius: 3px;
  color: #fff;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo span:hover b {
  display: block;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col.logo img {
  width: 80px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type {
  flex-direction: column;
  align-items: center;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type span {
  color: #721C24;
  font-size: 12px;
  height: 50px;
  display: flex;
  align-items: center;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type span i {
  color: #E26515;
  padding: 3px;
  font-size: 20px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type p {
  color: #E26515;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type:has(button) {
  display: flex;
  align-items: flex-end;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type button {
  width: 130px;
  height: 33px;
  font-size: 14px;
  margin: auto;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div p {
  color: #727B85;
  font-size: 12px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div b {
  font-size: 14px;
  color: #E26515;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div button {
  width: 132px;
  height: 40px;
  color: #fff;
  background-color: #E26515;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-alert {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #D5E1F1;
  display: none;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-alert .row {
  height: 100%;
}
.wizard.savePdf #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div {
    height: 70%;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-alert .row .text {
  display: flex;
  align-items: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-alert .row .text h3 {
  font-size: 17px;
  margin-bottom: 15px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-alert .row .text p {
  font-size: 13px;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
}
.wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .card-spinner .spinner-content {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
}
.wizard #wizardTabContent .tab-content section .back-to-top {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 90px;
  position: fixed;
  right: 70px;
  bottom: 70px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #2C3E50;
  font-family: ChangaRegular;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
}
.wizard #wizardTabContent .tab-content section .back-to-top i {
  background-color: #E26515;
  padding: 4px;
  border-radius: 80px;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 12px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
}
.wizard #wizardTabContent .tab-content .section-footer {
  margin-top: auto;
  margin-bottom: 10px;
}
.wizard #wizardTabContent .tab-content .section-footer .container.custom-padding {
  padding: 14px 6rem;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0;
  align-items: center;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button p {
  color: #2C3E50;
  font-size: 16px;
  font-family: ChangaRegular;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button button {
  min-width: 116px;
  height: 48px;
  border: unset;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px !important;
  font-family: ChangaRegular;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button button.next-tab {
  background-color: #E26515;
  color: #fff;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button button.prev-tab {
  background-color: #E8EFF9;
  color: #2C3E50;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button button.change-car {
  background-color: #E8EFF9;
  color: #2C3E50;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button .image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 350px;
  margin: auto;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button .image img {
  width: 100%;
}
.wizard #wizardTabContent .tab-content .section-footer .container .control-button .image img.check {
  top: -85px;
  position: absolute;
  z-index: -1;
  width: 83%;
  margin: auto;
  left: 0;
  right: 0;
}

#OffersList li {
  position: relative;
  display: block;
  border: 1px solid hotpink;
  margin-bottom: 5px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  /* -webkit-animation: fadeIn 0.5s linear;
          animation: fadeIn 0.5s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; */
}
/*
#OffersList li:nth-child(1) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

#OffersList li:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#OffersList li:nth-child(3) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

#OffersList li:nth-child(4) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#OffersList li:nth-child(5) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

#OffersList li:nth-child(6) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

#OffersList li:nth-child(7) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}

#OffersList li:nth-child(8) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

#OffersList li:nth-child(9) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}

#OffersList li:nth-child(10) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

#OffersList li:nth-child(11) {
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}

#OffersList li:nth-child(12) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

#OffersList li:nth-child(13) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}

#OffersList li:nth-child(14) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

#OffersList li:nth-child(15) {
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}

#OffersList li:nth-child(16) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

#OffersList li:nth-child(17) {
  -webkit-animation-delay: 4.25s;
          animation-delay: 4.25s;
}

#OffersList li:nth-child(18) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

#OffersList li:nth-child(19) {
  -webkit-animation-delay: 4.75s;
          animation-delay: 4.75s;
}

#OffersList li:nth-child(20) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

#OffersList li:nth-child(21) {
  -webkit-animation-delay: 5.25s;
          animation-delay: 5.25s;
}

#OffersList li:nth-child(22) {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

#OffersList li:nth-child(23) {
  -webkit-animation-delay: 5.75s;
          animation-delay: 5.75s;
}

#OffersList li:nth-child(24) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

#OffersList li:nth-child(25) {
  -webkit-animation-delay: 6.25s;
          animation-delay: 6.25s;
}

#OffersList li:nth-child(26) {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

#OffersList li:nth-child(27) {
  -webkit-animation-delay: 6.75s;
          animation-delay: 6.75s;
}

#OffersList li:nth-child(28) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

#OffersList li:nth-child(29) {
  -webkit-animation-delay: 7.25s;
          animation-delay: 7.25s;
}

#OffersList li:nth-child(30) {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

#OffersList li:nth-child(31) {
  -webkit-animation-delay: 7.75s;
          animation-delay: 7.75s;
}

#OffersList li:nth-child(32) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

#OffersList li:nth-child(33) {
  -webkit-animation-delay: 8.25s;
          animation-delay: 8.25s;
}

#OffersList li:nth-child(34) {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}

#OffersList li:nth-child(35) {
  -webkit-animation-delay: 8.75s;
          animation-delay: 8.75s;
}

#OffersList li:nth-child(36) {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

#OffersList li:nth-child(37) {
  -webkit-animation-delay: 9.25s;
          animation-delay: 9.25s;
}

#OffersList li:nth-child(38) {
  -webkit-animation-delay: 9.5s;
          animation-delay: 9.5s;
}

#OffersList li:nth-child(39) {
  -webkit-animation-delay: 9.75s;
          animation-delay: 9.75s;
}

#OffersList li:nth-child(40) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

#OffersList li:nth-child(41) {
  -webkit-animation-delay: 10.25s;
          animation-delay: 10.25s;
}

#OffersList li:nth-child(42) {
  -webkit-animation-delay: 10.5s;
          animation-delay: 10.5s;
}

#OffersList li:nth-child(43) {
  -webkit-animation-delay: 10.75s;
          animation-delay: 10.75s;
}

#OffersList li:nth-child(44) {
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}

#OffersList li:nth-child(45) {
  -webkit-animation-delay: 11.25s;
          animation-delay: 11.25s;
}

#OffersList li:nth-child(46) {
  -webkit-animation-delay: 11.5s;
          animation-delay: 11.5s;
}

#OffersList li:nth-child(47) {
  -webkit-animation-delay: 11.75s;
          animation-delay: 11.75s;
}

#OffersList li:nth-child(48) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

#OffersList li:nth-child(49) {
  -webkit-animation-delay: 12.25s;
          animation-delay: 12.25s;
}

#OffersList li:nth-child(50) {
  -webkit-animation-delay: 12.5s;
          animation-delay: 12.5s;
}

#OffersList li:nth-child(51) {
  -webkit-animation-delay: 12.75s;
          animation-delay: 12.75s;
}

#OffersList li:nth-child(52) {
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}

#OffersList li:nth-child(53) {
  -webkit-animation-delay: 13.25s;
          animation-delay: 13.25s;
}

#OffersList li:nth-child(54) {
  -webkit-animation-delay: 13.5s;
          animation-delay: 13.5s;
}

#OffersList li:nth-child(55) {
  -webkit-animation-delay: 13.75s;
          animation-delay: 13.75s;
}

#OffersList li:nth-child(56) {
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

#OffersList li:nth-child(57) {
  -webkit-animation-delay: 14.25s;
          animation-delay: 14.25s;
}

#OffersList li:nth-child(58) {
  -webkit-animation-delay: 14.5s;
          animation-delay: 14.5s;
}

#OffersList li:nth-child(59) {
  -webkit-animation-delay: 14.75s;
          animation-delay: 14.75s;
}

#OffersList li:nth-child(60) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

#OffersList li:nth-child(61) {
  -webkit-animation-delay: 15.25s;
          animation-delay: 15.25s;
}

#OffersList li:nth-child(62) {
  -webkit-animation-delay: 15.5s;
          animation-delay: 15.5s;
}

#OffersList li:nth-child(63) {
  -webkit-animation-delay: 15.75s;
          animation-delay: 15.75s;
}

#OffersList li:nth-child(64) {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

#OffersList li:nth-child(65) {
  -webkit-animation-delay: 16.25s;
          animation-delay: 16.25s;
}

#OffersList li:nth-child(66) {
  -webkit-animation-delay: 16.5s;
          animation-delay: 16.5s;
}

#OffersList li:nth-child(67) {
  -webkit-animation-delay: 16.75s;
          animation-delay: 16.75s;
}

#OffersList li:nth-child(68) {
  -webkit-animation-delay: 17s;
          animation-delay: 17s;
}

#OffersList li:nth-child(69) {
  -webkit-animation-delay: 17.25s;
          animation-delay: 17.25s;
}

#OffersList li:nth-child(70) {
  -webkit-animation-delay: 17.5s;
          animation-delay: 17.5s;
}

#OffersList li:nth-child(71) {
  -webkit-animation-delay: 17.75s;
          animation-delay: 17.75s;
}

#OffersList li:nth-child(72) {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

#OffersList li:nth-child(73) {
  -webkit-animation-delay: 18.25s;
          animation-delay: 18.25s;
}

#OffersList li:nth-child(74) {
  -webkit-animation-delay: 18.5s;
          animation-delay: 18.5s;
}

#OffersList li:nth-child(75) {
  -webkit-animation-delay: 18.75s;
          animation-delay: 18.75s;
}

#OffersList li:nth-child(76) {
  -webkit-animation-delay: 19s;
          animation-delay: 19s;
}

#OffersList li:nth-child(77) {
  -webkit-animation-delay: 19.25s;
          animation-delay: 19.25s;
}

#OffersList li:nth-child(78) {
  -webkit-animation-delay: 19.5s;
          animation-delay: 19.5s;
}

#OffersList li:nth-child(79) {
  -webkit-animation-delay: 19.75s;
          animation-delay: 19.75s;
}

#OffersList li:nth-child(80) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

#OffersList li:nth-child(81) {
  -webkit-animation-delay: 20.25s;
          animation-delay: 20.25s;
}

#OffersList li:nth-child(82) {
  -webkit-animation-delay: 20.5s;
          animation-delay: 20.5s;
}

#OffersList li:nth-child(83) {
  -webkit-animation-delay: 20.75s;
          animation-delay: 20.75s;
}

#OffersList li:nth-child(84) {
  -webkit-animation-delay: 21s;
          animation-delay: 21s;
}

#OffersList li:nth-child(85) {
  -webkit-animation-delay: 21.25s;
          animation-delay: 21.25s;
}

#OffersList li:nth-child(86) {
  -webkit-animation-delay: 21.5s;
          animation-delay: 21.5s;
}

#OffersList li:nth-child(87) {
  -webkit-animation-delay: 21.75s;
          animation-delay: 21.75s;
}

#OffersList li:nth-child(88) {
  -webkit-animation-delay: 22s;
          animation-delay: 22s;
}

#OffersList li:nth-child(89) {
  -webkit-animation-delay: 22.25s;
          animation-delay: 22.25s;
}

#OffersList li:nth-child(90) {
  -webkit-animation-delay: 22.5s;
          animation-delay: 22.5s;
}

#OffersList li:nth-child(91) {
  -webkit-animation-delay: 22.75s;
          animation-delay: 22.75s;
}

#OffersList li:nth-child(92) {
  -webkit-animation-delay: 23s;
          animation-delay: 23s;
}

#OffersList li:nth-child(93) {
  -webkit-animation-delay: 23.25s;
          animation-delay: 23.25s;
}

#OffersList li:nth-child(94) {
  -webkit-animation-delay: 23.5s;
          animation-delay: 23.5s;
}

#OffersList li:nth-child(95) {
  -webkit-animation-delay: 23.75s;
          animation-delay: 23.75s;
}

#OffersList li:nth-child(96) {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

#OffersList li:nth-child(97) {
  -webkit-animation-delay: 24.25s;
          animation-delay: 24.25s;
}

#OffersList li:nth-child(98) {
  -webkit-animation-delay: 24.5s;
          animation-delay: 24.5s;
}

#OffersList li:nth-child(99) {
  -webkit-animation-delay: 24.75s;
          animation-delay: 24.75s;
}

#OffersList li:nth-child(100) {
  -webkit-animation-delay: 25s;
          animation-delay: 25s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    top: 100px;
  }
  75% {
    opacity: 0.5;
    top: 0px;
  }
  100% {
    opacity: 1;
  }
} */

@media (max-width: 991.98px) {
    .btn-whatsapp {
        bottom: 45px;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container.custom-padding {
        padding: 14px 1rem;
    }

    .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input .form-check-inline{
        width: 25%;
    }

    .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div:empty{
        display: none;
    }

    .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div.col-xs-6 {
        width: 25%;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group label{
        font-size: 10px;
        min-width: 66px;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .select2-container {
        width: 100% !important;
    }

    .wizard #wizardButtons .nav-tabs .nav-item button.nav-link{
        width: 180px;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div a{
        font-size: 11px;

    }

    .wizard #wizardTabContent .tab-content section .section-body .container .sort .sort-title{
        margin-left: 10px;
        min-width: 7rem;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .sort .sort-title p{
        font-size: 12px;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check label{
        font-size: 12px;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check{
        margin-left: 0rem;
    }

    .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col:first-of-type{
        font-size: 12px;
    }

    .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type button{
        font-size: 11px;
        margin: auto;
        padding: 4px;
        width: 80px;
    }

    main .main-content .min-form-container .offcanvas .offcanvas-body .row#filterWithFunders [class*=col-]{
        width: 50%;
    }
    main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body .form-check input{
        width: 20px;
    }
    main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to .row{
        flex-direction: column;
    }
    main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to .row .col-6 {
        width: 100%;
        margin-bottom: 8px;
    }
    main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to .row .col-6 .row{
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        flex-direction: row;
    }

    main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .aside-footer button{
        padding: 0;
    }

    .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card {
        margin: auto;
        width: auto;
    }

}

/* -------------------------------------------------------------------------------------------------------------------------- */
@media (max-width: 575.98px) {

    .loader .spinner{
        width: 170px;
        height: 170px;
        border-radius: 44px;
        -webkit-border-radius: 44px;
        -moz-border-radius: 44px;
        -ms-border-radius: 44px;
        -o-border-radius: 44px;
    }


  .navbar > .container {
    flex-direction: row-reverse;
  }
  .navbar > .container .navbar-brand {
    width: 75%;
  }
  .navbar > .container .navbar-brand img {
    width: 80px;
  }
  .navbar > .container .navbar-collapse {
    flex-grow: unset;
    -webkit-margin-start: 0rem;
            margin-inline-start: 0rem;
  }
  .navbar > .container .navbar-collapse .navbar-nav .nav-item {
    margin: 0.3rem 0.4rem;
  }
  .navbar > .container .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #000000;
    font-size: 14px;
    font-family: ChangaRegular;
  }
  main .main-content .min-form-container {
    padding: 0;
  }

  main .main-content .min-form-container .offcanvas .offcanvas-header button {
    padding: 0;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .row[class*=col-] {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content > .active {
    min-height: 85vh;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .dividers {
    height: 1px;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .title h6 {
    color: #2C3E50;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-header button {
    color: #2C3E50;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body.ps-5 {
    padding-left: unset !important;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body.pe-5 {
    padding-right: unset !important;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body [class*=col-] {
    width: 50%;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body .form-check {
    justify-content: flex-end;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body .form-check label {
    margin-right: 2.5rem;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .accordion .accordion-item .accordion-body .form-check input{
    width: 1rem;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to:not(:has(.title)) {
    margin-top: 1rem;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to .row{
    flex-direction: row;
  }
  main .main-content .min-form-container .offcanvas .offcanvas-body .asid-filters-card .tab-content .from-to .row .col-6{
    width: 50%;
  }

  main footer .finance-footer .copy-right {
    align-items: flex-end;
  }
  main footer .finance-footer .copy-right p {
    font-size: 12px;
  }
  .wizard #wizardButtons {
    height: 85px;
  }
  .wizard #wizardButtons .nav-tabs .nav-item button.nav-link {
    width: 115px;
    /* width: 6rem; */
    height: 45px;
    font-size: 9px;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .confirm-otp .form-input .inputfield .input {
    height: 1.8em;
    width: 2.5em;
  }

  .wizard #wizardTabContent .tab-content #complete .section-body .container {
    padding: 30px 2rem;
  }
  .wizard #wizardTabContent .tab-content section .section-head .container {
    min-height: 30px;
  }
  .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card {
    width: 23rem;
    margin: auto;
    min-width: 19rem !important;
    max-width: 23rem;
    height: auto;
    width: auto;
  }
  .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content {
    flex-wrap: wrap;
    margin-right: 30px;
  }
  .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content {
    width: 50%;
    height: 30px;
  }
  .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content:first-of-type {
    margin-right: 0;
  }
  .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card .review-content .row-content .content span {
    min-width: 4.3rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container.custom-padding {
    padding: 1.5rem 1rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers {
    min-height: auto
  }

  .wizard #wizardTabContent .tab-content section .section-body .container:has(.inputs.d-none) .form-filters-offers {
    height: auto;
    background: #F5F7F9;
    margin-bottom: 10px;
    border-radius: 4px;
   }


  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div {
    background-color: transparent !important;
    flex: 1 0 58%;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .col-md-2{
    display: none;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data>div {
    width: 100%;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10{
    padding-top: 0;
    padding-bottom: 0;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-2{
    border: unset;
    width: 100%;
    align-items: flex-end !important;
    padding: 0;
    margin: 0;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-2 .col-12 {
    align-items: flex-end;
    padding-top: 0;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data label {
    display: inline-block;
    min-width: unset;
    font-size: 12px;
    font-family: ChangaRegular;
    margin-bottom: 0;
    padding: 4px 0;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data b {
    font-family: ChangaRegular;
    font-size: 12px;
  }

  /* .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(3){
   background-color: red !important;
    order: -1;
    flex-grow: 5;
    width: 100%;
    text-align: right;
    display: flex !important;
    justify-content: flex-start;

  } */

  /* ------------------------------------------------------------------------------------------------------------------ */
  /* .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data div {
    flex: unset;
  } */


  /* .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10  {
    padding: 0;
  } */

  /* .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row{
    display: flex;
    height: unset;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row .col-3 {
    width: 33%;
    position: unset;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row .col-3 label{
    position: unset;
    font-size: 10px;
    font-family: ChangaRegular;
    padding-inline-end: 4px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row .col-3 b {
    font-size: 10px;
    font-family: ChangaMedium;
  } */
  /* --------------------------------------------- */
  /* .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(1){
    order: 1;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(2){
    order: 2;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(3){
    order: 4;
    width: 100%;
    text-align: right;
    display: flex !important;
    justify-content: flex-start;

  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(4){
    order: 3;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(5){
    order: 5;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(6){
    order: 6;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-10 .row :nth-child(7){
    order: 7;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-12 {
    overflow: hidden;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .data .col-12 a {
    height: 29px;
    padding: 0;
    margin: 0;
    line-height: 29px;
    color: #fff;
    background: #E26515;
  } */

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row.data {
    height: auto;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row {
    background-color: transparent !important;
    height: auto;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row .form-input-group {
    position: relative;
    display: flex;
    justify-content: center;
    width: 92% !important;
    margin: auto;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row .form-input-group select{
    width: 100%;
    font-size: 12px;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row .form-input-group label {
    position: absolute;
    top: -4px;
    right: 1.2rem;
    z-index: 99;
    text-align: start;
    background-color: #fff;
    text-align: center;
    min-width: auto;
    padding: 4px;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row .form-input-group label.error {
    right: 2rem;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers .row a {
    width: auto;
    margin: 0 1rem;
    padding: 0 15px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div {
    min-height: unset;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list:has(.no-data-found) > div {
    min-height: 3rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div h2 {
    font-size: 17px;
    margin-top: 0;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div h4 {
    margin-top: 0 !important;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div .image {
    max-width: 310px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list > div .image img {
    width: 100%;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort{

  }

  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort .sort-title{
    margin-left: 10px;
    padding-left: 9px;
    font-size: 9px;
    width: 4rem;
    min-width: 4rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort .sort-title .d-flex{
    width: 100%;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort .sort-title b{}
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort .form-check{
    width: unset;
    padding: 0;
    margin: auto;
    margin-left: 10px;
}
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort .form-check input{
    width: 14px;
    height: 14px;
    position: relative;
    top: -2px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .sort .form-check input[type=checkbox]:checked::after {
    line-height: 15px;
    font-size: 9px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .on-offers-list .sort .form-check label{
    font-size: 8px;
    -webkit-margin-start: 1.6rem;
            margin-inline-start: 1.6rem;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .no-data-found {
    width: auto;
    margin: 10rem auto;
    height: 8rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .no-data-found b {
    font-size: 14px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .no-data-found p {
    font-size: 14px;
    line-height: 30px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .no-data-found p span {
    width: 50px;
    height: 20px;
    line-height: 20px;
    color: #fff;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .no-data-found p a {
    font-size: 18px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs div {
    padding: 0;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs div .form-label{
    margin-bottom: 2px;
    margin-top: 6px;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input .form-check-inline {
    justify-content: flex-end;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input .form-check-inline label {
    /* margin-inline-start: 2rem; */
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group .check-input .form-check-inline input {
    width: 20px;
    height: 20px;
    position: absolute;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-inputs .form-input-group select {
    background-position: left 0.75rem center;
    padding-right: 0.5rem;
  }

  .wizard #wizardTabContent .tab-content section .section-body .container .form-filters-offers div .form-input-group .select2-container {
    /* width: 85% !important; */
 }
 .wizard #wizardTabContent .tab-content section .section-body .container .form-filter {
    margin-top: 0 !important;
    padding: 2px 8px;
 }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filter .offers-count {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: flex-start;
    border: unset;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filter .offers-count b {
    font-size: 11px;
    font-size: 10px;
    margin-left: 5px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filter .offers-count p {
    font-size: 10px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filter .settings {
    display: flex;
    font-size: 11px;
    min-width: 164px;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .form-filter .settings i {
    color: #e26515;
    transform: rotate(90deg);
    font-size: 1rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card {
    min-height: 160px;
    height: auto;
    padding-bottom: 6px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content .in-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    /* height: 43px; */
    min-height: 43px;
    font-size: 13px;
    border-bottom: 1px solid #D5E1F1;
    margin-bottom: 10px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col {
    width: 50%;
    flex: none;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 22px;
    margin-bottom: 3px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col:first-of-type {
    display: none;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div .col-2 {
    width: unset;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type {
    padding: 0;
    width: 100%;
    align-items: flex-end;
    -webkit-padding-end: 2rem;
    padding-inline-end: 2rem;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type p {
    display: none;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div [class*=col-]:last-of-type button {
    margin-bottom: 0;
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
  }
  .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div p {
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    display: inline-block;
    width: 44%;
  }
  .wizard #wizardTabContent .tab-content section .back-to-top{
    right: 28px;
    bottom: 28px;
  }
  .wizard #wizardTabContent .tab-content .section-footer .container.custom-padding {
    padding: 9px 1rem;
  }

  .wizard #wizardTabContent .tab-content .section-footer .container .control-button p{
    font-size: 11px;
  }
}

@media (max-width: 480px ) {

    .wizard #wizardButtons .nav-tabs .nav-item button.nav-link{
        width: 6rem;
    }

    .wizard #wizardTabContent .tab-content section .section-body .container .form-filter{
        padding: 0 5px
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .form-filter, .wizard #wizardTabContent .tab-content section .section-body .container .sort {

      padding: 2px 8px;
    }
    .wizard #wizardTabContent .tab-content section .section-body .container .table-offers .offers-list .offer-card .card-content > div p {
        -webkit-margin-end: 15px;
                margin-inline-end: 15px;
        -webkit-margin-end: 2px;
                margin-inline-end: 2px;
        width: 68px;
    }

    .wizard #wizardTabContent .tab-content section .section-head .container .review-data-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}




.private-work {
    display: none;
}
.insurance {
    display: none;
}


.last-step-modal .modal-content {
    border-radius: 15px;
    box-shadow: 0 0 8px #cbcbcb;
    width: 500px;
    max-width: 98%;
    padding: 60px 20px;
}


.last-step-modal .confirm-otp {
    max-width: 24rem;
    margin: auto;
}
.last-step-modal .confirm-otp .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.last-step-modal .confirm-otp b {
    text-align: center;
    display: block;
    color: #2C3E50;
    font-size: 16px;
    font-family: ChangaBold;
    margin-bottom: 8px;
}
.last-step-modal .confirm-otp p {
    text-align: center;
    color: #727B85;
    font-size: 14px;
    font-family: ChangaRegular;
}
.last-step-modal .confirm-otp .form-input {
    margin-top: 12px;
    margin-bottom: 23px;
    position: relative;
}
.last-step-modal .confirm-otp .form-input .inputfield {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
}
.last-step-modal .confirm-otp .form-input .inputfield .input {
    height: 2em;
    width: 3em;
    border: 2px solid #dad9df;
    outline: none;
    text-align: center;
    font-size: 1.5em;
    border-radius: 0.3em;
    background-color: #ffffff;
    outline: none;
    -moz-appearance: textfield;
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    -ms-border-radius: 0.3em;
    -o-border-radius: 0.3em;
}
.last-step-modal .confirm-otp span {
    font-size: 12px;
    font-family: ChangaRegular;
}
.last-step-modal .confirm-otp span a {
    color: #00A1AB;
}
.last-step-modal .confirm-otp .form-input .inputfield .input.is-valid {
    border-color: #198754;
}
.last-step-modal .confirm-otp .form-input .inputfield .input.is-invalid {
    border-color: #dc3545;
}
.last-step-modal .confirm-otp .form-input .inputfield .input::-webkit-outer-spin-button,
.last-step-modal .confirm-otp .form-input .inputfield .input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.last-step-modal .close-modal {
    position: absolute;
    top: 16px;
    cursor: pointer;
}
.warning-p {
    background: #fff6e0;
    color: #E5A000;
    display: inline-block;
    font-size: 13px;
    padding: 5px 11px;
    border-radius: 9px;
    font-family: 'ChangaRegular';
}
.warning-p i {
    color: #ffb301;
}
.modal-h3 {
    margin-bottom: 15px;
    font-family: 'ChangaRegular';
}
.modal-h6 {
    font-family: 'ChangaRegular';
}
.last-step-modal .sucess-NID-content {
    width: 45%;
    margin: auto;
}
@media (max-width: 480px ) {
    .warning-p {
        font-size: 2.3vw;
        margin-bottom: 5vw;
    }

}
