.ticker-container {
  background: linear-gradient(90deg, #1e1a31, #2c1235);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  will-change: transform;
  animation: animate 80s linear infinite;
}

.ticker-content:nth-child(2) {
  animation: animate2 80s -40s linear infinite;
}

@keyframes animate {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}

.crypto-price {
  margin: 0 30px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-up {
  color: #00ff00;
  /* зеленый для роста */
}

.price-down {
  color: #ff6347;
  /* красный для падения */
}

.crypto-icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
@media (max-width: 730px) {
  .hero {
    padding-bottom: 60px !important;
    max-width: 100%;
    /* чтобы подстраивать элемент под экран */
  }
}

.form__input,
.acf-field .form__content .form__input {
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
  width: 100%;
  border: none;
  color: #fff5f5;
  font-size: 16px !important;
  line-height: normal;
  height: 48px;
  padding: 0 20px 0 46px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff30;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  margin-left: 6px;
  color: #fff;
}
.marque__container {
  background: #ff6347;
  padding: 30px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marque__content {
  display: flex;
  align-items: center;
  will-change: transform;
  animation: marquee-animation 40s linear infinite;
  padding-left: 100%;
}
@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marque__text {
  color: #fff;
  text-align: center;
  font-family: Nunito;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-wrap: nowrap;
  padding-right: 40px;
}

.marque__text span {
  font-size: inherit !important;
}

.marque__timer {
  color: #ff6347;
  text-align: center;
  font-family: Nunito;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
}

.overview-container {
}

.overview-container h1 {
  font-size: 39px;
  color: #020202;
  line-height: 45.6px;
  margin-bottom: 19px;
}

.overview-container p {
  color: #020202;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 19px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  /* Wyśrodkowanie tabeli */
}

.table th,
.table td {
  padding: 1px 3px 1px 0;
  text-align: left;
  font-size: 1em;
  color: #333;
}

.table th {
  text-align: center;
}

.table td {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e9ec;
}

.icon {
  margin-right: 10px;
  color: #3a6ff7;
}

.preloader {
  display: none;
  background: white;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0%;
  right: 0;
  z-index: 400;
  background-image: url(../images/preloader.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
  border-radius: 8px;
}
.modal .modal__title p {
  font-size: 31px;
  max-width: 455px;
  margin: 0 auto 20px;
}
.form__hurry {
  margin-bottom: 30px !important;
  color: #ff6347;
  text-align: center;
  font-size: 18px !important;
  line-height: 18px !important;
  text-transform: uppercase;
}
.form__hurry span {
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
  font-size: 18px !important;
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  animation: pulse 1.5s infinite;
}
.hero__text p span {
  font-size: inherit !important;
}
/* Pulse Animation Keyframes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 15px 10px rgba(255, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
}
.hero__widget {
  position: absolute;
  top: 90%;
  left: 0;
  padding: 6px 16px;
  width: 200px;
  border-radius: 10px;
  background: linear-gradient(0deg, #154553 0%, #01a3a3 100%);
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 1400px) {
  .hero__widget {
    display: none;
  }
}
@media (min-width: 1800px) {
  .hero__widget {
    left: -200px;
  }
}
.widget__content {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: Nunito;

  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.widget__name {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 700;
  text-transform: capitalize;
}
.widget__text {
  margin: 0 !important;
  font-size: 16px !important;
}
.widget__profit {
  color: #0f0;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 700;
}

.calculator {
  padding-block: 60px;
}
.calculator h2 {
  color: #3d3d3d;
  text-align: center;
  font-family: Nunito;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 45.6px; /* 120% */
  text-transform: uppercase;
  margin-bottom: 16px !important;
}
.calculator__inner {
  border-radius: 20px;
  background: #fff;
  display: flex;
  width: 650px;
  padding: 40px 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.calculator__mid {
  width: 100%;
}
.calculator__mid p {
  color: #3d3d3d;
  text-align: center;
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  margin-bottom: 0 !important;
}
.calculator .btn {
  margin-top: 30px;
  color: #fff;
  text-align: center;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.irs--flat .irs-line {
  height: 8px !important;
  background: #ffa81e !important;
  cursor: pointer;
}

.irs--flat .irs-bar {
  height: 8px !important;
  background: #ff6347 !important;
  cursor: pointer;
}
.irs--flat .irs-bar.transition {
  transition: width 0.3s ease-in-out !important;
}
.irs--flat .irs-min,
.irs--flat .irs-max {
  display: none !important;
}

.irs--flat .irs-handle {
  cursor: pointer !important;
  top: 11px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: url(../images/calc_arr.png);
  background-size: contain;
  transition: all 0.3s ease-in-out !important;
}

.irs--flat .irs-handle i {
  display: none !important;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  top: -24px !important;
  font-size: 28px !important;
  line-height: 34px !important;
  font-weight: 700 !important;
  color: #000 !important;
  background-color: unset !important;
  padding: 0 !important;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single {
  display: none !important;
}
.control__range {
  margin: 10px 0 40px;
  color: #3d3d3d;
  text-align: center;
  font-family: Nunito;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
}

.income .container {
  max-width: 1300px !important;
}

.income__wrapper {
  max-width: 1008px;
  overflow-x: scroll;
  margin: auto;
  border-radius: 20px;
  border: 2px solid #dbdde0;
  background: #fff;
}

.income__inner {
  width: 100%;
  min-width: 990px;
}

/* Header Styling */
.income__top {
  display: flex;
  background: #e9e9eb;
  color: #232323;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid #dbdde0;
}

.income__top p {
  padding: 20px 15px 15px 30px;
  margin: 0;
  border-right: 2px solid #dbdde0;
}

.income__top p:last-of-type {
  border-right: none;
  text-align: right;
}

/* Table Row Styling */
.income__row {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #dbdde0;
}

.income__row:nth-child(even) {
  background: #f9f9f9;
}

.income__row p {
  padding: 12px 15px 12px 30px;
  margin: 0;
  border-right: 2px solid #dbdde0;
}

.income__row p:last-of-type {
  border-right: none;
  justify-content: flex-end;
}

/* Column Styling (Fixed Widths) */
.col-name,
.col-profit,
.col-crypto,
.col-time,
.col-result {
  flex: none;
}

.col-name {
  width: 30%;
  text-align: left;
  padding-left: 20px !important;
}

.income__top p:first-of-type {
  padding-left: 68px !important;
}

.col-profit {
  width: 15%;
}

.col-crypto {
  width: 20%;
}

.col-time {
  width: 15%;
}

.col-result {
  width: 20%;
  text-align: right;
}

/* Image Styling */
.income__row img {
  vertical-align: middle;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.profit {
  color: #ff6347;
  font-weight: 700;
}

.result {
  display: flex;
  align-items: center;
  justify-content: center;
}

.result img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .marque__container {
    padding: 20px !important;
  }
  .marque__text {
    font-size: 26px !important;
  }

  .calculator__inner {
    padding: 20px;
    width: 100%;
  }
  .calculator h2 {
    font-size: 26px;
    line-height: normal;
  }
  .income p {
    font-size: 14px !important;
  }
  .income__top p {
    padding: 10px 10px 10px 20px;
  }
  .income__row p {
    padding: 12px 10px 12px 20px;
  }
  .income__row .col-name {
    padding: 7px 10px 7px 20px;
  }
  .table th {
    text-align: left !important;
    padding-right: 14px !important;
  }
  .control__range span:nth-of-type(4) {
    display: none;
  }
}

@media all and (max-width: 500px) {
  .form__hurry {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
