*, ol, ul, li, li, a, p, span {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto;
  background-color: #0F1932;
  background-repeat: no-repeat;
  background-image: url(../img/all_sectio_bg.png);
}

.wrapper {
  overflow: hidden;
}

.war_check {
  color: rgba(255, 255, 255, 0.831372549);
  font-size: 15.5px;
  width: 100%;
  background-color: rgba(76, 175, 80, 0.831372549);
  color: rgba(255, 255, 255, 0.8196078431);
  padding: 10px 0;
  text-align: center;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  width: 100%;
  height: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 5px;
}
@media (max-width: 966px) {
  .war_check {
    flex-direction: column;
  }
}
.war_check a {
  display: flex;
  color: rgba(255, 255, 255, 0.831372549);
  font-size: 15.5px;
  height: auto;
  text-decoration: underline;
}

.container {
  max-width: 1097px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1096px) {
  .container {
    max-width: 969px;
  }
}
@media (max-width: 966px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.link {
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section_title {
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 62.4px; /* 130% */
}
@media (max-width: 966px) {
  .section_title {
    font-size: 35px;
    line-height: normal;
  }
}

.lang_switcher {
  position: relative;
  width: max-content;
}

.lang_current {
  height: 46px;
  padding: 0;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s all ease;
}

.lang_current:hover,
.lang_switcher.open .lang_current {
  color: #ff0000;
}

.lang_current img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.arrow {
  display: flex;
  align-items: center;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.35s ease, color 0.3s;
}

.lang_switcher.open .arrow {
  transform: rotate(180deg);
  color: #8f7cff;
}

.lang_dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 220px;
  background: #0b1326;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
}

.lang_dropdown::-webkit-scrollbar {
  width: 4px;
}

.lang_dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.lang_dropdown::-webkit-scrollbar-thumb {
  background: rgba(113, 91, 248, 0.3);
  border-radius: 4px;
}

.lang_switcher.open .lang_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang_dropdown li {
  list-style: none;
}

.lang_dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.lang_dropdown a img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.lang_dropdown a:hover {
  background: rgba(113, 91, 248, 0.15);
  color: #c4baff;
  box-shadow: inset 0 0 0 1px rgba(113, 91, 248, 0.2);
}

.lang_dropdown a.active {
  background: rgba(113, 91, 248, 0.2);
  color: #a99cff;
  box-shadow: inset 0 0 0 1px rgba(113, 91, 248, 0.3);
}

header {
  padding-top: 24px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 0;
  transition: 0.3s all ease;
  z-index: 10;
}
header.verifyng {
  padding-top: 0;
}
header.verifyng .row {
  margin-top: 15px;
}
header.fixed {
  background: #0A0E12;
}
header.fixed .row nav .links li .link.active {
  color: #ff0000;
}
header.active {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background: #0A0E12;
  width: 100%;
  height: 100%;
}
header.active .row {
  padding-top: 100px;
  justify-content: center;
  flex-direction: column;
  gap: 20px 0;
}
header.active .row .header_logo {
  display: none;
}
header.active .row nav {
  display: flex;
}
header.active .row nav .links {
  flex-direction: column;
  gap: 20px;
}
header.active .row .close_btn {
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
}
header.active .row .open_mobile_btn {
  display: none;
}
header .row {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 966px) {
  header .row nav {
    display: none;
  }
}
header .row .links {
  display: flex;
  align-items: center;
  gap: 26px;
}
header .row .links li .link {
  font-family: Inter;
  transition: 0.5s all ease;
}
header .row .links li .link:hover {
  color: #ff0000;
}
header .row .links li .support_btn {
  border: 2px solid #f42f54;
  height: 43px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 44px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  transition: 0.3s all ease;
}
header .row .links li .support_btn:hover {
  background: #f42f54;
  color: #fff;
}
header .row .open_mobile_btn {
  display: none;
}
@media (max-width: 966px) {
  header .row .open_mobile_btn {
    display: flex;
  }
}
header .row .close_btn {
  display: none;
}

.hero {
  padding: 139px 0 79px 0;
}
.hero.referal {
  padding-top: 100px;
  padding-bottom: 30px;
  min-height: 100vh;
}
.hero.referal .section_title {
  text-transform: uppercase;
}
.hero.referal .row {
  margin-top: 30px;
}
.hero .hero_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 930px;
  margin: 0 auto;
}
.hero .hero_content h2 {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 966px) {
  .hero .hero_content h2 {
    font-size: 35px;
  }
}
.hero .hero_content .hero_description {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 49px;
}
.hero .hero_content .hero_coin {
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero .hero_content .hero_coin img {
  display: flex;
}
.hero .hero_content .hero_coin .mixing_btn {
  display: flex;
  width: 271px;
  height: 62px;
  border-radius: 30px;
  background: #F42F54;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 0.5s all ease;
}
.hero .hero_content .hero_coin .mixing_btn:hover {
  background: #fff;
  color: #F42F54;
}
.hero .row {
  justify-content: center;
  align-items: stretch;
  gap: 15px 64px;
  margin-top: 106px;
}
.hero .row .adv_item {
  padding: 18px 15px 20px 15px;
  border-radius: 5px;
  border: 1px solid rgba(151, 175, 213, 0.43);
  background: rgba(10, 18, 39, 0.52);
  display: flex;
  flex-direction: column;
  gap: 23px 0;
  width: 100%;
  max-width: 253px;
}
.hero .row .adv_item .item_img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.hero .row .adv_item .item_img img {
  width: 100%;
  height: 100%;
}
.hero .row .adv_item .item_text {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px 0;
}
.hero .row .adv_item .item_text .item_title {
  color: #FFF;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.4px; /* 160% */
}
.hero .row .adv_item .item_text .description {
  color: #97AFD5;
  font-weight: 400;
  line-height: 25.6px; /* 160% */
  text-align: center;
}

.mixer.page {
  padding: 75px 0 116px 0;
}
.mixer.send_btc .mixer_form {
  text-align: center;
}
.mixer.send_btc .mixer_form .description {
  word-wrap: break-word;
}
.mixer.send_btc .mixer_form .bold {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.mixer.send_btc .mixer_form .client_adress {
  margin: 19px 0 31px 0;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mixer.send_btc .mixer_form .info {
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.mixer.send_btc .mixer_form .send {
  margin: 21px 0 25px 0;
  color: #D7D7D7;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.mixer.send_btc .mixer_form .copy_adress {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
  align-items: center;
  padding: 0 21px 0 28px;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  height: 84px;
  margin-bottom: 31px;
}
.mixer.send_btc .mixer_form .copy_adress input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.mixer.send_btc .mixer_form .copy_adress .copy_input {
  cursor: pointer;
}
.mixer.send_btc .mixer_form .copy_adress .copy_input.active {
  opacity: 0.5;
  transform: scale(0.9);
}
.mixer.send_btc .mixer_form .qr_code {
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
.mixer.send_btc .mixer_form .qr_code img {
  width: 100%;
  height: 100%;
}
.mixer .section_title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 966px) {
  .mixer .section_title {
    font-size: 35px;
  }
}
.mixer .mixer_form {
  max-width: 880px;
  width: 100%;
  padding: 53px 70px 60px 70px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  margin: 55px auto 0 auto;
}
@media (max-width: 1096px) {
  .mixer .mixer_form {
    max-width: 700px;
    padding: 25px;
  }
}
@media (max-width: 966px) {
  .mixer .mixer_form {
    max-width: 100%;
  }
}
.mixer .mixer_form .enter_input {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  margin-bottom: 33px;
}
.mixer .mixer_form .enter_input input {
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
  height: 84px;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  outline: none;
}
@media (max-width: 1096px) {
  .mixer .mixer_form .enter_input input {
    height: 60px;
  }
}
.mixer .mixer_form .enter_input input::placeholder {
  color: #8D8D8D;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.mixer .mixer_form .item_title {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 966px) {
  .mixer .mixer_form .item_title {
    font-size: 20px;
  }
}
.mixer .mixer_form .range_input {
  display: flex;
  flex-direction: column;
  gap: 17px 0;
  margin-bottom: 39px;
}
.mixer .mixer_form .range_input .range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 17px;
  border-radius: 30px;
  outline: none;
  background: linear-gradient(to right, #F42F54 0%, #F42F54 70%, #d9d9d9 70%, #d9d9d9 100%);
}
.mixer .mixer_form .range_input .range::-webkit-slider-runnable-track {
  height: 17px;
  border-radius: 30px;
  background: transparent;
}
.mixer .mixer_form .range_input .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 37px;
  height: 25px;
  border-radius: 30px;
  background: linear-gradient(180deg, #280008 0%, #8E1B31 100%);
  margin-top: -4px;
  cursor: pointer;
}
.mixer .mixer_form .range_input .description_info {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mixer .mixer_form .range_input .item_text {
  display: flex;
  align-items: center;
  gap: 0 23px;
  justify-content: center;
}
@media (max-width: 966px) {
  .mixer .mixer_form .range_input .item_text {
    flex-direction: column;
    gap: 15px 0;
  }
}
.mixer .mixer_form .range_input .item_text input {
  width: 100%;
  max-width: 147px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
  height: 46px;
  outline: none;
  text-align: center;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.mixer .mixer_form .range_input .item_text input::placeholder {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.mixer .mixer_form .fill_item {
  display: flex;
  flex-direction: column;
  gap: 11px 0;
  margin-bottom: 39px;
}
.mixer .mixer_form .line {
  width: 100%;
  height: 17px;
  border-radius: 30px;
  background: #D9D9D9;
}
.mixer .mixer_form .line .fill {
  width: 577px;
  border-radius: 30px;
  height: 100%;
  background: #F42F54;
}
.mixer .mixer_form .order_btn {
  border: none;
  outline: none;
  width: 250px;
  margin: 0 auto;
  border-radius: 30px;
  background: #F42F54;
  height: 55px;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s all ease;
}
.mixer .mixer_form .order_btn:hover {
  color: #F42F54;
  background-color: #fff;
}

.works {
  padding: 101px 0 80px 0;
}
.works .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
}
@media (max-width: 966px) {
  .works .row {
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }
}
.works .row .left_item {
  display: flex;
  flex-direction: column;
  gap: 54px 0;
  max-width: 416px;
}
@media (max-width: 966px) {
  .works .row .left_item {
    max-width: 100%;
    gap: 20px 0;
  }
}
.works .row .left_item .item_title {
  color: #FFF;
  font-family: Quicksand;
  font-size: 34.4px;
  font-style: normal;
  font-weight: 500;
  line-height: 44.72px; /* 130% */
}
.works .row .left_item .item_description {
  text-align: start;
  color: #B5B5B5;
  line-height: 25px; /* 156.25% */
}
@media (max-width: 1096px) {
  .works .row .right_item {
    max-width: 490px;
    height: 400px;
  }
}
@media (max-width: 966px) {
  .works .row .right_item {
    max-width: 100%;
  }
}
.works .row .right_item img {
  height: 100%;
  width: 100%;
}

.faq {
  padding-bottom: 55px;
}
.faq.page_faq {
  padding: 100px 0 30px 0;
  min-height: 100vh;
}
.faq .description {
  color: #97AFD5;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px; /* 160% */
  margin: 25px auto 73px auto;
  max-width: 530px;
}
.faq .row {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 1096px) {
  .faq .row {
    max-width: 700px;
  }
}
.faq .row .faq_item {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}
.faq .row .faq_item.active {
  padding-bottom: 25px;
}
.faq .row .faq_item.active .faq_question span:first-child {
  color: #F42F54;
}
.faq .row .faq_item.active .faq_answer {
  padding: 0 30px 0 30px;
}
.faq .row .faq_item .faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 9px 30px;
}
.faq .row .faq_item .faq_question span:first-child {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.4px; /* 130% */
  transition: 0.3s all ease;
}
.faq .row .faq_item .faq_question .burger {
  display: flex;
  height: 36px;
  width: 36px;
  border-radius: 18px;
  background: rgba(151, 175, 213, 0.05);
  justify-content: center;
  align-items: center;
  color: #97AFD5;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  flex: 0 0 auto;
  line-height: 36px; /* 276.923% */
}
.faq .row .faq_item .faq_answer {
  color: #97AFD5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px; /* 160% */
}

footer {
  padding-bottom: 24px;
}
footer p {
  color: #97AFD5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px; /* 160% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
}

.contact {
  padding: 30px 0 70px 0;
}
.contact .contact_form {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  max-width: 648px;
  margin: 0 auto;
  align-items: center;
}
.contact .contact_form .item_img {
  width: 100%;
  max-width: 324px;
}
.contact .contact_form .item_img img {
  width: 100%;
  height: 100%;
}
.contact .contact_form .item_inputs {
  flex-direction: column;
  gap: 30px 0;
  display: flex;
  width: 100%;
}
.contact .contact_form .item_inputs input {
  border-radius: 6px;
  border: 1px solid #dbe4f7;
  width: 100%;
  padding: 10px 15px;
  line-height: 21px;
  font-size: 0.9em;
  color: #305082;
  transition: all 0.4s;
  background-color: transparent;
  color: #eef3fc;
  background: rgba(15, 25, 50, 0.3);
  border-color: rgba(219, 228, 247, 0.25);
  outline: none;
}
.contact .contact_form .item_inputs textarea {
  border-radius: 6px;
  border: 1px solid #dbe4f7;
  width: 100%;
  padding: 10px 15px;
  line-height: 21px;
  font-size: 0.9em;
  color: #305082;
  transition: all 0.4s;
  background-color: transparent;
  color: #eef3fc;
  background: rgba(15, 25, 50, 0.3);
  border-color: rgba(219, 228, 247, 0.25);
  height: 112px;
  outline: none;
}
.contact .contact_form button {
  font-size: 12px;
  line-height: 24px;
  padding: 8px 20px;
  min-width: 160px;
  cursor: pointer;
  background-color: #f42f54;
  border-color: #f42f54;
  position: relative;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 15px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  min-width: 120px;
  max-width: 100%;
  border: 2px solid #f42f54;
  box-sizing: border-box;
  transition: all 0.5s;
  position: relative;
  border-radius: 5px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.new_mixer {
  padding-top: 100px;
  padding-bottom: 70px;
}
.new_mixer .new_mixer_form {
  max-width: 504px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  align-items: center;
}
.new_mixer .new_mixer_form .item_img {
  max-width: 324px;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.new_mixer .new_mixer_form .item_img img {
  width: 100%;
  height: 100%;
}
.new_mixer .new_mixer_form .item_inputs {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  width: 100%;
  align-items: center;
}
.new_mixer .new_mixer_form .item_inputs .item_title {
  font-size: 16px;
  font-weight: 700;
  color: #97afd5;
}
.new_mixer .new_mixer_form .item_inputs .item_title .timerhoursmin {
  background-color: #0a1227;
  padding: 5px;
  border-radius: 5px;
  color: #feedf0;
  font-weight: 400;
  border: 1px solid rgba(151, 175, 213, 0.3294117647);
  text-transform: capitalize;
}
.new_mixer .new_mixer_form .item_inputs .clean_coins {
  color: rgba(248, 170, 56, 0.8784313725);
  border: 1px solid rgba(248, 170, 56, 0.8784313725);
  border-radius: 5px;
  padding: 5px;
  width: 100%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_mixer .new_mixer_form .item_inputs .clean_active {
  display: none;
  flex-direction: column;
  gap: 15px 0;
  text-align: center;
  padding: 10px;
}
.new_mixer .new_mixer_form .item_inputs .clean_active .vip {
  text-decoration: underline;
}
.new_mixer .new_mixer_form .item_inputs input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(219, 228, 247, 0.25);
  width: 100%;
  padding: 10px 15px;
  line-height: 21px;
  font-size: 0.9em;
  color: #305082;
  transition: all 0.4s;
  background-color: transparent;
  outline: none;
}
.new_mixer .new_mixer_form .item_inputs input:focus {
  color: #eef3fc;
  background: rgba(15, 25, 50, 0.3);
  border-color: dbe4f7;
}
.new_mixer .new_mixer_form .item_inputs input[type=range] {
  padding: 0;
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #97afd5;
  outline: none;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}
.new_mixer .new_mixer_form .item_inputs {
  /* THUMB */
}
.new_mixer .new_mixer_form .item_inputs input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgb(244, 47, 84);
  cursor: pointer;
}
.new_mixer .new_mixer_form .item_inputs {
  /* FIREFOX */
}
.new_mixer .new_mixer_form .item_inputs input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgb(244, 47, 84);
  cursor: pointer;
}
.new_mixer .new_mixer_form .item_inputs .fillhill {
  border: 1px solid rgba(151, 175, 213, 0.3215686275);
  height: 20px;
  display: flex;
  width: 100%;
}
.new_mixer .new_mixer_form .item_inputs .fillhill .fill {
  background-color: rgb(244, 47, 84);
  height: 100%;
  width: 50%;
}
.new_mixer .new_mixer_form .order_btn {
  border-radius: 54px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  padding: 15px 40px;
  min-width: 190px;
  background-color: #f42f54;
  border-color: #f42f54;
  outline: none;
  transition: 0.3s all ease;
  cursor: pointer;
  color: #fff;
}
.new_mixer .new_mixer_form .order_btn:hover {
  background-color: #fff;
  color: #f42f54;
}

.status {
  min-height: 100vh;
  padding: 100px 0 70px 0;
}
.status.check_referal {
  padding: 30px 0;
  min-height: auto;
}
.status .section_title {
  text-transform: uppercase;
}
.status .order_content {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  align-items: center;
}
.status .order_content .item_img {
  width: 100%;
  display: flex;
  max-width: 324px;
}
.status .order_content .item_img img {
  height: 100%;
  width: 100%;
}
.status .order_content .item_inputs {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  width: 100%;
  max-width: 540px;
}
.status .order_content .item_inputs .item_title {
  font-size: 16px;
  color: #97afd5;
  text-align: center;
  font-weight: 700;
}
.status .order_content .item_inputs input {
  outline: none;
  border-radius: 6px;
  width: 100%;
  padding: 10px 15px;
  line-height: 21px;
  font-size: 0.9em;
  color: #305082;
  transition: all 0.4s;
  background-color: transparent;
  color: #eef3fc;
  background: rgba(15, 25, 50, 0.3);
  border-color: rgba(219, 228, 247, 0.25);
}
.status .order_content .check_btn {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  padding: 15px 40px;
  min-width: 190px;
  border-radius: 54px;
  background-color: #f42f54;
  border-color: #f42f54;
  outline: none;
  cursor: pointer;
  color: #fff;
  transition: 0.5s all ease;
}
.status .order_content .check_btn:hover {
  background-color: #fff;
  color: #f42f54;
}

.blog {
  padding: 100px 0 30px 0;
}
.blog .blog_content {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  max-width: 800px;
  margin: 0 auto;
}
.blog .blog_content .blog_item {
  border: 1px solid rgba(151, 175, 213, 0.5803921569);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  align-items: center;
  text-align: center;
}
.blog .blog_content .blog_item .item_img {
  max-width: 135px;
  width: 100%;
}
.blog .blog_content .blog_item .item_img img {
  width: 100%;
  height: 100%;
}
.blog .blog_content .blog_item .item_title {
  color: #f42f54;
  transition: 0.3s all ease;
  font-size: 28px;
}
.blog .blog_content .blog_item .item_title:hover {
  color: #0000fc;
}
.blog .blog_content .blog_item .item_year, .blog .blog_content .blog_item .item_description {
  color: #97afd5;
  font-size: 16px;
  max-width: 1000px;
}
.blog .blog_content .blog_item .read_more {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  padding: 15px 40px;
  min-width: 190px;
  border-radius: 54px;
  background-color: #f42f54;
  border-color: #f42f54;
  transition: 0.5s all ease;
  color: #fff;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  justify-content: center;
}
.blog .blog_content .blog_item .read_more:hover {
  background-color: #fff;
  border-color: #f42f54;
  color: #f42f54;
}/*# sourceMappingURL=main.css.map */