body {
  font-family: "Oswald", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hidden-select-option {
  display: none !important;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.displayNone {
  display: none !important;
}

.input-time-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 16px 10px 20px;
  gap: 8px;
  height: 48px;
  background: #f9f9f9;
  border-radius: 100px;
  border: 1px solid #f9f9f9;
}
.input-time-data div {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #989898;
  width: 46px;
}
.input-time-data:has(> input:focus) {
  background: #f9f9f9;
  border: 1px solid #4ead49;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  color: #565858;
  transition: 0.3s;
}
.input-time-data input {
  background: transparent;
  outline: none;
  border: none;
  color: #4ead49;
}
.input-time-data input::placeholder {
  color: #989898;
  opacity: 1;
}
.input-time-data input:-ms-input-placeholder {
  color: #989898;
}
.input-time-data input:-ms-input-placeholder {
  color: #989898;
}

.custom-tooltip {
  border: none !important;
  position: absolute;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
  background: #f9f9f9 !important;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2) !important;
  border-radius: 4px;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: #565858;
}

.page-title {
  font-weight: 300;
  font-size: 32px;
  line-height: 47px;
  text-transform: uppercase;
  color: #2c2e2e;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 700px) {
  .page-title {
    text-transform: initial;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  align-items: start;
}
@media screen and (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  align-items: start;
}
@media screen and (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 6px;
  position: relative;
}
.input .input-required {
  color: #4ead49;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.input-label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #989898;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.input-label.without-info {
  justify-content: left;
}
.input-data {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-block: 9px;
  padding-inline: 16px;
  gap: 8px;
  width: 100%;
  background: #f9f9f9;
  color: #2c2e2e;
  border: 1px solid #f9f9f9;
  border-radius: 100px;
  outline: none;
  transition: 0.3s;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
}
.input-data::placeholder {
  color: #989898;
  opacity: 1;
}
.input-data:-ms-input-placeholder {
  color: #989898;
}
.input-data:-ms-input-placeholder {
  color: #989898;
}
.input-data.light {
  border-color: #E1E1E1;
  background: #fff;
}
.input-data:focus {
  background: #f9f9f9;
  border: 1px solid #4ead49;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  color: #565858;
  transition: 0.3s;
}
.input-data .completed {
  background: #ffffff;
  border-radius: 100px;
  color: #2c2e2e;
}
.input-data .disable {
  background: #f9f9f9;
  border-radius: 100px;
  color: #989898;
}

/* ====================================================== */
/* ====================================================== */
/* ====================================================== */
/* ====================================================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1360px) {
  .container {
    padding-inline: 14px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-inline: 14px;
  }
}

.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 10px 0 0;
  cursor: pointer;
}

.radio-item input[type=radio] {
  display: none;
  transition: 0.3s;
}

.radio-item label {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #989898;
  cursor: pointer;
}

.radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 24px;
  height: 24px;
  border-radius: 11px;
  border: 2px solid #989898;
  background-color: transparent;
}

.radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 9px;
  left: 10px;
  content: " ";
  display: block;
  background: #4ead49;
  transition: 0.3s;
}

.radio-item input[type=radio]:checked ~ label {
  color: #4ead49;
}

.radio-item input[type=radio]:checked ~ label:before {
  border: 2px solid #4ead49;
}

@media screen and (max-width: 1000px) {
  .radio-btns {
    margin-bottom: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1000px) {
  .radio-btns-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }
}

.radio-btns-header {
  display: flex;
  gap: 10px;
  padding-bottom: 6px;
  justify-content: flex-start;
}
.radio-btns-header .radio-btns-title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565858;
}
.radio-btns-header .radio-btns-info {
  cursor: pointer;
}
.radio-btns-header .radio-btns-info path {
  fill: #4ead49;
}

.registration-number-a-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.registration-number-a-wrapper .registration-number-a-header {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565858;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.registration-number-a-wrapper .registration-number-a-data {
  width: min-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  overflow: hidden;
}
.registration-number-a-wrapper .registration-number-a-data:has(> input:focus) {
  background: #ffffff;
  border: 1px solid #4ead49;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.registration-number-a-wrapper .registration-number-a-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 2px;
  width: 40px;
  height: 48px;
  background: #2d3585;
}
.registration-number-a-wrapper .registration-number-a-img {
  margin-bottom: 2px;
}
.registration-number-a-wrapper .registration-number-a-info {
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #f9f9f9;
}
.registration-number-a-wrapper .registration-number-a-input {
  outline: none;
  border: none;
  background: none;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  padding-inline: 24px;
  width: 130px;
  height: 48px;
  color: #565858 !important;
}

#button-payment.disabled,
#button-next.disabled,
#button-prev.disabled,
#button-next-step-calculator.disabled,
#button-next-step-insured.disabled,
#button-next-third-step.disabled {
  border-color: #e9e9e9 !important;
  background-color: #e9e9e9 !important;
  color: #17252a !important;
}
#button-payment.disabled svg path,
#button-next.disabled svg path,
#button-prev.disabled svg path,
#button-next-step-calculator.disabled svg path,
#button-next-step-insured.disabled svg path,
#button-next-third-step.disabled svg path {
  fill: #17252a !important;
}

@media screen and (max-width: 1000px) {
  #page-calculator #button-next-step-calculator {
    width: 100%;
  }
}

#terms-content .button, #cookies-content .button, #page-calculator .button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  width: 200px;
  height: 48px;
  background: #feffff;
  border: 1px solid #4ead49;
  border-radius: 100px;
  gap: 15px;
  transition: 0.3s;
  color: #17252a;
  font-size: 14px;
}
#terms-content .button svg path, #cookies-content .button svg path, #page-calculator .button svg path {
  fill: #17252a;
}
#terms-content .button.left-right, #cookies-content .button.left-right, #page-calculator .button.left-right {
  flex-direction: row-reverse;
}
#terms-content .button.left-right svg, #cookies-content .button.left-right svg, #page-calculator .button.left-right svg {
  transform: rotate(3.14rad);
}
#terms-content .button svg path, #cookies-content .button svg path, #page-calculator .button svg path {
  transition: 0.3s;
}
#terms-content .button:hover, #cookies-content .button:hover, #page-calculator .button:hover {
  background-color: #4ead49;
  color: white;
  transition: 0.3s;
}
#terms-content .button:hover svg path, #cookies-content .button:hover svg path, #page-calculator .button:hover svg path {
  transition: 0.3s;
  fill: white;
}
#terms-content .button.fill, #cookies-content .button.fill, #page-calculator .button.fill {
  background: #4ead49;
  color: white;
  transition: 0.3s;
}
#terms-content .button.fill svg path, #cookies-content .button.fill svg path, #page-calculator .button.fill svg path {
  fill: white;
  transition: 0.3s;
}
#terms-content .button.fill:hover, #cookies-content .button.fill:hover, #page-calculator .button.fill:hover {
  background-color: white;
  color: #17252a;
  transition: 0.3s;
}
#terms-content .button.fill:hover svg path, #cookies-content .button.fill:hover svg path, #page-calculator .button.fill:hover svg path {
  transition: 0.3s;
  fill: #17252a;
}
#terms-content .button .button-img,
#terms-content .button svg, #cookies-content .button .button-img,
#cookies-content .button svg, #page-calculator .button .button-img,
#page-calculator .button svg {
  width: 20px;
  height: 20px;
}
#terms-content .button .button-data, #cookies-content .button .button-data, #page-calculator .button .button-data {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #17252a;
}

.nice-select {
  position: relative;
  width: 100% !important;
  font-weight: 300;
}
.nice-select span {
  max-width: 85% !important;
}
.nice-select .list {
  max-height: 200px;
  overflow-y: scroll;
  width: 100.59% !important;
  z-index: 2 !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nice-select .list::-webkit-scrollbar {
  display: none;
}
.nice-select .list li:first-child {
  display: none !important;
}
.nice-select .list .option {
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nice-select .current {
  color: #989898 !important;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80% !important;
}

.list {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.list .option {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #989898;
  padding-block: 9px;
  padding-inline: 20px;
}
.list .option:hover {
  background: #f9f9f9;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #2c2e2e;
}
.list .option.selected {
  font-weight: 300;
}
.list .option.disabled {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}

.nice-select {
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
  border-radius: 20px;
  width: min-content;
  height: 48px;
  outline: none;
}
.nice-select .current {
  font-size: 18px;
  line-height: 30px;
  color: #565858;
}
.nice-select.open {
  border-top: 1px solid #4ead49;
  border-right: 1px solid #4ead49;
  border-left: 1px solid #4ead49;
  border-radius: 20px 20px 0 0 !important;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.nice-select.light {
  background: #ffffff;
  border: 1px solid #E1E1E1;
}
.nice-select.light.open {
  border-top: 1px solid #4ead49;
  border-right: 1px solid #4ead49;
  border-left: 1px solid #4ead49;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);
}
.nice-select .list {
  width: 265px;
  margin-top: 0;
  border-radius: 0 0 20px 20px !important;
  border: none;
  border-bottom: 1px solid #4ead49;
  border-right: 1px solid #4ead49;
  border-left: 1px solid #4ead49;
  left: -1px;
  height: auto;
}

.selecte-with-icon {
  display: flex;
}

.select-vehicle-type {
  width: 100%;
}
.select-vehicle-type .list {
  width: 100%;
}
.select-vehicle-type .current {
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.custom-date:has(> input:focus) .ui-datepicker-trigger {
  filter: none;
}

.ui-datepicker-trigger {
  filter: grayscale(100%);
  position: absolute !important;
  right: 13px !important;
  bottom: 13px !important;
}

#datepicker {
  font-family: "Oswald", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 16px 10px 24px;
  gap: 8px;
  height: 48px;
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
  border-radius: 100px;
  outline: none;
  transition: 0.3s;
  color: #565858;
  width: 100%;
}
#datepicker:focus {
  background: #ffffff;
  border: 1px solid #4ead49;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  #datepicker {
    width: 100%;
  }
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-priority-secondary {
  color: #989898 !important;
  opacity: 1 !important;
}

.ui-datepicker-week-end {
  padding: 0 !important;
}

#ui-datepicker-div {
  font-family: "Oswald", sans-serif;
  background: #ffffff;
  border: 1px solid #4ead49;
  border-radius: 20px;
  overflow: hidden;
  padding-inline: 16px;
  padding-block: 24px;
  padding-bottom: 16px;
  width: auto !important;
}
#ui-datepicker-div .ui-datepicker-header {
  background: #ffffff;
  border: none;
}
#ui-datepicker-div .ui-datepicker-title {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
#ui-datepicker-div thead th {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
#ui-datepicker-div tbody td {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #2c2e2e;
}
#ui-datepicker-div tbody td a {
  border: none;
  background: white;
  color: #2c2e2e;
}
#ui-datepicker-div .ui-state-default {
  text-align: center;
  width: 32px;
  height: 32px;
  font-size: 16px !important;
}
#ui-datepicker-div .ui-state-active {
  color: white;
  background: #4ead49;
  border-radius: 4px;
}
#ui-datepicker-div .ui-datepicker-prev {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
#ui-datepicker-div .ui-datepicker-prev-hover {
  background: none;
  border: none;
}
#ui-datepicker-div .ui-datepicker-next {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
#ui-datepicker-div .ui-datepicker-next-hover {
  background: none;
  border: none;
}
#ui-datepicker-div .ui-datepicker-next span {
  transform: rotate(6.28rad);
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.custom-checkbox.align-center {
  align-items: center;
}
.custom-checkbox label {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  color: #565858;
  cursor: pointer;
}
.custom-checkbox label a {
  text-decoration: underline;
  color: #4ead49;
}
.custom-checkbox.disabled {
  cursor: default;
}
.custom-checkbox.disabled label {
  color: #989898;
  cursor: default;
}
.custom-checkbox.disabled .checkbox-input {
  cursor: default;
}
.custom-checkbox.disabled .checkbox-input:checked + label .checkbox {
  cursor: default;
  border: 2px solid #989898;
}
.custom-checkbox.disabled .checkbox-input:checked + label .checkbox svg path {
  fill: #989898;
}

.checkbox-input {
  display: none;
}
.checkbox-input:checked + label .checkbox {
  border: 2px solid #4ead49;
  transition: 0.3s;
}
.checkbox-input:checked + label .checkbox:after {
  transform: translate(-50%, -50%) scale(0);
}

.checkbox {
  border-radius: 3px;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  border: 2px solid #989898;
  transition: 0.3s;
  line-height: 0;
}
.checkbox svg {
  width: 20px;
  height: 20px;
}
.checkbox:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 3px;
  transition: 0.2s;
}

.certificate-type-list {
  display: flex;
  gap: 20px;
}
.certificate-type-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  cursor: pointer;
}
.certificate-type-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 20px;
  height: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}
.certificate-type-data.active {
  background: #ffffff;
  border: 1px solid #4ead49;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.certificate-type-img {
  margin-block: 20px;
  margin-inline: 20px;
  height: 100px;
  max-width: 100%;
  width: auto;
  vertical-align: middle;
}
.certificate-type-name {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565858;
}

.step-content-count-1 .step-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .step-content-count-1 .step-inputs {
    grid-template-columns: repeat(1, 1fr);
  }
}

.step-total {
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: end;
}

.total-amount {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-inline: 20px;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-left: auto;
  background-color: #F9F9F9;
  border-radius: 100px;
  height: 48px;
}
.total-amount.mobile {
  display: none;
}
@media screen and (max-width: 800px) {
  .total-amount.mobile {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1000px) {
  .total-amount {
    align-items: center;
  }
}
.total-amount-info {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565858;
}
.total-amount-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-align: right;
  color: #2c2e2e;
}
.total-amount .calculated_price_eur {
  font-size: 14px;
  font-weight: 300;
  color: #565858;
}

#step-vehicle .radio-btns {
  margin-bottom: 0;
}

.information-part-content {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .information-part-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .information-part-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bs-stepper-content .content {
  display: none !important;
}
.bs-stepper-content .content.active {
  display: block !important;
}

.step-insured-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vehicle-permis-natural, .vehicle-permis-legal, .vehicle-permis {
  width: 100%;
}
.vehicle-permis-natural .list, .vehicle-permis-legal .list, .vehicle-permis .list {
  width: 100.59%;
}

.step-confirmation-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.terms-check {
  margin-top: 40px;
}

.confirm-check {
  margin-top: 16px;
}

.delivery-time {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.finish-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-block: 30px;
  padding-inline: 20px;
}
.finish-steps-img {
  width: 100px;
  height: 100px;
}
.finish-steps-description {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #2c2e2e;
  flex-direction: column;
}
.finish-steps-description a {
  color: #4ead49;
  text-decoration: underline;
  font-weight: 400;
}
.finish-steps-description-1 span {
  color: #4ead49;
  text-decoration: underline;
  font-weight: 400;
}
.finish-steps-description-2 {
  font-weight: 400;
}
.finish-steps .button {
  margin-top: 40px;
}

.radio-block-delivery-day {
  padding-bottom: 0;
  margin-bottom: 0;
}

#input-last-name {
  text-transform: capitalize;
}

#input-first-name {
  text-transform: capitalize;
}

.bs-stepper .step-trigger:hover {
  text-decoration: none;
  background-color: transparent;
}

.bs-stepper-header {
  width: 1160px;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.bs-stepper-content {
  background: #ffffff;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin-top: 40px;
  padding-block: 20px;
  padding-inline: 20px;
}
@media screen and (max-width: 700px) {
  .bs-stepper-content {
    margin-top: 20px;
  }
}

.stepper-content-header-title {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #2c2e2e;
  margin-bottom: 16px;
}

.bs-stepper-circle {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  background: #f9f9f9;
  color: #000000;
}

.bs-stepper-label {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 1000px) {
  .bs-stepper-label {
    display: none;
  }
}

@media screen and (max-width: 705px) {
  .bs-stepper-header {
    padding-inline: 4px !important;
  }
}

@media screen and (max-width: 700px) {
  .bs-stepper-circle {
    margin-top: 0 !important;
  }
}

.step-trigger {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
@media screen and (max-width: 700px) {
  .step-trigger {
    padding: 10px !important;
  }
}

.step.active .bs-stepper-circle {
  color: white;
  background-color: #4ead49;
}
.step.active .bs-stepper-label {
  color: #4ead49;
}
@media screen and (max-width: 1000px) {
  .step.active .bs-stepper-label {
    display: block;
  }
}

.bs-stepper-header {
  width: 100%;
}

.step-nav-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .step-nav-btns .total-amount {
    display: none;
  }
}

.lds-dual-ring {
  width: 100vw;
  position: fixed;
  display: flex;
  height: 100vh;
  justify-content: center;
  top: 0;
  left: 0;
  align-items: center;
  background: rgba(106, 106, 106, 0.3098039216);
  z-index: 100;
}
.lds-dual-ring.filled {
  background: #fff;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #4ead49;
  border-color: #4ead49 transparent #4ead49 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.registration-number-error {
  color: #db5050;
  font-size: 14px;
  display: block;
  width: max-content;
  padding: 11px;
  padding-block: 2px;
  background-color: #ffe9e9;
  border-radius: 100px;
}

#page-calculator-content {
  margin-block: 80px;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 800px) {
  #page-calculator-content {
    margin-block: 40px;
  }
}

#page-calculator, #cookies-content, #terms-content {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#page-calculator .proasig__copyright, #cookies-content .proasig__copyright, #terms-content .proasig__copyright {
  margin-top: auto;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  #page-calculator .proasig__copyright, #cookies-content .proasig__copyright, #terms-content .proasig__copyright {
    width: 100% !important;
    bottom: 0;
    left: 0;
  }
}
#page-calculator .proasig__copyright p, #cookies-content .proasig__copyright p, #terms-content .proasig__copyright p {
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 800px) {
  #page-calculator .proasig__copyright {
    display: none;
  }
}

.input-error {
  border: 1px solid red !important;
  box-shadow: 0 0 11px rgba(141, 41, 41, 0.26);
}

.navbar {
  padding-block: 0;
}

.proasig__navbar.fix .navbar__wrap.open {
  width: 100vw !important;
}

.button-go-home {
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .button-go-home {
    max-width: 426px;
    margin-inline: auto;
    width: 100% !important;
  }
}

.finish-steps-img {
  margin-bottom: 20px;
}

@media (max-width: 400px) {
  .bs-stepper .line,
  .bs-stepper-line {
    flex-basis: auto !important;
  }
}

@media (max-width: 520px) {
  .bs-stepper-header {
    margin: 0 !important;
  }
}

@media screen and (max-width: 1000px) {
  #step-confirmation-time .step-confirmation-inputs {
    margin-top: 20px !important;
  }
}

.navbar__nav {
  padding: 0 !important;
}

@media (max-width: 500px) {
  .certificate-type-data {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .certificate-type-list {
    display: flex;
    flex-direction: column;
  }
}

.bs-stepper .step-trigger.disabled,
.bs-stepper .step-trigger:disabled {
  opacity: 1;
}

.currentSelectOption span, .currentSelectOption .current {
  color: #2c2e2e !important;
}

.payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 5px;
}
.payment-logo > img {
  cursor: pointer;
}

.selectric-scroll ul li:first-child {
  display: none;
}

.navbar__nav ul {
  padding-right: 20px;
}

.navbar {
  position: inherit;
}

.stepper-content-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.stepper-content-info > div {
  width: 100%;
  padding: 10px;
}
.stepper-content-info p {
  font-size: 16px;
  font-weight: 400;
  white-space: normal;
  margin: 0;
}
.stepper-content-info .icon {
  height: 30px;
  width: 30px;
}

.stepper-content-notice p {
  font-size: 14px;
  font-weight: 300;
  white-space: normal;
  margin: 0;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.stepper-content-block {
  width: 100%;
  border-radius: 12px;
  background-color: #F9F9F9;
}
.stepper-content-block-info {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 12px;
}
.stepper-content-block-info.large {
  height: 48px;
}
.stepper-content-block-info #owner_name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.stepper-content-block p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
}
.stepper-content-block p:first-child {
  color: #676B72;
}
.stepper-content-block-divider {
  min-height: 1px;
  height: 1px;
  width: 100%;
  background-color: #ECECEC;
}
.stepper-content-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stepper-content-block-wrapper .stepper-content-header-title {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .stepper-content-block-wrapper {
    gap: 24px;
  }
}
.stepper-content-block.success-info {
  margin-top: 20px;
}

.step-vehicle-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 800px) {
  .step-vehicle-content {
    gap: 24px;
  }
}

#step-vehicle .step-nav-btns {
  margin-top: 16px;
}
@media (max-width: 800px) {
  #step-vehicle .step-nav-btns {
    margin-top: 12px;
  }
}

.step-vehicle-footer {
  margin-top: 20px;
}

.companies-wrapper {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.companies-wrapper .companies-block {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.step-content-calculator-green {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.step-content-calculator-green .grid-2 {
  row-gap: 40px;
}

.multi-select-block {
  display: flex;
  gap: 8px;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
}

.multi-select-label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #989898;
}

.custom-multi-select {
  position: relative;
  width: 100%;
}

.select-box {
  border: 1px solid #E1E1E1;
  padding-inline: 20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 20px;
  transition: all 0.15s ease-out;
  padding-block: 8px;
  display: flex;
  align-items: center;
}
.select-box:hover {
  border-color: #dbdbdb;
}
.select-box.open {
  background-color: #fff;
  border-color: #4ead49;
  border-bottom-color: #f9f9f9;
  border-radius: 20px 20px 0 0;
}

.select-placeholder {
  display: block;
  color: #989898;
  font-weight: 300;
}

.selected-options {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 30px;
}

.checkboxes {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #4ead49;
  border-top: none;
  width: 100%;
  border-radius: 0 0 20px 20px;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 1000;
  left: 0;
  top: 48px;
}
.checkboxes.open {
  display: block;
}

.checkboxes label {
  padding-inline: 20px;
  height: 46px;
  display: flex;
  align-items: center;
  border-top: 1px solid #ECECEC;
  color: #989898;
  font-weight: 300;
}

.checkboxes label:hover {
  background-color: #F9F9F9;
  color: #2C2E2E;
}

.badge {
  background-color: #F9F9F9;
  color: #2C2E2E;
  height: 30px;
  padding-left: 8px;
  padding-right: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 15px;
  font-weight: 300;
  font-size: 18px;
}

.badge .remove-badge {
  margin-left: 5px;
  cursor: pointer;
  color: #fff;
}

.custom-checkbox-input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 6px;
  position: relative;
  width: 100%;
}
.custom-checkbox-input-wrapper .custom-checkbox-label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #989898;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.custom-checkbox-input-wrapper .custom-checkbox-input {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-block: 9px;
  padding-inline: 16px;
  gap: 8px;
  width: 100%;
  background: #fff;
  color: #2c2e2e;
  border: 1px solid #E1E1E1;
  border-radius: 100px;
  outline: none;
  transition: 0.3s;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
}
.custom-checkbox-input-wrapper .custom-checkbox-input:hover {
  border-color: #4EAD49;
}

#ui-datepicker-div tbody td.highlight-range {
  background-color: #E6F9E5;
  border-top: 1px dashed #4EAD49;
  border-bottom: 1px dashed #4EAD49;
}
#ui-datepicker-div tbody td.highlight-range a:not(.ui-state-active) {
  background-color: #E6F9E5;
}

.last-in-range {
  color: white !important;
  background: #4ead49 !important;
  border-radius: 0 4px 4px 0 !important;
}
.last-in-range a {
  color: white !important;
  background: #4ead49 !important;
}

.first-in-range {
  color: white !important;
  background: #4ead49 !important;
  border-radius: 4px 0 0 4px !important;
}
.first-in-range a {
  color: white !important;
  background: #4ead49 !important;
}

.travel-purpose {
  margin-block: 40px;
}

.add-person-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4ead49;
  border: none;
  outline: none;
  background: none;
}

.persons-block {
  border: 1px solid #E1E1E1;
  background: #F9F9F9;
  padding: 24px;
  gap: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.persons-block-item {
  gap: 6px;
  display: flex;
  flex-direction: column;
}

.input-data-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-data-wrapper .delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #E1E1E1;
  min-width: 48px;
  width: 48px;
  height: 48px;
}
.input-data-wrapper > div {
  position: relative;
  width: 100%;
}

.persons-block-divider {
  min-height: 1px;
  height: 1px;
  width: 100%;
  background-color: #ECECEC;
}

select.ui-datepicker-year {
  font-family: "Oswald", sans-serif !important;
  appearance: none; /* Remove default browser styling */
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none; /* For Firefox */
  background-color: #fff;
  border: 1px solid #f9f9f9;
  border-radius: 4px;
  padding-block: 5px;
  font-size: 16px;
  color: #333;
  width: fit-content !important; /* Full width */
  font-weight: 300;
  cursor: pointer;
  outline: none; /* Remove outline on focus */
  transition: all 0.3s ease;
}

select.ui-datepicker-year:focus {
  border-color: #4EAD49; /* Focus border color */
  box-shadow: 0 0 5px rgba(78, 173, 73, 0.5); /* Optional box shadow */
}

.step-offers-table {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.step-offers-table .w-180 {
  max-width: 180px;
  width: 100%;
}
.step-offers-table .w-140 {
  max-width: 140px;
  width: 100%;
}
.step-offers-table .w-full {
  width: 100%;
}

.step-offers-table-header {
  display: flex;
  align-items: center;
  color: #989898;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .step-offers-table-header {
    display: none;
  }
}

.step-offers-table-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-offers-row {
  display: flex;
  width: 100%;
  border: 1px solid #E1E1E1;
  background: #F9F9F9;
  border-radius: 12px;
  padding: 9px 12px;
}
@media screen and (max-width: 800px) {
  .step-offers-row {
    display: none;
  }
}
.step-offers-row p {
  margin: 0;
}
.step-offers-row .company-title {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 10px;
  align-items: center;
}
.step-offers-row .insurance-sum {
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  height: 100%;
}
.step-offers-row .insurance-price {
  height: 100%;
  display: flex;
  align-items: center;
}
.step-offers-row .insurance-price-mdl {
  color: #2C2E2E;
  font-weight: 500;
  font-size: 18px;
}
.step-offers-row .insurance-price-eur {
  color: #989898;
  font-weight: 300;
  font-size: 12px;
}

.step-offers-row-mobile {
  display: none;
  border: 1px solid #E1E1E1;
  background: #F9F9F9;
  border-radius: 12px;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .step-offers-row-mobile {
    display: flex;
  }
}
.step-offers-row-mobile .table-row-mobile {
  border-bottom: 1px solid #ECECEC;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-offers-row-mobile .table-row-header-mobile {
  color: #989898;
  font-size: 14px;
  font-weight: 400;
}
.step-offers-row-mobile p {
  margin: 0;
}
.step-offers-row-mobile .company-title {
  display: flex;
  height: 100%;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}
.step-offers-row-mobile .insurance-sum {
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  height: 100%;
}
.step-offers-row-mobile .insurance-price {
  height: 100%;
  display: flex;
  align-items: center;
}
.step-offers-row-mobile .insurance-price-mdl {
  color: #2C2E2E;
  font-weight: 500;
  font-size: 16px;
}
.step-offers-row-mobile .insurance-price-eur {
  color: #989898;
  font-weight: 300;
  font-size: 12px;
}
.step-offers-row-mobile .button {
  width: 100% !important;
}

.offer-item-row {
  display: flex;
  width: 100%;
  border: 1px solid #E1E1E1;
  border-radius: 8px;
  padding: 12px 16px;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .offer-item-row {
    flex-direction: column;
    padding: 16px 12px;
  }
}
.offer-item-row .company-data {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.offer-item-row p {
  margin: 0;
}
.offer-item-row .company-logo img {
  width: 54px;
  height: 54px;
}
.offer-item-row .company-title {
  color: #989898;
  font-weight: 300;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.offer-item-row .insurance-prices {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-item-row .insurance-price {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-item-row .insurance-price-mdl {
  color: #2C2E2E;
  line-height: 30px;
}
.offer-item-row .insurance-price-eur {
  color: #989898;
  font-weight: 300;
  line-height: 24px;
}
@media screen and (max-width: 800px) {
  .offer-item-row .button {
    width: 100% !important;
  }
}

.error-block {
  display: none;
  color: #9f191f;
  font-size: 14px;
  font-weight: 300;
}

.step-trigger {
  cursor: default !important;
}

.custom-radio-group {
  display: flex;
}
.custom-radio-group.rca-calculator {
  margin-bottom: 16px;
}

.custom-radio {
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #dbdbdb;
  border-radius: 25px;
  font-weight: 300;
  line-height: 1;
  background-color: #f9f9f9;
  transition: background-color 0.03s, border-color 0.03s;
}

.custom-radio.selected {
  background-color: #4caf50;
  border-color: #4caf50;
  color: #fff;
}

.step-person-inputs {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.person-block-inputs {
  background: #F9F9F9;
  border: 1px solid #E1E1E1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
}

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