@charset "UTF-8";
body {
  font-size: 16px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li::before {
  display: none;
}

.calculater-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  padding: 50px 16px;
}

.calculater-tabs {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 6;
  background-color: #fff;
}

.calculater-tab {
  display: inline-block;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 10px 10px 0 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 18px;
  cursor: pointer;
  border: 1px solid #f8f8f8;
  padding: 15px 0 20px;
  width: 48%;
}
.calculater-tab.active {
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  z-index: 3;
  padding: 15px 0 16px;
  border-bottom: 0;
  margin-bottom: -1px;
}
.calculater-tab.active span {
  opacity: 1;
}
.calculater-tab span {
  opacity: 0.3;
}

.calculater-body {
  background-color: #f8f8f8;
  width: 100%;
  min-height: 800px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  z-index: 5;
  margin-top: -10px;
}

.calculater-container {
  width: 100%;
  height: 100%;
  display: none;
}
.calculater-container.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.left-container {
  width: 40%;
  padding: 40px 0;
  min-width: 300px;
}

.right-container {
  width: 40%;
  padding: 40px 0;
  min-width: 300px;
}

.credit-logo {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.credit-logo img {
  max-height: 100%;
  border-radius: 5px;
  transition: opacity 0.5s ease;
}

.crelit-head {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin: 30px 0;
}

.crelit-head-attantion {
  opacity: 0.5;
  font-size: 13px;
}

.crelit-head-attantion::before {
  content: "⚠";
  margin-right: 10px;
}

.credit-sum {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.sum-input {
  width: 70% !important;
  height: 45px !important;
  text-align: center !important;
  font-size: 20px !important;
  border-radius: 5px !important;
  border: solid 1px #e5e5e5 !important;
  margin-bottom: 20px;
}

.payments {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.payment-sum {
  display: flex;
  row-gap: 5px;
  width: 40%;
  flex-direction: column;
  text-align: center;
}

.month-payment, .total-payment {
  opacity: 0.5;
  font-size: 20px;
}

.period-continer {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  margin-top: 50px;
}

.period-header {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.period-header .label {
  opacity: 0.5;
  font-size: 14px;
  line-height: 20px;
}

.bank-select-container {
  margin-top: 50px;
}
.bank-select-container.installment {
  margin-top: 180px;
}

.bank-select-header {
  font-weight: 600;
  margin-bottom: 20px;
}

.bank-select-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
.bank-select-list img {
  width: 100px;
  height: 60px;
}

.bank-select-item {
  height: 70px;
  cursor: pointer;
  opacity: 0.5;
  padding: 0;
}
.bank-select-item::before {
  display: none !important;
}
.bank-select-item img {
  max-height: 100%;
  border-radius: 5px;
}
.bank-select-item.active {
  cursor: auto;
  opacity: 1;
}
.bank-select-item.installment {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  align-items: center;
  padding: 0;
}

.installment-card-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-logo {
  max-height: 290px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.card-logo img {
  max-height: 100%;
  width: auto;
  border-radius: 5px;
  transition: opacity 0.5s ease;
}

.period-select {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  position: relative;
}

.radio-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 5px;
  transition: opacity 0.3s ease;
}

.bank-right-header, .first-payment, .bank-credit-sum, .bank-credit-grace, .bank-right-content {
  display: flex;
  justify-content: space-between;
}

.bank-credit-grace.hidden {
  display: none;
}

.bank-right-content {
  border-top: solid 1px #F37021;
  border-bottom: solid 1px #F37021;
  margin: 20px 0;
  padding: 20px 0;
}

.bank-right-header {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
}
.bank-right-header span {
  width: 40%;
}

.bank-right-footer {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.card-description ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  align-items: flex-start;
  list-style: circle;
  padding-left: 10%;
}
.card-description li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  margin-top: 9px;
  background: #F37021;
  border-radius: 100%;
}

@media (max-width: 800px) {
  .sum-input {
    font-size: 16px !important;
  }
}/*# sourceMappingURL=style.css.map */