input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

body {
  background-color: rgb(24, 2, 26);
  color: white;
}

input, button {
  background: none;
  outline: none;
  border: none;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
}

* {
  box-sizing: border-box;
}

.container {
  width: 1024px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 28px;
}

h1 {
  width: 100%;
  text-align: center;
  font-size: 22px;
  color: #fff;
  margin: 0;
  line-height: 27px;
  font-weight: 700;
}

.main {
  width: 100%;
  position: relative;
}
.main::after, .main::before {
  position: absolute;
  content: "";
  display: block;
}
.main::before {
  width: 220px;
  height: 220px;
  bottom: 0;
  left: -180px;
  background: url(../img/bitocin.svg) no-repeat center/contain;
  z-index: -1;
}
.main::after {
  width: 144px;
  height: 144px;
  top: -72px;
  right: 0;
  background: url(../img/blueicon.svg) no-repeat center/contain;
  z-index: 1;
}

.wrapper {
  background: linear-gradient(180deg, #271D35 0%, rgba(39, 29, 53, 0.2) 100%);
  background-repeat: 12px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 9px 45px 37px 45px;
  width: 100%;
  min-height: 314px;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tabs:before {
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 70%;
  height: 2px;
  min-width: 660px;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 12.5%, #FFFFFF 51.57%, rgba(255, 255, 255, 0) 86.98%);
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 15px 10px;
  opacity: 0.5;
  transition: opacity 0.25s ease;
  position: relative;
}
.tab:after {
  content: "";
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 88, 95, 0) 0%, #FA5897 51.57%, rgba(255, 88, 95, 0) 100%);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 0;
  height: 2px;
  transition: width 0.25s ease;
}
.tab-icon {
  width: 18px;
  height: 18px;
}
.tab:hover {
  opacity: 0.8;
}
.tab.active {
  opacity: 1;
}
.tab.active::after {
  width: 100%;
}

.form {
  margin-top: 40px;
}
.form label {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #b7b7b7;
  margin-bottom: 10px;
  padding-left: 16px;
}
.form-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.form-group {
  width: 320px;
}
.form-group input {
  background: #2B2440;
  background-repeat: 12px;
  font-weight: 600;
  line-height: 19px;
  color: #f5f5f5;
  border: 2px solid rgba(255, 88, 95, 0.35);
  padding: 14px;
  width: 100%;
}
.form-selects {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  align-items: flex-end;
}
.form-select {
  flex-grow: 1;
}
.form-select__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2440;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.form-select__icon:hover {
  opacity: 1;
}
.form-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  position: relative;
}
.form-submit {
  background: linear-gradient(97.46deg, #FF585F 3.28%, #FA5897 95.35%);
  border-radius: 12px;
  font-size: 17px;
  line-height: 21px;
  color: #fff;
  padding: 12px 30px;
  cursor: pointer;
  margin-left: auto;
}
.form-submit:hover {
  background: linear-gradient(97.46deg, #FF585F 3.28%, #FA5897 95.35%);
}
.form-results {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  opacity: 0;
}
.form-results.show {
  opacity: 1;
}
.form-result__equals {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2440;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.form-result__item {
  background: #1e192d;
  border-radius: 12px;
  padding: 12px;
  align-items: center;
  display: grid;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-max-content;
  width: max-content;
  grid-template-columns: 32px 1fr;
  grid-template-areas: "icon titles" "icon amount";
}
.form-result__item.from .icon {
  background: #fc5782;
  box-shadow: 0px 0px 0px 4px rgba(252, 87, 130, 0.25);
}
.form-result__item.to .icon {
  background: #1fc4af;
  box-shadow: 0px 0px 0px 4px rgba(31, 196, 175, 0.25);
}
.form-result__item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: icon;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.form-result__item-titles {
  grid-area: title;
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.form-result__item-title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 17px;
}
.form-result__item-full {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: rgba(245, 245, 245, 0.5);
}
.form-result__item-value {
  grid-area: amount;
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  margin-top: 6px;
}

.rate-information {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: rgba(245, 245, 245, 0.5);
}
.rate-conversion {
  color: #fff;
}

.select {
  background: #2B2440;
  background-repeat: 12px;
  font-weight: 600;
  line-height: 19px;
  color: #f5f5f5;
  border: 2px solid rgba(255, 88, 95, 0.35);
  padding: 14px;
  cursor: pointer;
  min-width: 240px;
  border-radius: 10px;
}

.currency-wrapper {
  margin-top: 40px;
}
.currency-item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  border-radius: 12px;
  padding: 14px 20px;
  border: 2px solid #fa5897;
  background: none;
}
.currency-titles {
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 19px;
       column-gap: 19px;
}
.currency-title {
  font-weight: 600;
  line-height: 19px;
  color: #f5f5f5;
  min-width: 40px;
}
.currency-full {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: rgba(245, 245, 245, 0.5);
}
.currency-amount {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}
.currency-single {
  position: relative;
}
.currency-single .currency-item {
  height: 69px;
}
.currency-single .select {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: calc(100% - 20px);
  max-width: 290px;
}
.currency-single.active .currency-button {
  display: none;
}
.currency-single.active .select {
  display: block;
}
.currency-action {
  text-align: right;
}
.currency-current {
  border: none;
  background: #879fff;
}
.currency-current .currency-full {
  color: #2b2440;
}
.currency-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 30px;
}
.currency-button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.5);
  width: -moz-max-content;
  width: max-content;
  padding: 10px 24px;
  cursor: pointer;
  transition: border 0.25s, color 0.25s;
  text-transform: capitalize;
}
.currency-button:hover {
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.currency-add {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
}
.currency-add__button {
  background: linear-gradient(97.46deg, #FF585F 3.28%, #FA5897 95.35%);
  border-radius: 12px;
  font-size: 17px;
  line-height: 21px;
  color: #fff;
  padding: 12px 30px;
  cursor: pointer;
  margin-left: auto;
}
.currency-add__button:hover {
  background: linear-gradient(97.46deg, #FF585F 3.28%, #FA5897 95.35%);
}
.currency-add .select {
  display: none;
  padding: 11px 14px;
}
.currency-add.active .select {
  display: block;
}
.currency-add.active .currency-add__button {
  display: none;
}

.content {
  display: none;
}
.content.show {
  display: block;
}/*# sourceMappingURL=main.css.map */