.hidden {
  display: none;
}

.object-contain {
  object-fit: contain;
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-scroll::-webkit-scrollbar {
  display: none;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-90 {
  width: 90%;
}

.w-92 {
  width: 92%;
}

.w-100 {
  width: 100% !important;
}

.w-100vw {
  width: 100vw;
}

.w-fit {
  width: fit-content;
}

.h-fit {
  height: fit-content !important;
}

.h-100 {
  height: 100%;
}

.min-h-125 {
  min-height: 125px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* border */

.border {
  border-width: 1px;
  border-style: solid;
}

.border-l {
  border-left: 1px;
  border-right: 0px;
  border-style: solid;
}

.border-r {
  border-right: 1px;
  border-left: 0px;
  border-style: solid;
}

.border-t {
  border-top: 1px;
  border-bottom: 0px;
  border-style: solid;
}

.border-b {
  border-top: 0px;
  border-bottom: 1px;
  border-style: solid;
}

.border-x {
  border-left: 1px;
  border-right: 1px;
  border-style: solid;
}

.border-x-0 {
  border-left: 0px;
  border-right: 0px;
}

.border-y {
  border-top: 1px;
  border-bottom: 1px;
  border-style: solid;
}

.border-color-gray{
  border-color: #a4a7b1;
}

.border-color-black-300 {
  border-color: #DDE5E6;
}

.border-color-black {
  border-color: #888888;
}

.border-color-silver {
  border-color: #AAAAAA;
}

/* flex */

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.gap-1 {
  gap: 0.625rem; /* 8.75px */
}

.gap-2 {
  gap: 0.75rem; /* 10.5px */
}

.gap-3 {
  gap: 1rem; /* 14px */
}

.gap-4 {
  gap: 1.25rem; /* 17.5px */
}

.gap-5 {
  gap: 1.5rem; /* 21px */
}

.gap-6 {
  gap: 1.714rem; /* 24px */
}

.gap-9 {
  gap: 2.85rem; /* 40px */
}

/* font */

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.text-underline {
  text-decoration: underline;
}

.text-s {
  font-size: 0.715rem; /* 10px */
}

.text-sm {
  font-size: 0.85rem; /* 12px */
}

.text-m {
  font-size: 1.15rem; /* 16px */
}

.text-lg {
  font-size: 1.215rem; /* 17px */
}

.text-lg2 {
  font-size: 1.47rem; /* 20px */
}

.text-xl {
  font-size: 1.714rem; /* 24px */
}

.text-xxl {
  font-size: 2rem; /* 28px */
}

.text-xxxl {
  font-size: 2.43rem; /* 34px */
}

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

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

.text-center-important {
  text-align: center !important;
}

.lh-6 {
  line-height: 1.714rem;
}

.text-silver {
  color: #AAAAAA;
}

.text-blue {
  color: #377ef7;
}

.text-orange {
  color: #ee8131;
}

.text-white {
  color: #fff;
}

.text-black-200 {
  color: #444444;
}

.text-black-300 {
  color: #5F5F6C;
}

.text-gray-300 {
  color: #D8D8D8;
}

.text-gray {
  color: #8B95A5;
}

.text-gray-500 {
  color: #707070;
}

.text-gray-600 {
  color: #777777;
}

.text-gray-800 {
  color: #999999;
}

.text-red {
  color: #dd365b;
}

/* bg color */

.bg-purple {
  background-color: #0AB2D8;
}

.bg-purple-800 {
  background-color: #8B96B7;
}

.bg-blue-200 {
  background-color: #CDD2E0;
}

.bg-blue-300 {
  background-color: #E2F1FF;
}

.bg-blue {
  background-color: #73AEE5;
}

.bg-blue-600 {
  background-color: #7590e4;
}

.bg-blue-700 {
  background-color: #1976D2;
}

.bg-blue-900 {
  background-color: #4859F4;
}

.bg-skyblue {
  background-color: #81b6f9;
}

.bg-skyblue-500 {
  background-color: #5B90F7;
}

.bg-gray {
  background-color: #f9f9f9;
}

.bg-gray-500 {
  background-color: #EAECF2;
}

.bg-gray-600 {
  background-color: #EDEDED;
}

.bg-gray-700 {
  background-color: #E7E7E7;
}

.bg-gray-800 {
  background-color: #E9ECEF !important;
}

.bg-gray-900 {
  background-color: #eaecf1;
}

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

/* round */
.rounded-1 {
  border-radius: 0.625rem; /* 8.75px */
}

.rounded-2 {
  border-radius: 0.75rem; /* 10.5px */
}

.rounded-3 {
  border-radius: 1rem; /* 14px */
}

.rounded-4 {
  border-radius: 1.25rem; /* 17.5px */
}

.rounded-5 {
  border-radius: 1.5rem; /* 21px */
}

.rounded-6 {
  border-radius: 1.714rem; /* 24px */
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-fill {
  border-radius: 40px;
}

.rounded-top {
  border-radius: 10px 10px 0 0;
}

.rounded-bottom {
  border-radius: 0 0 10px 10px;
}

.rounded-right-top {
  border-radius: 0 10px 0 0;
}

/* padding */

.p-0 {
  padding: 0 !important;
}

.p-0-5 {
  padding: 0.4rem;
}

.p-1 {
  padding: 0.625rem; /* 8.75px */
}

.p-2 {
  padding: 0.75rem; /* 10.5px */
}

.p-3 {
  padding: 1rem; /* 14px */
}

.p-4 {
  padding: 1.25rem; /* 17.5px */
}

.p-5 {
  padding: 1.5rem; /* 21px */
}

.p-6 {
  padding: 1.714rem; /* 24px */
}

.px-1 {
  padding-left: 0.625rem; /* 8.75px */
  padding-right: 0.625rem;
}

.px-2 {
  padding-left: 0.75rem; /* 10.5px */
  padding-right: 0.75rem;
}

.px-3 {
  padding-left: 1rem; /* 14px */
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1.25rem; /* 17.5px */
  padding-right: 1.25rem;
}

.px-5 {
  padding-left: 1.5rem; /* 21px */
  padding-right: 1.5rem;
}

.px-6 {
  padding-left: 1.714rem; /* 24px */
  padding-right: 1.714rem;
}

.px-9 {
  padding-left: 2.85rem; /* 40px */
  padding-right: 2.85rem;
}

.py-1 {
  padding-top: 0.625rem; /* 8.75py */
  padding-bottom: 0.625rem;
}

.py-2 {
  padding-top: 0.75rem; /* 10.5py */
  padding-bottom: 0.75rem;
}

.py-3 {
  padding-top: 1rem; /* 14py */
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.25rem; /* 17.5py */
  padding-bottom: 1.25rem;
}

.py-5 {
  padding-top: 1.5rem; /* 21py */
  padding-bottom: 1.5rem;
}

.py-6 {
  padding-top: 1.714rem; /* 24py */
  padding-bottom: 1.714rem;
}

.pr-1 {
  padding-right: 0.625rem; /* 8.75prx */
}

.pr-2 {
  padding-right: 0.75rem; /* 10.5prx */
}

.pr-3 {
  padding-right: 1rem; /* 14prx */
}

.pr-4 {
  padding-right: 1.25rem; /* 17.5prx */
}

.pr-5 {
  padding-right: 1.5rem; /* 21prx */
}

.pr-6 {
  padding-right: 1.714rem; /* 24prx */
}

.pl-1 {
  padding-left: 0.625rem; /* 8.75plx */
}

.pl-2 {
  padding-left: 0.75rem; /* 10.5plx */
}

.pl-3 {
  padding-left: 1rem; /* 14plx */
}

.pl-4 {
  padding-left: 1.25rem; /* 17.5plx */
}

.pl-5 {
  padding-left: 1.5rem; /* 21plx */
}

.pl-6 {
  padding-left: 1.714rem; /* 24plx */
}

.pt-1 {
  padding-top: 0.625rem; /* 8.75ptx */
}

.pt-2 {
  padding-top: 0.75rem; /* 10.5ptx */
}

.pt-3 {
  padding-top: 1rem; /* 14ptx */
}

.pt-4 {
  padding-top: 1.25rem; /* 17.5ptx */
}

.pt-5 {
  padding-top: 1.5rem; /* 21ptx */
}

.pt-6 {
  padding-top: 1.714rem; /* 24ptx */
}

.pb-1 {
  padding-bottom: 0.625rem; /* 8.75pbx */
}

.pb-2 {
  padding-bottom: 0.75rem; /* 10.5pbx */
}

.pb-3 {
  padding-bottom: 1rem; /* 14pbx */
}

.pb-4 {
  padding-bottom: 1.25rem; /* 17.5pbx */
}

.pb-5 {
  padding-bottom: 1.5rem; /* 21pbx */
}

.pb-6 {
  padding-bottom: 1.714rem; /* 24pbx */
}

/* margin */

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.625rem; /* 8.75px */
}

.m-2 {
  margin: 0.75rem; /* 10.5px */
}

.m-3 {
  margin: 1rem; /* 14px */
}

.m-4 {
  margin: 1.25rem; /* 17.5px */
}

.m-5 {
  margin: 1.5rem; /* 21px */
}

.m-6 {
  margin: 1.714rem; /* 24px */
}

.mx-1 {
  margin-left: 0.625rem; /* 8.75px */
  margin-right: 0.625rem;
}

.mx-2 {
  margin-left: 0.75rem; /* 10.5px */
  margin-right: 0.75rem;
}

.mx-3 {
  margin-left: 1rem; /* 14px */
  margin-right: 1rem;
}

.mx-4 {
  margin-left: 1.25rem; /* 17.5px */
  margin-right: 1.25rem;
}

.mx-5 {
  margin-left: 1.5rem; /* 21px */
  margin-right: 1.5rem;
}

.mx-6 {
  margin-left: 1.714rem; /* 24px */
  margin-right: 1.714rem;
}

.my-1 {
  margin-top: 0.625rem; /* 8.75px */
  margin-bottom: 0.625rem;
}

.my-2 {
  margin-top: 0.75rem; /* 10.5px */
  margin-bottom: 0.75rem;
}

.my-3 {
  margin-top: 1rem; /* 14px */
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.25rem; /* 17.5px */
  margin-bottom: 1.25rem;
}

.my-5 {
  margin-top: 1.5rem; /* 21px */
  margin-bottom: 1.5rem;
}

.my-6 {
  margin-top: 1.714rem; /* 24px */
  margin-bottom: 1.714rem;
}

.mr-1 {
  margin-right: 0.625rem; /* 8.75mrx */
}

.mr-2 {
  margin-right: 0.75rem; /* 10.5mrx */
}

.mr-3 {
  margin-right: 1rem; /* 14mrx */
}

.mr-4 {
  margin-right: 1.25rem; /* 17.5mrx */
}

.mr-5 {
  margin-right: 1.5rem; /* 21mrx */
}

.mr-6 {
  margin-right: 1.714rem; /* 24mrx */
}

.ml-1 {
  margin-left: 0.625rem; /* 8.75mlx */
}

.ml-2 {
  margin-left: 0.75rem; /* 10.5mlx */
}

.ml-3 {
  margin-left: 1rem; /* 14mlx */
}

.ml-4 {
  margin-left: 1.25rem; /* 17.5mlx */
}

.ml-5 {
  margin-left: 1.5rem; /* 21mlx */
}

.ml-6 {
  margin-left: 1.714rem; /* 24mlx */
}

.mt-1 {
  margin-top: 0.625rem; /* 8.75mtx */
}

.mt-2 {
  margin-top: 0.75rem; /* 10.5mtx */
}

.mt-3 {
  margin-top: 1rem; /* 14mtx */
}

.mt-4 {
  margin-top: 1.25rem; /* 17.5px */
}

.mt-5 {
  margin-top: 1.5rem; /* 21mtx */
}

.mt-6 {
  margin-top: 1.714rem; /* 24mtx */
}

.m-mt-32 {
  margin-top: -32px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.625rem; /* 8.75mbx */
}

.mb-2 {
  margin-bottom: 0.75rem; /* 10.5mbx */
}

.mb-3 {
  margin-bottom: 1rem; /* 14mbx */
}

.mb-4 {
  margin-bottom: 1.25rem; /* 17.5mbx */
}

.mb-5 {
  margin-bottom: 1.5rem; /* 21mbx */
}

.mb-6 {
  margin-bottom: 1.714rem; /* 24mbx */
}

.mb-7 {
  margin-bottom: 2rem; /* 28px */
}

.mb-8 {
  margin-bottom: 2.43rem; /* 34px */
}

.mb-9 {
  margin-bottom: 2.85rem; /* 40px */
}

.mb-10 {
  margin-bottom: 3rem; /* 42px */
}

.mb-11 {
  margin-bottom: 3.5rem; /* 49px */
}

.mb-12 {
  margin-bottom: 4rem; /* 56px */
}

.cursor-pointer {
  cursor: pointer;
}

/* list */

.list-disc {
  list-style: disc;
}

/* custom */

.icon-24 {
  width: 24px;
  height: 24px;
}

.lms-card-button {
  border: solid 1px #0080FF;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  color: #0080FF;
  height: fit-content;
  width: fit-content;
  border-radius: 40px;
  background-color: white;
}

.lms-card-button-fill {
  border: solid 1px #0080FF;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  height: fit-content;
  width: fit-content;
  border-radius: 40px;
  background-color: #0080FF;
}

.rcs-card {
  height: 320px;
  width: 180px;
  border-radius: 24px;
  padding: 20px 4px;
  background-color: #f6faff;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.rcs-card-2 {
  width: 238px;
  border-radius: 24px;
  padding: 20px 12px;
  background-color: #f6faff;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.rcs-card-2 .rcs-card-icon,
.rcs-card .rcs-card-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  height: 112px;
  width: 112px;
}

.chkrdo2 .checkbox {
  width: 18px !important;
  height: 18px !important;
}


.contain-ad-pop{
  font-size: 12px;
  color: #373D3F;
}

.btnLinkDateInput {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  appearance: none;
  background-color: #f2f2f2;
  text-align: center;
  border-radius: 4px;
}

.photo-play-ico {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.w-fix-1000 {
  width: 1000px;
}

.w-fix-100 {
  width: 100px;
}

.w-fix-160 {
  width: 160px;
}

.w-fix-210 {
  width: 210px;
}

.w-fix-240 {
  width: 240px;
}

.w-fix-250 {
  width: 250px;
}

.w-fix-280 {
  width: 280px;
}

.w-fix-320 {
  width: 320px;
}

.w-fix-400 {
  width: 400px;
}

.w-fix-640 {
  width: 640px;
}

.w-fix-860 {
  width: 860px;
}

.h-fix-150 {
  height: 150px;
}

.h-fix-189 {
  height: 189px;
}

.h-fix-200 {
  height: 200px;
}

.h-fix-230 {
  height: 230px;
}

.h-fix-310 {
  height: 310px;
}

.h-fix-372 {
  height: 372px;
}

.h-fix-400 {
  height: 400px;
}

.h-fix-630 {
  height: 630px;
}

.h-fix-697 {
  height: 697px;
}

.rcs-photo-card-left-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(0, -50%);
  z-index: 99;
}

.rcs-photo-card-right-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
  z-index: 99;
}

.rcs-photo-card-left-arrow > img {
  transform: rotate(180deg);
}

.rcs-photo-card-left-arrow > img,
.rcs-photo-card-right-arrow >img {
  width: 40px;
  height: 40px;
}

#rcsPhotoBasicAttachVideo {
  padding-left: 112px;
}

#rcsSlideList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  
  gap: 8px;
}

#rcsSlideList > #rcsSlideAdd {
  width: 32%;
  background-color: #D4EAFF;
  color: #0080FF;
}

#rcsSlideList > button.rcs-slide {
  position: relative;
  width: 32%;
  border-radius: 0.625rem; /* 8.75px */
  padding-top: 0.625rem; /* 8.75py */
  padding-bottom: 0.625rem;
  background-color: #E9ECEF;
  display: flex ;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}

#rcsSlideList > button.rcs-slide > span.icon {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  background-image: url('../img/icon/ico_x-in-circle.svg');
}

#rcsSlideList > button.rcs-slide.active {
  background-color: #0080FF;
  color: white;
}

#rcsSlideList > button.rcs-slide.active::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 16px;
  transform: translate(0, -50%);
  background-image: url('../img/icon/ico_check.svg');
}

#rcsSlideList > button.rcs-slide.active > span.icon {
  background-image: url('../img/icon/ico_x-in-circle-white.svg');
}

div.mesgTitle.relative > div.tooltip {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}

.customInput {
  color: #CCCCCC;
  padding: 10px !important;
  border: #E4E5EC 1px solid;
  border-radius: 2px !important;
  height: 50px;
  width: 300px;
}

.disabled-all {
  position: relative;
}

.disabled-all::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 0 0 10px 10px;
  opacity: 0.1;
}

/* 
SMS Intro card
 */

.smsIntroCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  width: 180px;
  height: 262px;
  padding: 20px;
  background-color: #f5faff;
}

.smsIntroCardIcon {
  background-color: #fff;
  padding: 16px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.smsIntroCardTitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.smsIntroCardButton {
  border: 1px solid #0080ff;
  background-color: #fff;
  color: #0080ff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
}

/* kakao intro card */

.kakaoIntroCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background-color: #fffffa;
  border: 1px solid #dde5e6;
  padding: 24px;
  width: 300px;
  /* height: 384px; */
}

.kakaoIntroCard > img {
  margin-bottom: 16px;
}

.kakaoIntroCardStep {
  color: #EBB700;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 16px;
}

.kakaoIntroCardHead {
  font-weight: 700;
  font-size: 24px;
  padding: 2px 12px;
  background-color: #fff490;
  border-radius: 4px;
  margin-bottom: 16px;
}

.kakaoIntroCardDescription {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 32px;
  text-align: center;
}

.kakaoIntroCardButton {
  padding: 10px 0;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
  border-radius: 20px;
  
  border: 1px solid #0080ff;
  color: #0080ff;
}

.kakaoIntroCardButton.fill {
  background-color: #0080ff;
  color: #fff;
}

.kakaoUsagePopUpButton {
  color: #0080ff;
  border: 1px solid #0080ff;
  background-color: #eaf5ff;
  border-radius: 20px;
  padding: 10px 40px;
  width: fit-content;
  text-wrap: nowrap;
  font-weight: 700;
  font-size: 13px;
}

/* 선거문자 문의 정보 */
.lmsCallCenter {
  position: fixed;
  right: 15%;
  bottom: 10%;
  width: 220px;
  
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (max-width: 1328px) {
  .lmsCallCenter {
    right: 10%;
    bottom: 10%;
  }
}

.lmsCallCenterContainer {
  background-color: white;

  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 16px;
  height: 100%;

  padding: 12px;

  display: flex;
  flex-direction: column;

  gap: 12px;
}

/* 카카오  원페이지 배너 */

.inBannerContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);

  align-items: center;
}

.inBannerContent > .head {
  font-weight: 700;
  font-size: 40px;
}

/* 카카오 요금 안내 */
.kakaoCostContainer {
  display: flex;
  flex-direction: column;
}

.kakaoCostContainer > .kakaoCostVAT {
  color: #5F5F6C;
  font-size: 14px;
  width: 100%;
  text-align: end;
}

.kakaoCostContainer > .kakaoCostMain {
  width: 700px;
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCostType,
.kakaoCostContainer > .kakaoCostMain > .kakaoCost {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 2px;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCostType > .row,
.kakaoCostContainer > .kakaoCostMain > .kakaoCost > .row {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-weight: 700;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCostType > .head,
.kakaoCostContainer > .kakaoCostMain > .kakaoCost > .head {
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCostType > .head {
  border-radius: 16px 16px 0 0;
  color: white;
  background-color: #8B99BE;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCostType > .row {
  background-color: #F4F4F4;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCostType > .row:last-child,
.kakaoCostContainer > .kakaoCostMain > .kakaoCost > .row:last-child {
  border-radius: 0 0 16px 16px;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCost > .head {
  border-radius: 16px 16px 0 0;
  background-color: #FFE500;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCost > .row {
  height: 100%;
  background-color: #F8F7EB;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2px;

  font-size: 24px;
  font-weight: 700;
}

.kakaoCostContainer > .kakaoCostMain > .kakaoCost > .row > span:first-child {
  font-weight: 900;
  font-size: 32px;
  color: #FF3F3F;
}

.kakaoCostContainer > .kakaoCostNoti {
  color: #5F5F6C;
  font-size: 12px;
  width: 100%;
  text-align: end;
}

.bytes_area_short {
  display: inline-block;
  height: 22px;
  line-height: 21px;
  padding: 0 7px;
  border-radius: 3px;
  font-size: 13px;
  background-color: rgb(78, 173, 234);
  color: #fff !important;
  cursor: default;
}

.bytes_area_long {
  display: inline-block;
  height: 22px;
  line-height: 21px;
  padding: 0 7px;
  border-radius: 3px;
  font-size: 13px;
  background-color: rgb(234, 51, 35);
  color: #fff !important;
  cursor: default;
}