.point {
  color: #6500c9;
}

/* 심 주문 메인페이지 START */
@media screen and (max-width: 768px) {
  .info_banner_section {
    padding-bottom: 0;
  }
}

.SimOrder .title_area {
  overflow: hidden;
  position: relative;
  min-height: 180px;
}
@media screen and (max-width: 768px) {
  .SimOrder .title_area {
    min-height: 130px;
  }
}
.SimOrder .title_area .c_head_copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  animation: textSwitch1 7s infinite;
}
.SimOrder .title_area .second {
  animation: textSwitch2 7s infinite;
}
@keyframes textSwitch1 {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  3%,
  47% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes textSwitch2 {
  0%,
  50% {
    opacity: 0;
    transform: translateY(30px);
  }
  53%,
  97% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
.SimOrder .c_sectionTitle {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .SimOrder .c_sectionTitle {
    font-size: 24px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .SimOrder .c_sectionTitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.simType_area {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .simType_area {
    flex-direction: column;
    gap: 16px;
  }
}
.simType_area .card_wrap {
  flex: 1;
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 32px 32px 28px;
}
@media screen and (max-width: 768px) {
  .simType_area .card_wrap {
    padding: 20px 20px 8px;
    border-radius: 12px;
  }
}
.simType_area .subTitle_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.simType_area .subTitle {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .simType_area .subTitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .simType_area .subTitle {
    font-size: 16px;
  }
}
.simType_area .telecom_list {
  display: flex;
  gap: 8px;
}
.simType_area .telecom_list .telecom_item {
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 6px 8px;
  background-color: #fff;
  border-radius: 999px;
  min-width: 50px;
}
@media screen and (max-width: 768px) {
  .simType_area .telecom_list .telecom_item {
    font-size: 12px;
    min-width: 44px;
    padding: 4px 6px;
  }
}
@media screen and (max-width: 375px) {
  .simType_area .telecom_list .telecom_item {
    min-width: fit-content;
  }
}
.simType_area .telecom_list .telecom_item.kt {
  background-color: #c5efed;
  color: #5cb6b1;
}
.simType_area .telecom_list .telecom_item.lg {
  background-color: #ffd1ea;
  color: #ff66ba;
}
.simType_area .telecom_list .telecom_item.skt {
  background-color: #dad3ff;
  color: #795eff;
}
@media screen and (max-width: 768px) {
  .simType_area .text {
    font-size: 14px;
    line-height: 1.3;
  }
}
.simType_area .info_text {
  cursor: pointer;
  font-size: 14px;
  color: #525252;
  font-weight: 500;
  transition: opacity 0.2s;
  margin: 12px 0;
  width: fit-content;
}
.simType_area .info_text::before {
  content: "";
  background: url("/Views/web/images/common/icon_info.svg") no-repeat center
    center/contain;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -2px;
}
.simType_area .info_text:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .simType_area .info_text {
    font-size: 13px;
    padding: 12px 0 8px;
    margin: 0;
  }
}
.simType_area .price_area {
  display: flex;
  gap: 8px;
  align-items: center;
}
.simType_area .price_origin {
  font-size: 20px;
  color: #737373;
  line-height: 1.3;
  text-decoration: line-through;
  margin-top: 2px;
}
.simType_area .price_sale {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-accent-price);
  line-height: 1.3;
}
.simType_area .price_sale .img_wrap {
  position: absolute;
  top: 50%;
  left: calc(100% + 4px);
  transform: translateY(-50%);
  height: 27px;
}
.simType_area .price_sale .img_wrap img {
  height: 100%;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .simType_area .price_origin {
    font-size: 16px;
  }
  .simType_area .price_sale {
    font-size: 20px;
  }
  .simType_area .price_sale .img_wrap {
    height: 21px;
  }
}
.simType_area .btn_wrap {
  font-weight: 500;
  text-align: right;
  color: #737373;
  display: inline-block;
  width: 100%;
  transition: opacity 0.2s;
}
.simType_area .btn_wrap::after {
  content: "";
  background: url("/Views/web/images/common/icon_circle_arrow_line.svg")
    no-repeat center center/contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 5px;
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .simType_area .btn_wrap {
    text-align: center;
    line-height: 36px;
    margin-top: 20px;
    padding-top: 6px;
    border-top: 1px solid var(--color-border-default);
    font-size: 14px;
  }
  .simType_area .btn_wrap::after {
    width: 16px;
    height: 16px;
  }
}
.simType_area .btn_wrap:hover {
  opacity: 0.7;
}
.simType_area .btn_wrap:hover::after {
  transform: translateX(3px);
}
.telecomUsim_area {
  background-color: #fafafa;
}
.telecomUsim_area .contents {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .telecomUsim_area .contents {
    flex-direction: column;
  }
}
.telecomUsim_area .left,
.telecomUsim_area .right {
  flex: 1;
}
.telecomUsim_area .left .usim_list {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .telecomUsim_area .left .usim_list {
    gap: 12px;
  }
}
.telecomUsim_area .left .usim_list .usim_item {
  position: relative;
  height: 100%;
}
.telecomUsim_area .left .usim_list .usim_item .disabled_dim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  z-index: 1;
}
.telecomUsim_area .left .usim_item .usim_link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
  border: 1px solid transparent;
  transition: 0.1s;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .telecomUsim_area .left .usim_item .usim_link {
    padding: 20px;
    border-radius: 12px;
  }
}
.telecomUsim_area .left .usim_item .usim_link:hover {
  box-shadow: 0 0px 16px rgba(81, 174, 220, 0.4);
  border: 1px solid #51addc;
}
.telecomUsim_area .left .usim_link .img_wrap {
  display: block;
  height: clamp(18px, 4vw, 28px);
}
.telecomUsim_area .left .usim_link .img_wrap img {
  height: 100%;
  width: auto;
  max-width: unset;
}
.telecomUsim_area .left .usim_link .text_wrap {
  display: flex;
  justify-content: end;
  width: 100%;
  font-size: clamp(14px, 3.8vw, 20px);
}
.telecomUsim_area .left .usim_link .text_wrap .price {
  font-weight: 600;
  margin-left: 12px;
}
.telecomUsim_area .right {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
  /* comment : LGU+ 공용유심 오픈 시 주석 해제 */
  /* background-image: url("/Views/web/images/pages/SimOrder/img_emoji.svg"); */
  background-position: right 7% bottom 12%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 112px auto;
}
@media screen and (max-width: 1024px) {
  .telecomUsim_area .right {
    background-position: right 6% bottom 24%;
  }
}
@media screen and (max-width: 768px) {
  .telecomUsim_area .right {
    padding: 20px;
    border-radius: 12px;
    background-image: none;
  }
}
.telecomUsim_area .right .subTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.telecomUsim_area .right .subTitle::before {
  content: "";
  background: url(/Views/web/images/common/icon_info.svg) no-repeat center
    center/contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .telecomUsim_area .right .subTitle {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .telecomUsim_area .right .subTitle::before {
    width: 16px;
    height: 16px;
  }
}
.telecomUsim_area .right .text_list .text_item {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.telecomUsim_area .right .text_list .text_item:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 768px) {
  .telecomUsim_area .right .text_list .text_item {
    font-size: 13px;
    line-height: 1.2;
  }
}
.banner_area {
  padding: 0;
  display: block;
  background-color: #0ba8ff;
  color: #fff;
}
.banner_area .c_inner {
  background: url("/Views/web/images/pages/SimOrder/img_banner.png") no-repeat
    right 20px bottom -55px;
  background-size: 391px auto;
  padding: 80px var(--inner-padding);
}
@media screen and (max-width: 768px) {
  .banner_area .c_inner {
    background-position: right 20px bottom -50px;
    background-size: 130px auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.banner_area .c_sectionTitle {
  text-align: left;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .banner_area .c_sectionTitle {
    margin-bottom: 12px;
  }
}
.banner_area .point {
  color: #ffff04;
}
.info_banner_area {
  margin-top: 40px;
  display: block;
  padding: 32px;
  border-radius: 16px;
  background: url("/Views/web/images/pages/SimOrder/img_info_banner.jpg")
    no-repeat center center/cover;
  height: 136px;
  overflow: hidden;
}
.info_banner_area .title {
  line-height: 1.3;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .info_banner_area {
    margin: 60px calc(var(--inner-padding) * -1) 0;
    padding: 24px var(--inner-padding);
    border-radius: unset;
    background-position: right 40% center;
    height: auto;
  }
  .info_banner_area .title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.more_btn::after {
  content: "";
  background: url("/Views/web/images/common/icon_expand_white.svg") no-repeat
    center center/contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-left: 2px;
  transform: rotate(90deg);
}
.more_btn[class*="small"][class*="subColor"] {
  color: var(--color-sub);
  font-weight: 500;
}
.more_btn[class*="small"][class*="subColor"]::after {
  background-image: url(/Views/web/images/common/icon_expand_subColor.svg);
  width: 16px;
  height: 16px;
  margin-left: unset;
}
@media screen and (max-width: 768px) {
  .more_btn {
    font-size: 13px;
  }
  .more_btn::after {
    width: 16px;
    height: 16px;
  }
}
/* 심 주문 메인페이지 END */
