.exchangeCalculatorEmbed {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.exchangeCalculatorEmbed .result {
  color: #00a4a7;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .result {
    font-size: 1rem;
    text-align: center;
  }
}
.exchangeCalculatorEmbed .result .lower_number,
.exchangeCalculatorEmbed .result .lower_currency {
  font-size: 3.5rem;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .result .lower_number,
  .exchangeCalculatorEmbed .result .lower_currency {
    font-size: 2rem;
  }
}
.exchangeCalculatorEmbed .title {
  color: #00a4a7;
  padding: 1.5rem 0 1.5rem 2rem;
  font-size: 2.3rem;
}
@media screen and (max-width: 1440px) {
  .exchangeCalculatorEmbed .title {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .title {
    padding: 1rem 0;
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .sp_text {
    font-size: 0.8rem;
    margin-top: 0.8rem;
    text-align: center;
  }
  .exchangeCalculatorEmbed .sp_text > span {
    color: #00a4a7;
  }
}
.exchangeCalculatorEmbed .calculator {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-top: 48px;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator {
    margin-top: 0.8rem;
  }
}
.exchangeCalculatorEmbed .calculator .inputer {
  width: 100%;
  height: 70px;
  border: 1px solid #d3d3d3;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer {
    height: 35px;
    border-radius: 5px;
  }
}
.exchangeCalculatorEmbed .calculator .inputer input {
  border: 0;
  color: #8f8f8f;
  width: 70%;
  font-size: 22px;
  padding-left: 30px;
  height: 35px;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer input {
    height: 20px;
    font-size: 0.8rem;
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector {
  width: 30%;
  height: 35px;
  margin-right: 15px;
  position: relative;
  font-size: 22px;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector {
    height: 20px;
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector img {
  height: 35px;
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector .curreny_current_choice {
  width: 100%;
  height: 100%;
  padding-left: 15px;
  position: relative;
  z-index: 900;
  background-color: #FFF;
  color: #8f8f8f;
  border: 1px solid #d3d3d3;
  border-width: 0 0 0 1px;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector .curreny_current_choice {
    font-size: 0.8rem;
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector .curreny_current_choice:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #11a6a0;
  border-width: 2px 2px 0 0;
  transform: rotateZ(135deg);
  position: absolute;
  top: 5px;
  right: 15px;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector .curreny_current_choice:after {
    width: 10px;
    height: 10px;
    top: 2px;
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector .currency_list {
  display: none;
  position: absolute;
  top: 150%;
  right: -15px;
  width: calc(100% + 15px);
  height: 150px;
  border: 1px solid #d3d3d3;
  border-radius: 15px;
  overflow-y: auto;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector .currency_list {
    height: 100px;
    width: calc(200% + 15px);
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector .currency_list button {
  display: flex;
  border: 0;
  width: 100%;
  height: 70px;
  color: #8f8f8f;
  background-color: #FFF;
  text-align: left;
  padding-left: 15px;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector .currency_list button {
    height: 35px;
    font-size: 1rem;
  }
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector .currency_list button img {
    width: auto;
    height: 50%;
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector.active .curreny_current_choice:after {
  transform: rotateZ(-45deg);
  top: 15px;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .inputer .currency_selector.active .curreny_current_choice:after {
    top: 5px;
  }
}
.exchangeCalculatorEmbed .calculator .inputer .currency_selector.active .currency_list {
  display: block;
  z-index: 999;
}
.exchangeCalculatorEmbed .calculator .icon_sign {
  display: flex;
  width: 100%;
  height: 70px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .calculator .icon_sign {
    height: 35px;
  }
  .exchangeCalculatorEmbed .calculator .icon_sign img {
    width: 20px;
  }
}
.exchangeCalculatorEmbed .btn_goto {
  border: 0;
  background-color: #00a4a7;
  font-size: 26px;
  font-weight: bold;
  line-height: 70px;
  color: #FFF;
  border-radius: 15px;
  margin-top: 15px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .exchangeCalculatorEmbed .btn_goto {
    font-size: 1.25rem;
    border-radius: 5px;
    margin-top: 10px;
    line-height: 2.5rem;
  }
}
.exchangeCalculatorEmbed .btn_goto:hover {
  background-color: rgba(0, 164, 167, 0.7);
}
/*# sourceMappingURL=exchangeCalculator.css.map */
