/*  
Do not use media queries use one of this mixins 
screen1024, screen1024R, screen768, screen768R, screen375, screen375R
e.g.:
@include screen1024(){
    .container{
        ...
    }
}
*/
.vueForm {
  background-color: #00a3e0;
}
.vueForm .formWrapper {
  --formInput-background-color: #fff;
  --formInput-border-color: #000;
  --formCheckBox-border-color: #fff;
  --formCheckBox-mark-color: #000;
  --formInput-color: #000;
  --formBackground: #000;
  --formLabel-color: #fff;
  --formButton-background-color: #fff;
  --formButton-border-color: #fff;
  --formButton-color: #000;
  --formButton-background-color-hover: #000;
  --formButton-border-color-hover: #fff;
  --formButton-color-hover: #fff;
  --form-close-color: #fff;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.vueForm .formWrapper.lightBlue {
  --formInput-background-color: #fff;
  --formInput-border-color: #00a3e0;
  --formCheckBox-border-color: #00a3e0;
  --formCheckBox-mark-color: #00a3e0;
  --formInput-color: #000;
  --formBackground: #fff;
  --formLabel-color: #000;
  --formButton-background-color: #00a3e0;
  --formButton-border-color: #00a3e0;
  --formButton-color: #fff;
  --formButton-background-color-hover: #fff;
  --formButton-border-color-hover: #00a3e0;
  --formButton-color-hover: #00a3e0;
  --form-close-color: #000;
}
.vueForm .formWrapper.light {
  --formInput-background-color: #fff;
  --formInput-border-color: #000;
  --formCheckBox-border-color: #000;
  --formCheckBox-mark-color: #000;
  --formInput-color: #000;
  --formBackground: #fff;
  --formLabel-color: #000;
  --formButton-background-color: #000;
  --formButton-border-color: #000;
  --formButton-color: #fff;
  --formButton-background-color-hover: #fff;
  --formButton-border-color-hover: #000;
  --formButton-color-hover: #000;
  --form-close-color: #000;
}
@media (max-width: 767px) {
  .vueForm .formWrapper {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.vueForm .formWrapper .close-btn {
  color: var(--form-close-color);
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.vueForm .formWrapper form {
  max-width: 100%;
}
.vueForm .formWrapper form .fields {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.vueForm .formWrapper form .fields .field {
  flex-basis: calc(50% - 10px);
  position: relative;
}
.vueForm .formWrapper form .fields .field.hidden {
  display: none;
}
@media (max-width: 767px) {
  .vueForm .formWrapper form .fields .field {
    flex-basis: 100%;
  }
}
.vueForm .formWrapper form .fields .field input,
.vueForm .formWrapper form .fields .field select,
.vueForm .formWrapper form .fields .field textarea {
  font-family: "Roboto", sans-serif;
  background-color: var(--formInput-background-color);
  border-width: 2px;
  border-style: solid;
  border-color: var(--formInput-border-color);
  border-radius: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: var(--formInput-color);
  font-size: 16px;
  height: 40px;
  letter-spacing: normal;
  padding: 0 10px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  outline: none !important;
}
.vueForm .formWrapper form .fields .field input::-moz-placeholder, .vueForm .formWrapper form .fields .field select::-moz-placeholder, .vueForm .formWrapper form .fields .field textarea::-moz-placeholder {
  color: var(--formInput-color) !important;
}
.vueForm .formWrapper form .fields .field input::placeholder,
.vueForm .formWrapper form .fields .field select::placeholder,
.vueForm .formWrapper form .fields .field textarea::placeholder {
  color: var(--formInput-color) !important;
}
.vueForm .formWrapper form .fields .field input::-moz-placeholder,
.vueForm .formWrapper form .fields .field select::-moz-placeholder,
.vueForm .formWrapper form .fields .field textarea::-moz-placeholder {
  color: #000 !important;
}
.vueForm .formWrapper form .fields .field input::-moz-placeholder, .vueForm .formWrapper form .fields .field select::-moz-placeholder, .vueForm .formWrapper form .fields .field textarea::-moz-placeholder {
  color: #000 !important;
}
.vueForm .formWrapper form .fields .field input::placeholder,
.vueForm .formWrapper form .fields .field select::placeholder,
.vueForm .formWrapper form .fields .field textarea::placeholder {
  color: #000 !important;
}
.vueForm .formWrapper form .fields .field input:-ms-input-placeholder,
.vueForm .formWrapper form .fields .field select:-ms-input-placeholder,
.vueForm .formWrapper form .fields .field textarea:-ms-input-placeholder {
  color: #000 !important;
}
.vueForm .formWrapper form .fields .field input[type=checkbox] {
  height: auto;
  width: auto;
  margin-right: 10px;
  cursor: pointer;
}
.vueForm .formWrapper form .fields .field input[type=checkbox] + label {
  cursor: pointer;
}
.vueForm .formWrapper form .fields .field select {
  cursor: pointer;
}
.vueForm .formWrapper form .fields .field textarea {
  min-height: 100px;
  padding: 10px;
}
.vueForm .formWrapper form .fields .field label {
  color: var(--formLabel-color);
}
.vueForm .formWrapper form .fields .field.fullWidth {
  flex-basis: 100%;
}
.vueForm .formWrapper form .fields .field .consent {
  font-size: 12px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.vueForm .formWrapper form .fields .field .consent p {
  color: var(--formLabel-color);
}
.vueForm .formWrapper form .fields .field .consent .linkPrivacy {
  color: var(--formLabel-color);
  text-decoration: underline;
  cursor: pointer;
}
.vueForm .formWrapper form .fields .field .consent .linkPrivacy:hover {
  color: var(--formLabel-color);
}
.vueForm .formWrapper form .fields .field .consentDropdown select {
  width: 145px;
}
@media (max-width: 374px) {
  .vueForm .formWrapper form .fields .field .consentDropdown {
    gap: 20px;
    flex-direction: column;
  }
  .vueForm .formWrapper form .fields .field .consentDropdown select {
    width: 100%;
  }
}
.vueForm .formWrapper form .fields .field .error {
  top: 110%;
  color: #db7076;
  font-size: 11px;
  left: 0;
  position: absolute;
  text-align: right;
  width: 100%;
}
.vueForm .formWrapper form .submitContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.vueForm .formWrapper form .submitContainer .btnSubmit {
  display: block;
  margin: 0 auto;
  background: var(--formButton-background-color);
  border: 1px solid var(--formButton-border-color);
  border-radius: 50px;
  color: var(--formButton-color);
  font-size: 14px;
  height: auto;
  letter-spacing: 1px;
  padding: 10px 30px 11px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vueForm .formWrapper form .submitContainer .btnSubmit:hover {
  background: var(--formButton-background-color-hover);
  border: 1px solid var(--formButton-border-color-hover);
  color: var(--formButton-color-hover);
}
.vueForm.popupForm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: none;
  background: transparent;
}
.vueForm.popupForm .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 12;
}
.vueForm.popupForm.open {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vueForm.popupForm.open .formWrapper {
  z-index: 13;
  max-width: 865px;
  margin: 0 auto;
  background-color: var(--formBackground);
  position: relative;
  overflow: hidden auto;
  box-sizing: border-box;
  max-height: 100%;
}
@media (max-width: 767px) {
  .vueForm.popupForm.open .formWrapper {
    height: 100%;
    display: block;
  }
}

.container {
  min-height: calc(100vh - 64px);
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

.bold {
  font-weight: 700;
}

.right-background {
  position: absolute;
  left: max((100% - 1060px) / 2 + 230px, 255px);
  bottom: 0;
  width: calc(100% - (100% - 1060px) / 2 - 230px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
  filter: brightness(70%);
}
.right-background.homeImg {
  height: 80%;
  filter: brightness(100%);
}
@media screen and (max-height: 850px) and (min-width: 1024px) {
  .right-background.homeImg {
    -o-object-position: right 100px;
       object-position: right 100px;
    height: unset;
  }
}
@media screen and (max-height: 720px) and (min-width: 1024px) {
  .right-background.homeImg {
    -o-object-position: right 200px;
       object-position: right 200px;
    height: unset;
  }
}
.right-background.landImg {
  width: 100%;
  left: 0;
  -o-object-position: right top;
     object-position: right top;
}
@media (min-width: 1440px) {
  .right-background {
    left: max((100% - 1060px) / 2 + 310px, 335px);
    width: calc(100% - (100% - 1060px) / 2 - 310px);
  }
}

.left-background {
  position: absolute;
  left: 0;
  width: max((100% - 1060px) / 2 + 230px, 255px);
  height: 100%;
  background-color: #fff;
  background-image: url("../img/moto-left.png");
  background-size: cover; /* <------ */
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media (min-width: 1440px) {
  .left-background {
    width: max((100% - 1060px) / 2 + 310px, 335px);
  }
}

.page-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  height: calc(100vh - 64px);
  position: relative;
}
@media (min-width: 1440px) {
  .page-grid {
    grid-template-columns: 310px 1fr;
  }
}

.solutions-container {
  box-shadow: rgba(206, 200, 194, 0.2) -10px 0px 10px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  height: 100%;
  margin-bottom: 10px;
  overflow-y: auto;
  position: relative;
  /* Track */
  /* Handle */
}
.solutions-container::-webkit-scrollbar {
  width: 5px;
}
.solutions-container::-webkit-scrollbar-track {
  background-color: #b3b3b3;
}
.solutions-container::-webkit-scrollbar-thumb {
  background: #FDC385;
  border-radius: 2px;
}

.solutions-tip {
  margin-top: 15px;
  margin-bottom: 8px;
  background-color: #FDC385;
  width: 100%;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  padding: 10px 7px;
  font-size: 12px;
  display: flex;
  gap: 8px;
  position: relative;
  line-height: 16px;
}
.solutions-tip .tip-text {
  max-width: 155px;
}
.solutions-tip .tip-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  height: 30px;
  cursor: pointer;
}
.solutions-tip .tip-icon {
  height: 14px;
}

.solution.color-light .solution-title,
.mobile-needs-container.color-light .solution-title,
.mobile-solution-step.color-light .solution-title {
  color: #F9A239;
}
.solution.color-light .solution-number,
.solution.color-light .need-item.active,
.mobile-needs-container.color-light .solution-number,
.mobile-needs-container.color-light .need-item.active,
.mobile-solution-step.color-light .solution-number,
.mobile-solution-step.color-light .need-item.active {
  background-color: #F9A239;
}
.solution.color-light .need-counter,
.mobile-needs-container.color-light .need-counter,
.mobile-solution-step.color-light .need-counter {
  background-color: #F9A239;
}
.solution.color-light .need-item.inBasket,
.mobile-needs-container.color-light .need-item.inBasket,
.mobile-solution-step.color-light .need-item.inBasket {
  border: 1px solid #F9A239;
  color: #F9A239;
}
.solution.color-light .need-item.inBasket .need-arrow,
.mobile-needs-container.color-light .need-item.inBasket .need-arrow,
.mobile-solution-step.color-light .need-item.inBasket .need-arrow {
  content: url("../img/icons/chevron-light.png");
}
.solution.color-light .need-item.inBasket .circle-tick,
.mobile-needs-container.color-light .need-item.inBasket .circle-tick,
.mobile-solution-step.color-light .need-item.inBasket .circle-tick {
  background-color: #F9A239;
}
.solution.color-light .need-item.inBasket.active,
.mobile-needs-container.color-light .need-item.inBasket.active,
.mobile-solution-step.color-light .need-item.inBasket.active {
  color: white;
}
.solution.color-light .need-item.inBasket.active .circle-tick,
.mobile-needs-container.color-light .need-item.inBasket.active .circle-tick,
.mobile-solution-step.color-light .need-item.inBasket.active .circle-tick {
  background-color: white;
}
.solution.color-medium .solution-title,
.mobile-needs-container.color-medium .solution-title,
.mobile-solution-step.color-medium .solution-title {
  color: #F58220;
}
.solution.color-medium .solution-number,
.solution.color-medium .need-item.active,
.mobile-needs-container.color-medium .solution-number,
.mobile-needs-container.color-medium .need-item.active,
.mobile-solution-step.color-medium .solution-number,
.mobile-solution-step.color-medium .need-item.active {
  background-color: #F58220;
}
.solution.color-medium .need-counter,
.mobile-needs-container.color-medium .need-counter,
.mobile-solution-step.color-medium .need-counter {
  background-color: #F58220;
}
.solution.color-medium .need-item.inBasket,
.mobile-needs-container.color-medium .need-item.inBasket,
.mobile-solution-step.color-medium .need-item.inBasket {
  border: 1px solid #F58220;
  color: #F58220;
}
.solution.color-medium .need-item.inBasket .need-arrow,
.mobile-needs-container.color-medium .need-item.inBasket .need-arrow,
.mobile-solution-step.color-medium .need-item.inBasket .need-arrow {
  content: url("../img/icons/chevron-medium.png");
}
.solution.color-medium .need-item.inBasket .circle-tick,
.mobile-needs-container.color-medium .need-item.inBasket .circle-tick,
.mobile-solution-step.color-medium .need-item.inBasket .circle-tick {
  background-color: #F58220;
}
.solution.color-medium .need-item.inBasket.active,
.mobile-needs-container.color-medium .need-item.inBasket.active,
.mobile-solution-step.color-medium .need-item.inBasket.active {
  color: white;
}
.solution.color-medium .need-item.inBasket.active .circle-tick,
.mobile-needs-container.color-medium .need-item.inBasket.active .circle-tick,
.mobile-solution-step.color-medium .need-item.inBasket.active .circle-tick {
  background-color: white;
}
.solution.color-dark .solution-title,
.mobile-needs-container.color-dark .solution-title,
.mobile-solution-step.color-dark .solution-title {
  color: #BE5600;
}
.solution.color-dark .solution-number,
.solution.color-dark .need-item.active,
.mobile-needs-container.color-dark .solution-number,
.mobile-needs-container.color-dark .need-item.active,
.mobile-solution-step.color-dark .solution-number,
.mobile-solution-step.color-dark .need-item.active {
  background-color: #BE5600;
}
.solution.color-dark .need-counter,
.mobile-needs-container.color-dark .need-counter,
.mobile-solution-step.color-dark .need-counter {
  background-color: #BE5600;
}
.solution.color-dark .need-item.inBasket,
.mobile-needs-container.color-dark .need-item.inBasket,
.mobile-solution-step.color-dark .need-item.inBasket {
  border: 1px solid #BE5600;
  color: #BE5600;
}
.solution.color-dark .need-item.inBasket .need-arrow,
.mobile-needs-container.color-dark .need-item.inBasket .need-arrow,
.mobile-solution-step.color-dark .need-item.inBasket .need-arrow {
  content: url("../img/icons/chevron-dark.png");
}
.solution.color-dark .need-item.inBasket .circle-tick,
.mobile-needs-container.color-dark .need-item.inBasket .circle-tick,
.mobile-solution-step.color-dark .need-item.inBasket .circle-tick {
  background-color: #BE5600;
}
.solution.color-dark .need-item.inBasket.active,
.mobile-needs-container.color-dark .need-item.inBasket.active,
.mobile-solution-step.color-dark .need-item.inBasket.active {
  color: white;
}
.solution.color-dark .need-item.inBasket.active .circle-tick,
.mobile-needs-container.color-dark .need-item.inBasket.active .circle-tick,
.mobile-solution-step.color-dark .need-item.inBasket.active .circle-tick {
  background-color: white;
}

.solution-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px 1fr 50px;
  min-height: 130px;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid #b3b3b3;
  cursor: pointer;
}
.solution-block .icon {
  height: 12px;
}
.solution-block .solution-number {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  font-size: 42px;
  color: #fff;
  font-weight: 400;
}
.solution-block .solution-info {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  padding-left: 12px;
  font-size: 18px;
}
@media (min-width: 1440px) {
  .solution-block .solution-info {
    padding-right: 50px;
  }
}
.solution-block .solution-info .solution-title {
  font-size: 14px;
}
.solution-block .solution-arrow {
  padding-bottom: 16px;
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: end;
}

.need-counter {
  height: 25px;
  width: 25px;
  border: 1px solid white;
  position: absolute;
  border-radius: 50%;
  top: 5px;
  right: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
@media (max-width: 1023px) {
  .need-counter {
    top: auto;
    bottom: -12.5px;
    right: calc(50% - 12.5px);
  }
}
@media (max-width: 767px) {
  .need-counter {
    display: none;
  }
}

.right-container {
  position: relative;
  display: flex;
}

.infinity-block {
  max-width: 285px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin-left: 100px;
  font-size: 20px;
}
.infinity-block .title {
  font-size: 44px;
}

.solution-summary {
  position: absolute;
  right: -25px;
  padding: 26px;
  background-color: #e7e1dc;
  border-radius: 10px;
  min-height: 210px;
  z-index: 1;
  padding-right: max((100% - 1060px) / 2 + 25px, 50px);
  overflow: hidden;
  background-image: url("../img/moto-left-lines.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
}
.solution-summary.open {
  display: block;
  background-image: url("../img/moto-right.png");
  background-position: right bottom;
  max-width: none;
  width: min(100% - (100% - 1060px) / 2 - 205px, 100% - 230px);
  height: 100%;
}
@media (min-width: 1440px) {
  .solution-summary.open {
    width: min(100% - (100% - 1060px) / 2 - 285px, 100% - 310px);
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .solution-summary {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 1023px) {
  .solution-summary.open {
    border-radius: 0;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .solution-summary {
    background-color: #FBF6F0;
    padding-right: 26px;
  }
  .solution-summary.open {
    background-image: none;
    position: fixed;
    z-index: 11;
    margin-bottom: 10px;
    overflow-y: auto;
    padding-bottom: 140px;
  }
  .solution-summary.open .basket-container {
    height: unset;
  }
  .solution-summary.open .custom-btn {
    position: fixed;
    bottom: 20px;
    box-shadow: #FBF6F0 0px 0px 10px 10px;
  }
}
.solution-summary .summary-text {
  font-size: 24px;
}
.solution-summary .summary-info {
  font-size: 16px;
  margin-top: 16px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FDC385;
  width: 300px;
  border-radius: 6px;
  padding: 12px;
  min-width: 240px;
  border: 1px solid #b3b3b3;
}
@media (max-width: 767px) {
  .solution-summary .summary-info {
    width: 100%;
    max-width: none;
  }
}
.solution-summary .summary-info.underlined .summary-ready {
  text-decoration: underline;
}
.solution-summary .summary-info.action {
  background-color: #fff;
  color: #221f1f;
  border: 1px solid #CEC8C2;
}
.solution-summary .summary-info.action .summary-info-title {
  color: #F58220;
  margin-bottom: 8px;
}
.solution-summary .summary-info.action .summary-action {
  font-size: 14px;
  display: block;
}
.solution-summary .summary-info.action.mobile-black {
  background-color: black;
  color: white;
}
.solution-summary .summary-info .summary-action {
  display: none;
}
.solution-summary .summary-nav {
  background-color: #000;
  border-radius: 5px;
  margin-left: 5px;
  color: #fff;
  padding: 5px 10px;
  border: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
.solution-summary .summary-nav .chevron {
  height: 10px;
  margin-right: 5px;
}
.solution-summary .summary-nav .chevron.closed {
  transform: rotate(180deg);
}
.solution-summary .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution-summary .summary-icon {
  margin-right: 16px;
  height: 26px;
}
.solution-summary .summary-icon.hide {
  transform: rotate(180deg);
}
.solution-summary .close-basket {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}
.solution-summary .close-basket img {
  height: 16px;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .solution-summary .close-basket {
    right: 15px;
  }
}

.basket-container {
  font-size: 16px;
}

.need-view .need-background {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.needs-container {
  max-height: 0;
  transition: max-height 0.6s ease-out;
  overflow: hidden;
}

.solution.open .solution-arrow .icon {
  transform: rotate(180deg);
}
.solution.open .solution-block {
  background-color: #FBF6F0;
}
.solution.open .needs-container {
  max-height: 1000px;
  transition: max-height 1s linear;
}

.need-item {
  background-color: #fff;
  color: #78726E;
  padding: 10px 0;
  font-size: 16px;
  border: 1px solid transparent;
  padding-left: 45px;
  display: grid;
  grid-template-columns: 1fr 33px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1440px) {
  .need-item .need-title {
    padding-right: 30px;
  }
}
@media (max-width: 1023px) {
  .need-item .need-title {
    font-size: 14px;
  }
}
.need-item.active {
  color: #fff;
}
.need-item.active .need-arrow {
  filter: sepia(2) brightness(2);
}
.need-item.active .tick {
  content: url("../img/icons/tick.png");
}
.need-item .circle-tick {
  left: 10px;
  top: calc(50% - 10px);
  position: absolute;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.need-item .circle-tick .tick {
  height: 40%;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.need-arrow {
  height: 13px;
}

.need-container {
  height: 280px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  position: absolute;
  top: calc(100% - 320px);
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-template-rows: 28px minmax(230px, auto);
  width: 100%;
}
.need-container .collapse {
  position: absolute;
  right: 0;
  padding: 25px;
  top: calc(50% - 25px);
  cursor: pointer;
}
.need-container .collapse img {
  height: 14px;
}

.need-header-title,
.need-header-features {
  color: #ffffff;
  line-height: 28px;
  font-size: 16px;
}
.need-header-title.color-light,
.need-header-features.color-light {
  background-color: #F9A239;
}
.need-header-title.color-medium,
.need-header-features.color-medium {
  background-color: #F58220;
}
.need-header-title.color-dark,
.need-header-features.color-dark {
  background-color: #BE5600;
}

.need-header-title {
  padding-left: 45px;
}

.need-header-features {
  border-top-right-radius: 6px;
}

.need-info,
.need-features {
  background-color: rgba(255, 255, 255, 0.95);
}

.need-info {
  display: flex;
  align-items: center;
  padding: 0 24px 0 45px;
}

.need-img .img-canva {
  height: 208px;
  width: 164px;
  background-color: #CEC8C2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.need-img img {
  max-width: 80%;
  max-height: 80%;
}

.need-description {
  margin-left: 16px;
  font-size: 16px;
  padding: 28px 0 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.need-description .need-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.btn-add-solution {
  width: 182px;
  font-size: 16px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  border: none;
  border-radius: none;
  color: white;
  margin-top: 25px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-add-solution {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.btn-add-solution.mute {
  background-color: #78726E;
}
.btn-add-solution .plus {
  height: 14px;
}
.btn-add-solution .remove {
  height: 10px;
}

.need-features {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-items: start;
  height: 100%;
  padding: 28px 50px 0 0;
  font-size: 16px;
}
.need-features .feature {
  display: grid;
  -moz-column-gap: 10px;
       column-gap: 10px;
  grid-template-columns: 26px auto;
  align-items: start;
}
.need-features .feature-icon {
  max-height: 26px;
  max-width: 26px;
}

.go-home {
  display: flex;
  color: white;
  font-size: 16px;
  gap: 5px;
  padding: 30px 40px;
  cursor: pointer;
  align-items: center;
}
.go-home .arrow {
  height: 12px;
}
@media (max-width: 1023px) {
  .go-home {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
  }
}

.basket-container {
  margin-top: 20px;
  height: calc(100% - 222px);
}
.basket-container .paragraph {
  margin: 10px 0;
}
@media (max-width: 1023px) {
  .basket-container .paragraph.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .basket-container .paragraph.mobile {
    display: block;
  }
  .basket-container .paragraph.tablet {
    display: none;
  }
}
@media (max-width: 767px) {
  .basket-container {
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .basket-container .paragraph {
    text-align: center;
  }
}

.areas {
  height: calc(100% - 70px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 10px;
  margin-top: 20px;
  padding-right: 20px;
  /* Track */
  /* Handle */
}
.areas .area-name {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
}
@media (min-width: 768px) {
  .areas .area-name {
    min-height: 50px;
  }
}
.areas .need-widget {
  background-color: #fff;
  border: 1px solid #78726E;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 16px;
  min-height: 245px;
  margin-bottom: 15px;
  display: grid;
  grid-template-rows: 75px auto auto;
  align-content: start;
  position: relative;
}
.areas .need-widget.empty {
  display: flex;
  justify-content: center;
  align-items: center;
}
.areas .need-widget .remove-need {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  cursor: pointer;
}
.areas .need-widget .remove-need img {
  height: 10px;
  width: 10px;
}
.areas .need-widget .widget-img {
  max-width: 75px;
  max-height: 60px;
  height: auto;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0 0;
     object-position: 0 0;
  margin-bottom: 5px;
  place-self: center start;
}
.areas .need-widget .need-widget-name {
  font-size: 20px;
}
.areas .need-widget .img-wrapper {
  display: none;
}
@media (max-width: 767px) {
  .areas .need-widget {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    min-height: unset;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
  }
  .areas .need-widget .need-widget-name {
    font-size: 16px;
  }
  .areas .need-widget .widget-img {
    display: none;
  }
  .areas .need-widget .img-wrapper {
    display: block;
    flex-basis: 85px;
    flex-grow: 0;
    flex-shrink: 0;
    height: 80px;
    background-color: #cec8c2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .areas .need-widget .img-wrapper .widget-img-mobile {
    max-height: 90%;
    max-width: 90%;
  }
  .areas .need-widget .remove-need {
    top: calc(50% - 28px);
    right: -8px;
    padding: 20px 0 20px 20px;
  }
  .areas .need-widget .remove-need img {
    height: 16px;
    width: 16px;
    content: url("../img/icons/circle-close.png");
  }
}
.areas::-webkit-scrollbar {
  position: absolute;
  width: 14px;
}
.areas::-webkit-scrollbar-track {
  background-color: white;
  border-radius: 7px;
}
.areas::-webkit-scrollbar-thumb {
  background: #221f1f;
  border-radius: 7px;
}
@media (max-width: 767px) {
  .areas {
    grid-template-columns: 1fr;
    padding-right: 8px;
    height: auto;
    overflow-y: visible;
  }
  .areas::-webkit-scrollbar {
    width: 0px;
  }
}

.pop-up {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-up .pop-up-background {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  filter: brightness(90%);
}
.pop-up .pop-up-cotainer {
  background-color: white;
  max-width: 600px;
  padding: 48px;
  border-radius: 10px;
  filter: brightness(1);
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.pop-up .pop-up-cotainer .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  cursor: pointer;
}
.pop-up .pop-up-cotainer .close img {
  height: 16px;
}
.pop-up .pop-up-cotainer.orange-outline {
  border: 1px solid #F9A239;
}

.entry {
  padding: 24px;
  background-color: #FDC385;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.entry .build-btn {
  margin: auto;
  margin-top: 20px;
  font-size: 16px;
  padding: 13px;
  letter-spacing: 0.5px;
}

.build-btn {
  margin-top: 20px;
}

@media (max-width: 767px) {
  header .logo-bar .logo.show-mobile {
    display: block;
  }
  header .logo-bar .logo.hide-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  header .wrap {
    width: 100%;
    padding: 0 25px;
  }
}

.cart.tablet {
  position: fixed;
  top: 10px;
  right: 50px;
  z-index: 11;
  cursor: pointer;
  padding: 10px 20px;
}
.cart.tablet .basket-items-number {
  position: absolute;
  top: 10px;
  right: 23px;
  font-size: 10px;
}
.cart.tablet img {
  height: 22px;
}
@media (min-width: 768px) {
  .cart.tablet {
    right: 200px;
  }
}
@media (min-width: 1024px) {
  .cart.tablet {
    display: none;
  }
}
@media (max-width: 767px) {
  .cart.tablet.mobile-hidden {
    display: none;
  }
}

.mobile-background {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  min-width: 100%;
  height: calc(100vh - 64px - 452px + 100px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.entry-mobile,
.entry-desktop {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.entry-mobile .infinity-block,
.entry-desktop .infinity-block {
  max-width: none;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 0;
}
.entry-mobile .infinity-block img,
.entry-desktop .infinity-block img {
  max-width: 285px;
}
.entry-mobile .intro,
.entry-desktop .intro {
  text-align: center;
  margin-bottom: 20px;
  max-width: 500px;
}

.entry-desktop {
  position: relative;
  z-index: 2;
  justify-content: start;
}
.entry-desktop .custom-btn {
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1019607843);
}

.beige-background {
  background-color: rgba(253, 195, 133, 0.1);
  width: 100vw;
  min-height: 100%;
  height: calc(100dvh - 64px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .beige-background {
    background-color: #fbf6f0;
  }
}

.mute-background {
  -webkit-backdrop-filter: contrast(0.08) grayscale(0.1) brightness(0.5);
          backdrop-filter: contrast(0.08) grayscale(0.1) brightness(0.5);
  width: 100vw;
  min-height: 100%;
  height: calc(100dvh - 64px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .mute-background {
    background-color: #fbf6f0;
  }
}

.mobile-container {
  margin-bottom: 20px;
}
.mobile-container .mobile-solution-step.color-light {
  background-color: #FBF6F0;
  color: #F9A239;
}
.mobile-container .mobile-solution-step.color-light.active {
  background-color: #F9A239;
  color: white;
}
.mobile-container .mobile-solution-step.color-medium {
  background-color: #FBF6F0;
  color: #F58220;
}
.mobile-container .mobile-solution-step.color-medium.active {
  background-color: #F58220;
  color: white;
}
.mobile-container .mobile-solution-step.color-dark {
  background-color: #FBF6F0;
  color: #BE5600;
}
.mobile-container .mobile-solution-step.color-dark.active {
  background-color: #BE5600;
  color: white;
}
.mobile-container .tablet-background {
  background-image: url("../img/moto-left.png");
  position: absolute;
  left: 0;
  height: 100%;
  width: 100vw;
  background-repeat: no-repeat;
  background-position: -100px 0;
  background-size: contain;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 767px) {
  .mobile-container .tablet-background {
    display: none;
  }
}

.mobile-solutions-header {
  width: 100vw;
  margin-left: -25px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .mobile-solutions-header {
    font-size: 12px;
  }
}

.mobile-solutions-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 54px;
}

.mobile-tip {
  padding: 15px 25%;
  margin: 0 auto;
  text-align: center;
  background-color: white;
}
@media (min-width: 768px) {
  .mobile-tip {
    display: none;
  }
}

.tablet-tip {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: white;
}
@media (min-width: 768px) {
  .tablet-tip {
    display: block;
  }
}

.mobile-solution-step {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  cursor: pointer;
}

.mobile-solution {
  animation: fade-in 0.5s linear;
}
@media (min-width: 768px) {
  .mobile-solution {
    width: 50%;
  }
}

.mobile-solution-block {
  padding-top: 10px;
  font-size: 18px;
  line-height: 1.4;
}
.mobile-solution-block .title {
  font-size: 12px;
}
.mobile-solution-block .title.color-light {
  color: #F9A239;
}
.mobile-solution-block .title.color-medium {
  color: #F58220;
}
.mobile-solution-block .title.color-dark {
  color: #BE5600;
}

.mobile-needs-container .need-item {
  margin-top: 10px;
}
.mobile-needs-container .need-item.active .need-arrow {
  transform: rotate(-90deg);
}
.mobile-needs-container .need-arrow {
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .mobile-needs-container .need-item.active {
    margin-left: -25px;
  }
  .mobile-needs-container .need-arrow.rightChevron {
    transform: rotate(0deg);
  }
}

.mobile-need-container {
  background-color: white;
  padding: 20px;
  margin-left: -25px;
}
.mobile-need-container .need-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0;
  margin-bottom: 10px;
}
.mobile-need-container .mobile-need-img {
  width: 100%;
  height: 150px;
  margin: 10px 0;
  background-color: #CEC8C2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-need-container img {
  max-width: 80%;
  max-height: 80%;
}
.mobile-need-container .mobile-description {
  font-size: 14px;
}
.mobile-need-container .mobile-description .need-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.mobile-need-container .need-features {
  margin: 10px 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  padding: 0;
}
.mobile-need-container .need-features .feature {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 36px auto;
}
.mobile-need-container .need-features .feature .feature-icon {
  align-self: end;
  padding-bottom: 5px;
}
.mobile-need-container .need-features .feature-title {
  font-size: 14px;
}
@media (max-width: 767px) {
  .mobile-need-container .need-features {
    text-align: center;
  }
  .mobile-need-container .need-features .feature-icon {
    place-self: center;
  }
  .mobile-need-container .need-features .feature-title {
    align-self: start;
  }
}
@media (max-width: 767px) {
  .mobile-need-container {
    margin-left: 0;
    margin-top: 150px;
    padding-bottom: 0;
  }
  .mobile-need-container .need-info {
    display: grid;
    grid-template-columns: 4fr 6fr;
    justify-items: center;
    align-items: center;
  }
  .mobile-need-container .mobile-description {
    margin-left: 20px;
  }
}
@media (max-width: 767px) and (max-height: 700px) {
  .mobile-need-container {
    margin-top: 0;
  }
}

.mobile-need-wrapper {
  position: relative;
}
.mobile-need-wrapper .selected-img {
  filter: brightness(0.8);
  position: absolute;
  top: 0;
  left: 100%;
  width: calc(100% + 25px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-height: 700px) {
  .mobile-need-wrapper .selected-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-need-wrapper .selected-img {
    filter: brightness(1);
    top: 20px;
    left: -25px;
    width: 100vw;
    height: 270px;
    z-index: -1;
  }
}

#vueForm0 .title {
  font-size: 30px;
  margin: 0 auto 20px;
  text-align: center;
}
#vueForm0 .subtitle {
  text-align: center;
  max-width: 380px;
  margin: 0 auto 30px;
  font-size: 18px;
}
#vueForm0 .btnSubmit {
  background-color: #f58220;
  font-size: 16px;
  border: none;
}
#vueForm0 input[type=checkbox] {
  margin-right: 0px;
  box-shadow: none;
}
#vueForm0 .overlay {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-color: transparent;
}
#vueForm0 .consent {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#vueForm0 .consent label {
  font-size: 10px;
  color: #b3b3b3;
}
#vueForm0 .consent label .linkPrivacy {
  font-size: 10px;
  color: #b3b3b3;
}
#vueForm0 .close-btn {
  height: 20px;
  width: 20px;
}
#vueForm0 .formWrapper {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  min-width: 50%;
  min-height: 50%;
}
@media (min-width: 768px) {
  #vueForm0 .formWrapper {
    justify-content: center;
  }
}
#vueForm0 .formWrapper .thankYou {
  margin: auto;
}
#vueForm0 .overlay {
  filter: brightness(0.8);
}

#menu-toggle:checked + .menu-options {
  height: 76px !important;
  width: 100% !important;
}

.vueForm .formWrapper form .fields .field input,
.vueForm .formWrapper form .fields .field select {
  border-width: 0px !important;
  background-color: #E7E1DC !important;
  box-shadow: none !important;
  font-size: 16px !important;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .stop-scrolling {
    padding-right: 16px;
  }
}

.slide-popup-enter-active {
  transition: all 0.3s ease-out;
}

.slide-popup-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-popup-enter-from,
.slide-popup-leave-to {
  transform: translateX(200px);
  opacity: 0;
}

.fade-upslide-enter-active {
  opacity: 1;
  transition: all 0.25s ease-in;
}

.fade-upslide-leave-active {
  opacity: 1;
  transition: all 0.25s ease-out;
}

.fade-upslide-enter-from {
  transform: translateY(-8px);
  opacity: 0;
}

.fade-upslide-leave-to {
  transform: translateY(-8px);
  opacity: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-enter-active {
  opacity: 1;
  transition: all 0.2s ease-out;
}

.fade-leave-active {
  opacity: 1;
  transition: all 0.2s ease-in;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.summary-slide-enter-active {
  transition: all 0.3s ease-out;
}

.summary-slide-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}

.summary-slide-enter-from,
.summary-slide-leave-to {
  transform: translateX(20px);
  opacity: 0;
}

.counter-define-enter-active {
  transition: all 0.2s ease-in;
}

.counter-define-enter-from,
.counter-define-leave-to {
  transform: scale(1.1);
  opacity: 0.8;
}

.glow-enter-active {
  transition: all 1.5s ease-out;
}

.glow-leave-active {
  display: none;
}

.glow-enter-from {
  box-shadow: rgba(245, 130, 32, 0.7) 0px 0px 15px 5px;
  opacity: 0.7;
}

.basket-available-enter-active,
.basket-available-leave-active {
  transition: all 0.4s ease-in;
}

.basket-available-enter-from,
.basket-available-leave-to {
  opacity: 0.7;
  transform: translateX(-10px);
  color: #F58220;
}

.basket-available-leave-from {
  color: #F58220;
}

.mobile-need-enter-active,
.mobile-need-leave-active {
  transition: all 0.15s ease-in;
}

.mobile-need-enter-from {
  opacity: 0;
  transform: translateY(-5px);
}

.mobile-need-leave-to {
  opacity: 0;
  transform: translateY(5px);
}

.mobile-need-leave-from,
.mobile-need-enter-to {
  opacity: 1;
}

.landing-page {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1;
  overflow: hidden;
}
.landing-page .landing-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
  width: 100%;
  bottom: 0;
  height: 75%;
}
@media (min-width: 1440px) {
  .landing-page .landing-img {
    height: 90%;
  }
}
.landing-page .moto-lines {
  background-image: url("../img/moto-left.png");
  position: absolute;
  left: 0;
  height: 100%;
  width: 100vw;
  background-repeat: no-repeat;
  background-position: -100px 0;
  background-size: contain;
  overflow: hidden;
  z-index: 1;
}

.pulse {
  animation: pulse-animation 1.5s infinite;
}

.gentle-pulse {
  animation: gentle-pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1.01);
    box-shadow: 0 0 0 0px rgba(245, 130, 32, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px 30px rgba(0, 0, 0, 0);
  }
}
@keyframes gentle-pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(245, 130, 32, 0.8);
  }
  100% {
    box-shadow: 0 0 10px 15px rgba(0, 0, 0, 0);
  }
}
.clickable {
  cursor: pointer;
}
.clickable:hover {
  filter: brightness(0.9);
}

@media (min-width: 768px) {
  #contactUsTop {
    display: none;
  }
}

body.buildView #contactUsTop {
  display: block;
}

#contactUsDownload {
  margin-left: 20px;
}/*# sourceMappingURL=style.css.map */