* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  direction: rtl;
  font-size: 10px;
  font-family: yekanbakh-regular;
  min-height: 100vh;
}

body {
  height: 100%;
}

body .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 5fr;
      grid-template-columns: 5fr 5fr;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body .box .right {
  height: 100%;
}

body .box .right .container {
  width: 70%;
  padding-top: 70px;
  margin: auto;
}

body .box .right .container .top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

body .box .right .container .top-buttons a {
  background: #808080;
  color: #ffffff;
  padding: 10px;
  font-size: 2.1rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body .box .right .container .top-buttons a:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

body .box .right .container .top-buttons a.bg-primary {
  margin-right: 4px;
  font-size: 1.3rem;
  background: #f14b29;
}

body .box .right .container .title {
  font-size: 3rem;
  font-family: yekanbakh-fat;
  font-weight: 100;
  color: #192136;
}

body .box .right .container .subtitle {
  color: #8f8f8f;
  font-size: 2rem;
  margin-bottom: 2rem;
}

body .box .right .container .input-box {
  padding: 25px 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px #00000010;
          box-shadow: 0 0 20px #00000010;
  margin-bottom: 25px;
}

body .box .right .container .input-box label {
  font-size: 2rem;
  font-family: yekanbakh-heavy;
  color: #192136;
}

body .box .right .container .input-box.amount, body .box .right .container .input-box.prepay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

body .box .right .container .input-box.amount .col-right, body .box .right .container .input-box.prepay .col-right {
  width: 35%;
}

body .box .right .container .input-box.amount .col-left, body .box .right .container .input-box.prepay .col-left {
  width: 65%;
  text-align: left;
}

body .box .right .container .input-box.amount input, body .box .right .container .input-box.prepay input {
  border: none;
  width: 80%;
  text-align: left;
  font-family: yekanbakh-heavy;
  margin-left: 0;
  font-size: 3rem;
  color: #f14b29;
  position: relative;
  top: 3px;
  padding-left: 2px;
  outline: none !important;
}

body .box .right .container .input-box.amount input::-webkit-input-placeholder, body .box .right .container .input-box.prepay input::-webkit-input-placeholder {
  opacity: 0.7;
}

body .box .right .container .input-box.amount input:-ms-input-placeholder, body .box .right .container .input-box.prepay input:-ms-input-placeholder {
  opacity: 0.7;
}

body .box .right .container .input-box.amount input::-ms-input-placeholder, body .box .right .container .input-box.prepay input::-ms-input-placeholder {
  opacity: 0.7;
}

body .box .right .container .input-box.amount input::placeholder, body .box .right .container .input-box.prepay input::placeholder {
  opacity: 0.7;
}

body .box .right .container .input-box.amount span.unit, body .box .right .container .input-box.prepay span.unit {
  font-size: 2rem;
  color: #f14b29;
  position: relative;
  left: -5px;
}

body .box .right .container .input-box.guarantee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .box .right .container .input-box.guarantee .radios {
  border: 1px solid #ffd7cf;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

body .box .right .container .input-box.guarantee .radios input {
  display: none;
}

body .box .right .container .input-box.guarantee .radios label {
  color: #808080;
  cursor: pointer;
  padding: 3px 30px;
  margin: 0 -5px;
  display: inline-block;
  font-size: 1.7rem;
  font-family: yekanbakh-regular;
  font-weight: 200;
  opacity: 0.5;
  border-radius: 10px;
}

body .box .right .container .input-box.guarantee .radios #guarantee-1:checked ~ label[for="guarantee-1"] {
  background-color: #d8d8d8;
  opacity: 1;
}

body .box .right .container .input-box.guarantee .radios #guarantee-2:checked ~ label[for="guarantee-2"] {
  background-color: #d8d8d8;
  opacity: 1;
}

body .box .left {
  height: 100%;
}

body .box .left .container {
  width: 80%;
  height: 90%;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 15px;
  padding: 50px;
}

body .box .left .container .title {
  font-size: 2.5rem;
  color: #ffffff;
  font-family: yekanbakh-fat;
  font-weight: 100;
}

body .box .left .container table.recommends {
  width: 100%;
  font-size: 1.6rem;
  border-spacing: 0 14px;
  margin-top: 1.5rem;
  text-align: center;
}

body .box .left .container table.recommends thead {
  color: #ffffff;
}

body .box .left .container table.recommends thead th {
  background: #ffffff40;
  padding: 10px 0;
}

body .box .left .container table.recommends thead th:first-child {
  padding-right: 30px;
  border-radius: 0 12px 12px 0;
}

body .box .left .container table.recommends thead th:last-child {
  border-radius: 12px 0 0 12px;
}

body .box .left .container table.recommends tbody tr {
  padding-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body .box .left .container table.recommends tbody tr:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

body .box .left .container table.recommends tbody tr td {
  background: #ffffff;
  padding: 10px 0;
  color: #808080;
  position: relative;
}

body .box .left .container table.recommends tbody tr td:first-child {
  border-radius: 0 12px 12px 0;
}

body .box .left .container table.recommends tbody tr td:last-child {
  border-radius: 12px 0 0 12px;
}

body .box .left .container table.recommends tbody tr td span.number {
  font-family: yekanbakh-heavy;
}

body .box .left .container table.recommends tbody tr td input[type="radio"]:checked ~ .fillcolor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fbb03b;
  border-radius: 50%;
}

body .box .left .container table.recommends tfoot th {
  cursor: pointer;
  background: #fbb03b;
  color: #ffffff;
  padding: 7px;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

body .box .left .container table.recommends tfoot th:hover {
  background: #f0aa3a;
}
/*# sourceMappingURL=calculator.styles.css.map */