#quick-btns {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
  z-index: 1040;
  width: 87px;
  height: 571px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 4px rgba(166, 168, 181, 0.25),
    -2px -2px 2px rgba(166, 168, 181, 0.25);
  box-shadow: 2px 2px 4px rgba(166, 168, 181, 0.25),
    -2px -2px 4px rgba(166, 168, 181, 0.25);
  font-size: 16px;
}

.modal-dialog{
  height: 100%;
  margin: 0 auto;
}
.modal-content{
  max-height: 90%;
}

.inner-quick-btns img {
  width: 50px;
  height: 50px;
}
.inner-quick-btns span {
  font-size: 14px;
  margin-top: 3px;
}

.inner-quick-btns {
  justify-content: space-between;
  height: 100%;
  padding: 45px 0;
}
.inner-quick-btns div{
  cursor: pointer;
}
.inner-quick-btns div img {
  transition: transform 0.3s ease; /* 부드럽게 */
}

.inner-quick-btns div:hover img {
  transform: scale(1.1); /* 1.2배 커짐 */
}


.quick-header {
  border-radius: 10px 10px 0 0;
  background-color: #2f3d86;
}

#testMarker {
  position: absolute;
  right: -130px;
  bottom: -2px;
  background-color: red;
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 16px;
}

.logo-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.card-body {
  user-select: none;
  padding: 36px !important;
}

.btn {
  font-size: 18px;
}

.btn-link {
  color: #263238;
  text-decoration: none;
}

.info-title,
.login-title {
  font-size: 25px;
}

.info-title {
  color: #2f3d86;
  padding: 0 12px;
  border-left: 1px solid #a4adca;
  border-right: 1px solid #a4adca;
}

.steps {
  border: 1px solid #00000013;
  padding: 0.7rem 2rem;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.step-title {
  min-width: 77px;
  display: flex;
  align-items: center;
}

.plan-title {
  min-width: 63px;
}

.step-title,
.plan-title {
  font-size: 17px;
  color: #4e60b4;
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 20px;
  border-right: 1px solid rgba(120, 130, 140, 0.13) !important;
}

.step-body,
.plan-body {
  font-size: 17px;
  flex-grow: 1;
  font-weight: 600;
  text-align: center;
}

.step-body {
  padding: 0 20px;
}

.plans {
  text-align: right;
  border: 1px solid #00000013;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  display: flex;
  gap: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  width: 100%;
}

#view-more-btn,
#for-tax-btn {
  background-color: #2f3d86;
  color: white;
  line-height: 1;
}

#view-more-btn {
  padding: 0.7rem 1.7rem;
  margin: 24px 0 12px 0;
}

#for-tax-btn {
  padding: 1rem;
  border-radius: 25px;
  width: 85%;
  margin: auto;
  margin-top: 18px;
}

.btn i {
  padding-left: 5px;
}

.inquiry {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry h1 {
  font-weight: 900;
  text-align: center;
  color: #3a4dac;
  font-size: 44px;
  margin-bottom: 20px;
}

.inquiry-tag {
  background-color: #2f3d86;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

.inquiry-body {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 325px;
  font-size: 17px;
}

.dotted-border-end {
  border-right: 2px dotted #d5d5d5;
  padding-right: 40px;
}

.dotted-border-bottom {
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #d5d5d5;
  width: 80%;
}

.form-control {
  width: 18rem;
  font-size: 15px;
}

.form-check {
  display: flex;
  font-size: 18px;
}

.form-check label {
  margin-left: 6px;
  font-size: 16px;
}

#login-btn {
  padding: 0 30px;
  word-break: keep-all;
}

.plan-container {
  margin-left: 40px;
}

.plans-container {
  width: 100%;
}

span.arrow-body {
  width: 100%;
  height: 13px;
  display: block;
  transform: translate(0px, 5.5px);
}

span.arrow-head svg {
  height: 22px;
}

.modal-dialog {
  user-select: none;
  width: 70%;
  max-width: 100%;
}

/* Zoom 애니메이션 */
.zoom-animate {
  transform: scale(0.9) translateZ(-40px); /* 뒤에서 시작 */
  opacity: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* 시작할 때 그림자 */
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.45s ease-out, box-shadow 0.45s ease-out;
  transform-origin: center center;
  perspective: 1000px;
}

.modal.show .zoom-animate {
  transform: scale(1) translateZ(0);
  opacity: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* 최종적으로 안정된 그림자 */
}

.modal-header {
  padding-top: 2rem;
}

.modal-body {
  padding-bottom: 2rem;
}

.modal-header,
.modal-body {
  padding-left: 2rem;
  padding-right: 2rem;
}

.modal-body td {
  padding: 15px 0;
}

.modal-body td,
.modal-body th {
  border: 1px solid gainsboro;
}

.quarter-info {
  border-bottom: 3px solid black;
  padding-bottom: 16px;
}

table.table {
  white-space: nowrap;
  border-top: 3px solid black;
}

.table th {
  padding: 0.9375rem 1.4rem;
}

.modal-body {
  overflow-x: auto;
}

thead {
  background-color: #cdd2f0;
}

@media (max-width: 1635px) {
  .modal-dialog {
    width: 90%;
  }
}

@media (max-width: 1570px) {
  .container-fluid {
    padding: 50px 0;
  }
}

@media (max-width: 1108px) {
  .dotted-border-end {
    border-right: none;
    padding-right: 2px;
    margin-bottom: 22px;
  }

  .plan-container {
    margin-left: 0;
  }

  .plans-container {
    width: auto;
  }

  .inquiry {
    align-items: center;
  }

  .info-card-body {
    flex-direction: column;
  }

  .dotted-border-bottom.d-none {
    display: block !important;
    margin-bottom: 22px;
  }
  .info-box {
    height: unset !important;
  }
}

@media (max-width: 768px) {
  .inner-quick-btns {
    padding: 0;
  }

  #quick-btns {
    top: unset;
    bottom: 0;
    right: 0;
    transform: translateY(0);
    width: 100%;
    height: auto;
    padding: 0.5rem 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .quick-header {
    display: none;
  }

  .inner-quick-btns {
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 0;
    width: 100%;
    padding-left: 12%;
    padding-right: 12%;
  }
  .inner-quick-btns img {
    width: 40px;
    height: 40px;
  }
  .inner-quick-btns span {
    font-size: 13px;
    margin-top: 3px;
  }

  .container-fluid {
    padding: 50px 10px 150px;
  }

  .btn {
    font-size: 16px;
  }

  .login-title,
  .info-title {
    font-size: 22px;
  }

  .step-title,
  .plan-title {
    font-size: 18px;
  }

  .step-body,
  .plan-body {
    font-size: 18px;
  }

  .form-control {
    width: 16rem;
    font-size: 16px;
  }

  .form-check {
    font-size: 16px;
  }

  .card-body {
    padding: 20px !important;
  }

  .inquiry h1 {
    font-size: 36px;
  }

  .inquiry-body {
    font-size: 16px;
  }

  .dotted-border-bottom {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .steps,
  .plans {
    padding: 0.5rem 1rem;
  }

  #login-btn {
    padding: 0 20px;
  }

  .info-box{
    width: 352.64px;
  }
}

@media (max-width: 590px) {
  #testMarker {
    text-align: center;
    right: -100px;
    padding: 6px 8px;
    font-size: 12px;
    width: 93px;
  }

  .btn {
    font-size: 14px;
  }

  .login-title,
  .info-title {
    font-size: 20px;
  }

  .step-title,
  .plan-title {
    font-size: 16px;
  }

  .step-body,
  .plan-body {
    font-size: 16px;
  }

  .form-control {
    width: 14rem;
    font-size: 14px;
  }

  .form-check {
    font-size: 14px;
  }

  .inquiry h1 {
    font-size: 34px;
  }

  .inquiry-body {
    font-size: 14px;
  }

  .dotted-border-bottom {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .steps {
    padding: 0.5rem 1rem;
  }

  #login-btn {
    padding: 0 20px;
  }

  #for-tax-btn {
    margin-top: 0;
  }

  .info-body {
    width: 100%;
  }

  .inquiry-body {
    min-width: 262px;
  }

  
  .accordion-button{
    font-size: 14px !important;
  }
  .accordion-body{
    font-size: 14px !important;
  }
}
