/* Base colors */
/* Gray colors */
/* Brand colors */
/* Primary colors */
/* Blue colors */
/* Warning colors */
/* Error colors */
/* Neon colors */
.converter-banner {
  padding-top: 150px;
  padding-bottom: 50px;
  background-color: #edf1ee;
}
@media (min-width: 768px) {
  .converter-banner {
    padding-bottom: 0;
  }
}
.converter-banner.pb-150 {
  padding-bottom: 150px !important;
}
@media (min-width: 768px) {
  .converter-banner.pb-md-150 {
    padding-bottom: 150px !important;
  }
}
.converter-banner__left {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .converter-banner__left {
    justify-content: center;
    padding-bottom: 0;
  }
}
.converter-banner__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.converter-banner__title {
  margin-bottom: 0;
  font-size: 62px;
  font-weight: 600;
  line-height: 72px;
  text-align: center;
}
@media (min-width: 768px) {
  .converter-banner__title {
    text-align: left;
  }
}
.converter-banner__description {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .converter-banner__description {
    text-align: left;
  }
}
.converter-banner__features {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 48px auto;
  gap: 8px;
  max-width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .converter-banner__features {
    margin: 48px auto 48px 0;
    max-width: 600px;
  }
}
.converter-banner__feature {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  gap: 12px;
  line-height: 24px;
  list-style: none;
  text-align: left;
}
.converter-banner__feature span {
  text-align: left;
}
.converter-banner__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid #9e96bc;
  border-radius: 100%;
  font-size: 18px;
  line-height: 1;
  position: relative;
}
.converter-banner__feature-icon::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.converter-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .converter-banner__buttons {
    justify-content: flex-start;
  }
}
.converter-banner__button {
  max-width: 240px;
  white-space: nowrap;
  text-align: center;
  height: min-content;
  padding: 10px 70px;
  border: 2px solid #000;
  border-radius: 40px;
  background-color: #000;
  color: #ccf080;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: filter 0.3s ease;
}
.converter-banner__button:hover {
  filter: brightness(1.3);
}
.converter-banner__converter-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: start;
}
@media (min-width: 768px) {
  .converter-banner__converter-wrapper {
    justify-content: flex-end;
  }
}
.converter-banner__loader {
  display: flex;
  width: 100%;
  max-width: 550px;
  height: 573px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #fff;
}
.converter-banner #currency-converter {
  width: 100%;
  max-width: 550px;
  z-index: 2;
}
.converter-banner__loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/*# sourceMappingURL=converter-banner.css.map */
