html {
}

body, html, #app {
  overflow-x: hidden;
}

body {
}

#app {
  margin: 0 auto;
}


#calculator .bg--primary {
  background-color: #ff5500;
}

#calculator .bg--white {
  background-color: #fff;
}

#calculator .bg--accent {
  background-color: #1B2246;
}

#calculator .bg--gray {
  background-color: #999999;
}

#calculator .bg--sub {
  background-color: #E1ECFD;
}

#calculator .bg--red {
  background-color: red;
}

#calculator .bg--lightGray {
  background-color: #d3d3d3;
}

#calculator .border--primary {
  border-color: #ff9711 !important;
}

#calculator .border--accent {
  border-color: #1B2246 !important;
}

#calculator .primary {
  color: #ff5500 !important;
}

#calculator .accent {
  color: #1B2246 !important;
}

#calculator .sub {
  color: #E1ECFD !important;
}

#calculator .gray {
  color: #999 !important;
}

#calculator .white {
  color: white;
}

#calculator .red {
  color: red !important;
}

#calculator .black {
  color: black !important;
}

#calculator .bold {
  font-weight: 800 !important;
}

#calculator .btn--big {
  padding: 13px 45px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #ff5500;
  border-radius: 6px;
  transition: transform .3s cubic-bezier(.13, .77, .35, 1), box-shadow .3s cubic-bezier(.13, .77, .35, 1);
}

#calculator .btn--big:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transform: translate(-6px, -6px);
}

#calculator .text--h1 {
  font-size: 24px;
  font-weight: 500;
  color: #2E4266;
}

#calculator .text--h2 {
  font-size: 20px;
  font-weight: 500;
  color: #2E4266;
}

#calculator .text--title {
  font-weight: 500;
  color: #2E4266;
}

#calculator .text--content {
  color: #8E9BB0;
}

#calculator .text--sub {
  font-size: 14px;
  color: #dbdee7;
}

#calculator .text--alert {
  font-size: 12px;
  color: #EF1E49;
}

#calculator .wrap {
  max-width: 1140px;
  margin: 0 auto;
}

#calculator .wrap--mobile {
  width: 494px;
  margin: 0 auto;
}

@media screen and (max-width: 1140px) {
  #calculator .wrap {
    padding: 0 20px;
  }
}

#calculator .input--wrap {
  margin-bottom: 16px;
}

#calculator .input--wrap {
  margin-bottom: 10px;
}

#calculator .input--title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

#calculator .input--error {
  margin-top: 5px;
  font-size: 12px;
  color: #DB167B;
}

#calculator .input--label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #999;
}

#calculator .input--search--white {
  width: 100%;
  position: relative;
}

#calculator .input--search--white input {
  width: 100%;
  padding: 16px;
  padding-bottom: 16px;
  color: #fff !important;
  background-color: transparent !Important;
  border-bottom: 1px solid white;
}

#calculator .input--search--white input[placeholder] {
  color: #fff;
}

#calculator .input--search--white input::-webkit-input-placeholder { /* WebKit browsers */
  color: #fff;
}

#calculator .input--search--white input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

#calculator .input--search--white input::-moz-placeholder { /* Mozilla Firefox 19+*/
  color: #fff;
}

#calculator .input--search--white input:-ms-input-placeholder { /* ie10+*/
  color: #fff;
}

#calculator .input--search--white:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: url("../img/search_white.png") no-repeat;
}

#calculator .input--search.type01 {
  min-width: 180px;
  position: relative;
}

#calculator .input--search.type01 input {
  width: 100%;
  padding: 8px 24px;
  background-color: #fff !Important;
  border: 1px solid #ccc;
}

#calculator .input--search.type01 button {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

#calculator .input--search.type01:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: url("../img/search_gray.png") no-repeat;
}

#calculator .input--checkbox--wrap {
}

#calculator .input--checkbox label {
  margin-left: 10px;
}

#calculator .input--radio label {
  margin-left: 10px;
}

#calculator .input--text {
  position: relative;
}

#calculator .input--text input {
  width: 100%;
  padding: 11px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  color: #333;
  border-radius: 5px;
}

#calculator .input--text input:disabled {
  color: #ccc;
}

#calculator .input--text.price:before {
  content: "$";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#calculator .input--text.price input {
  padding-left: 29px;
}

#calculator .input--number {
  position: relative;
}

#calculator .input--number input {
  width: 100%;
  padding: 11px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  color: #333;
  border-radius: 5px;
}

#calculator .input--number input:disabled {
  color: #ccc;
}

#calculator .input--number .input--btns {
  width: 48px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #dbdee7;
}

#calculator .input--number .input--btns button {
  display: block;
  width: 100%;
  height: 24px;
  position: relative;
}

#calculator .input--number .input--btns button img {
  position: relative;
  top: -1px;
}

#calculator .input--number .input--btns button:nth-child(1) {
  background: url("/imgs/arrow--small--top.png") no-repeat;
  background-position: center;
}

#calculator .input--number .input--btns button:nth-child(2) {
  border-bottom: 1px solid #dbdee7;
  background: url("/imgs/arrow--small--top.png") no-repeat;
  background-position: center;
  transform: rotate(180deg);
}

#calculator .input--address input {
  width: 100%;
  padding: 11px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  color: #333;
  border-radius: 5px;
}

#calculator .input--password input {
  width: 100%;
  padding: 11px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  color: #333;
  border-radius: 5px;
}

#calculator .input--textarea textarea {
  width: 100%;
  height: 100px;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  border-radius: 5px;
}

#calculator .input--select select {
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  border-radius: 5px;
}

#calculator .input--select:after {
  content: "";
  width: 13px;
  height: 8px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/triangleDown--gray.png") no-repeat;
  background-size: cover;
}

#calculator .input--img input {
  display: none;
}

#calculator .input--img label {
  display: inline-block;
  cursor: pointer;
  padding: 5px 10px;
  background-color: #2B3648;
  color: #fff;
}

#calculator .input--avatar {
  text-align: center;
}

#calculator .input--avatar input {
  display: none;
}

#calculator .input--avatar > label {
  display: inline-block;
  position: relative;
  content: "";
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  background: url("/img/avatar.png") no-repeat;
  background-size: cover;
  color: transparent;
}

#calculator .input--avatar .input-file-img {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-top: 0;
  padding: 0;
  border-radius: 100%;
}

#calculator .input--avatar.active label {
  display: none;
}

#calculator .input--avatar .input-file-img {
  margin-top: 0;
  margin-bottom: 16px;
}

#calculator .input--avatar .ratioBox-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

#calculator .input-file-name {
  display: inline-block;
  margin-left: 10px;
}

#calculator .input-file-img {
  display: block;
  margin-top: 20px;
  padding: 20px;
  max-width: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background-color: transparent;
}

#calculator .input--withButtons {
  padding-right: 94px;
  position: relative;
}

#calculator .input--withButtons__buttons {
  position: absolute;
  top: 0;
  right: 0;
}

#calculator .input--withButtons__button {
  width: 42px;
  height: 42px;
  margin-right: 5px;
  position: relative;
  border: 1px solid #dbdee7;
  border-radius: 5px;
}

#calculator .input--withButtons__button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#calculator .input--withButtons__button:last-child {
  margin-right: 0;
}

#calculator .input--findAddress {
  padding-right: 50px;
  position: relative;
}

#calculator .input--findAddress button {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  border-radius: 5px;
}

#calculator .input--findAddress button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#calculator .input--tags .button--middle {
  margin-top: 8px;
  border: 2px solid #555;
  color: #555;
}

#calculator .input--tags input {
  width: 100%;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  color: #333;
  border-radius: 5px;
}

#calculator .input--tag {
  margin-bottom: 8px;
  padding-right: 54px;
  position: relative;
}

#calculator .input--tag__button {
  content: "";
  width: 46px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url("/img/trash--black.png") no-repeat center;
  border: 1px solid #dbdee7;
  border-radius: 5px;
}

#calculator .input--tag .text {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #dbdee7;
  color: #333;
  border-radius: 5px;
}

#calculator .input--cropImage__img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

#calculator .input--cropImage label {
  display: block;
  min-width: 250px;
  min-height: 250px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  background-color: #dedede;
  border-radius: 5px;
}

#calculator .input--cropImage label:after {
  content: "이미지 등록";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

#calculator .input--cropImage input {
  display: none;
}

#calculator .input--cropImage.active label {
  min-height: auto;
  min-width: auto;
}

#calculator .input--cropImage.active .input--cropImage__label {
  display: none;
}

#calculator .input--cropImage img {
  display: block;
  border-radius: 5px;
}

#calculator .input--cropImage__btn--cut {
  padding: 8px 16px;
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #fff;
  background-color: #ff9711;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

#calculator .input--cropImage__btn--cut .text {
  color: #fff;
}

#calculator .reactEasyCrop_Container {
  z-index: 1;
}

#calculator .img--container {
  width: 640px;
  height: 480px;
  float: left;
}

#calculator .img--preview {
  width: 200px;
  height: 200px;
}

#calculator .text--h1 {
  font-size: 24px;
  font-weight: 500;
  color: #2E4266;
}

#calculator .text--h2 {
  font-size: 20px;
  font-weight: 500;
  color: #2E4266;
}

#calculator .text--title {
  color: #2E4266;
}

#calculator .text--content {
  color: #8E9BB0;
}

#calculator .text--sub {
  font-size: 14px;
  color: #dbdee7;
}

#calculator .text--alert {
  color: #EF1E49;
}

#calculator .height--10 {
  height: 10px;
}

#calculator .height--24 {
  height: 24px;
}

#calculator .box.type01 {
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border: 1px solid transparent;
  overflow: hidden;
}

#calculator .box.type01 .box__top {
  padding: 16px 24px;
  position: relative;
  border-bottom: 1px solid #F5F6FF;
}

#calculator .box.type01 .box__top__icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#calculator .box.type01 .box__bottom {
  padding: 16px 24px;
}

#calculator .pop div:after {
  display: block;
  content: "";
  clear: both;
}

#calculator .pop__wrap {
  width: 100%;
  padding: 0 20px;
  position: fixed;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

#calculator .pop.type--pop {
  width: 100%;
  max-height: 565px;
  padding: 16px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  overflow-y: auto;
}

#calculator .pop.type--pop .pop__buttons {
  display: flex;
  margin-top: 16px;
}

#calculator .pop.type--pop .pop__buttons button {
  flex: 1;
  margin-left: 8px;
}

#calculator .pop.type--pop .pop__buttons button:first-child {
  margin-left: 0;
}

#calculator .pop__header {
  display: block;
}

#calculator .pop__header__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #000;
}

/* .pop__button:nth-of-type(1) {width:49%; float:left;}
.pop__button:nth-of-type(2) {width:49%; float:right;} */

#calculator .tabs__buttons {
  display: flex;
  width: 670px;
  margin: 0 auto;
  margin-bottom: 68px;
}

#calculator .tabs__buttons__button {
  flex: 1;
  padding: 8px 16px;
  font-weight: 500;
  text-align: center;
  color: rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid rgba(0, 0, 0, 0.3);
  transition: all .3s;
}

#calculator .tabs__buttons__button * {
  transition: all .3s;
}

#calculator .tabs__buttons__button .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
}

#calculator .tabs__buttons__button .body {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
}

#calculator .tabs__buttons__button:first-child {
  margin-left: 0;
  border-right: none;
}

#calculator .tabs__buttons__button:last-child {
  margin-right: 0;
}

#calculator .tabs__buttons__button.active {
  border-color: #ff5500;
}

#calculator .tabs__buttons__button.active .title {
  color: #ff5500;
}

#calculator .tabs__buttons__button.active .body {
  color: #ff5500;
}

#calculator .tabs__contents__content {
  display: none;
}

#calculator .tabs__contents__content.active {
  display: block;
}

#calculator .infos.type01 .infos__info {
  margin-bottom: 16px;
  padding-left: 70px;
  position: relative;
}

#calculator .infos.type01 .infos__info:last-child {
  margin-bottom: 0;
}

#calculator .infos.type01 .infos__info__title {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 12px;
  transform: translateY(-50%);
}

#calculator .infos.type01 .infos__info__content {
  padding-left: 5px;
  font-size: 14px;
}

#calculator .infos.type01 .infos__info__button {
  margin-left: 30px;
  float: right;
  cursor: pointer;
  font-size: 12px;
}

#calculator .align--center {
  text-align: center;
}

#calculator .align--right {
  text-align: right;
}

#calculator .align--left {
  text-align: left;
}

#calculator .black {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

#calculator .black.active {
  display: block;
}

#calculator .comments--comment {
  padding: 8px 0;
  background-color: #fff;
}

#calculator .comments--comment:last-child {
  border-bottom: 0;
}

#calculator .comments--comment--content {
  margin-bottom: 8px;
  font-size: 14px;
}

#calculator .comments--comment--sub {
  text-align: right;
  font-size: 12px;
}

#calculator .table.type01 th {
  padding: 14px 42px;
  font-weight: 800;
  border-bottom: 1px solid #000;
}

#calculator .table.type01 th:first-child {
  text-align: left;
}

#calculator .table.type01 td {
  padding: 20px 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#calculator .table.type01 td:nth-child(2) {
  text-align: right;
}

#calculator .table.type01 td .title {
  margin-bottom: 9px;
}

#calculator .table.type01 td .body {
  font-size: 14px;
  color: #797c84;
}

#calculator .table.type01 td .body * {
  font-size: 14px;
  color: #797c84;
}

#calculator .table.type01 td .body .bold {
  font-weight: 600;
  color: #797c84;
}

#calculator .table.type02 {
  width: 597px;
}

#calculator .table.type02 th {
  padding: 17px 0;
  padding-top: 0;
  border-bottom: 1px solid #000;
}

#calculator .table.type02 th:nth-child(1) {
  text-align: left;
}

#calculator .table.type02 th:nth-child(2) {
  text-align: right;
}

#calculator .table.type02 th:nth-child(3) {
  text-align: right;
}

#calculator .table.type02 td:nth-child(1) {
  text-align: left;
}

#calculator .table.type02 td:nth-child(2) {
  text-align: right;
}

#calculator .table.type02 td:nth-child(3) {
  text-align: right;
}

#calculator .table.type02 td {
  padding: 15px 0;
}

#calculator .pagination.type01 {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 24px;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
}

#calculator .pagination.type01 .pagination__container {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 5px;
}

#calculator .pagination.type01 .pagination__page {
  width: 40px;
  line-height: 30px;
  font-weight: 500;
  background-color: transparent;
  opacity: 0.5;
  transition: opacity .3s cubic-bezier(0.120, 0.870, 0.295, 0.930);
}

#calculator .pagination.type01 .pagination__page:hover {
  opacity: 1;
}

#calculator .pagination.type01 .pagination__page.active {
  opacity: 1;
}

#calculator .pagination.type01 .pagination__last {
  width: 40px;
  position: relative;
  bottom: 1px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 500;
}

#calculator .pagination.type01 .pagination__first {
  width: 40px;
  position: relative;
  bottom: 1px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 500;
}

#calculator .flash-box {
  padding: 10px 15px;
  position: fixed;
  bottom: 80px;
  left: 20px;
  font-size: 14px;
  background-color: #fff;
  color: #ff9711;
  border: 2px solid #ff9711;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 40;
}


#calculator .scroll-smooth {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#calculator .scrollbar.type01::-webkit-scrollbar {
  width: 13px;
  height: 13px;
  cursor: pointer;
}

#calculator .scrollbar.type01::-webkit-scrollbar-track {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}

/* 바 배경 색상 */
#calculator .scrollbar.type01::-webkit-scrollbar-thumb {
  background: #ff9711;
  border-radius: 15px;
  cursor: pointer;
}

/* 위치 바 색상 */
/*
.scrollbar.type01::-webkit-scrollbar-thumb:hover { background: pink; }
.scrollbar.type01::-webkit-scrollbar-thumb:active { background: green; }
 */
#calculator .scrollbar.type01::-webkit-scrollbar-button {
  display: none;
}

#calculator .progress.type01 {
}

#calculator .progress.type01 .progress--texts {
  margin-bottom: 8px;
  text-align: right;
  font-size: 12px;
}

#calculator .progress.type01 .progress--base {
  content: "";
  width: 100%;
  height: 6px;
  position: relative;
  background-color: rgba(153, 153, 153, 0.3);
  border-radius: 15px;
}

#calculator .progress.type01 .progress--base--active {
  width: 100%;
  height: 100%;
  max-width: 0%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 15px;
  transition: max-width .3s cubic-bezier(0.120, 0.870, 0.295, 0.930);
}

#calculator .progress.type01 .progress--points {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

#calculator .progress.type01 .progress--points--point {
  font-size: 12px;
}

#calculator .empty.type01 {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
}

#calculator .empty.type01 .empty__img {
  display: inline-block;
  margin-bottom: 0px;
}

#calculator .empty.type01 .empty__text {
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

#calculator .empty.type02 {
  padding: 16px;
  text-align: center;
}

#calculator .empty.type02 .empty__text {
  font-size: 18px;
  font-weight: 500;
}

/* ratio box */
#calculator .ratioBox-wrap {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-color: #dedede;
  overflow: hidden;
}

#calculator .ratioBox-wrap:after {
  content: "";
  width: 88px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 0;
  background: url("/img/logo.png") no-repeat;
  background-size: 100% 100%;
}

#calculator .ratioBox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#calculator .ratioBox img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

#calculator #login .links {
  width: 100%;
  margin-bottom: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}

#calculator #login .links .link {
  font-weight: 300;
  color: #fff;
}

#calculator #login .links .link:last-child:before {
  content: "|";
  display: inline-block;
  margin-left: 10px;
  margin-right: 12px;
  position: relative;
  top: -2px;
  font-size: 11px;
}

#calculator #register .input--avatar.active label {
  display: inline-block;
}

#calculator #register .input--wrap {
  margin-bottom: -5px;
}

#calculator #register .input--wrap:last-of-type {
  margin-bottom: 5px;
}

#calculator .width--100 {
  width: 100%;
}

#calculator .info.type01 {
  margin-bottom: 16px;
  min-height: 24px;
  padding-left: 84px;
  position: relative;
}

#calculator .info.type01:last-of-type {
  margin-bottom: 0;
}

#calculator .info.type01 .info--title {
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  color: #a0a0a0;
}

/* .info.type01 .info--title:before {content:"●"; margin-right:8px; position:relative; top:-3px; font-size:10px; color:#a0a0a0;} */
#calculator .info.type01 .info--body {
  color: #333;
}

#calculator .loading.type01 {
  position: relative;
  color: transparent;
}

#calculator .loading.type01 img {
  display: none;
}

#calculator .loading.type01 * {
  color: transparent;
}

#calculator .loading.type01:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/img/rotate--black.png") no-repeat;
  background-size: cover;
  animation: rotate .5s forwards linear infinite;
}

#calculator .loading.type02 {
  content: "불러오는중";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

#calculator .loading.type03 {
  padding: 56px 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #333;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}




