@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

@font-face {
  font-family: "Freesentation";
  font-weight: 100;
  src: url("../font/Freesentation-1Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 200;
  src: url("../font/Freesentation-2ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 300;
  src: url("../font/Freesentation-3Light.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 400;
  src: url("../font/Freesentation-4Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 500;
  src: url("../font/Freesentation-5Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 600;
  src: url("../font/Freesentation-6SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 700;
  src: url("../font/Freesentation-7Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 800;
  src: url("../font/Freesentation-8ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Freesentation";
  font-weight: 900;
  src: url("../font/Freesentation-9Black.ttf") format("truetype");
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1bbd36; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #1bbd36; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bbd36; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #1bbd36;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Freesentation";
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



main{
  min-height: 536px;
      margin: 0 10px;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 2px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.1);
}
.header .header-top{
  justify-content: space-between;
}
.header a.logo {
  line-height: 1;
  margin: 0;
}

.header .logo img {
  max-height: 30px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header  span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}

.header span > img{
  height: 24px;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 15px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a img {
  height: 30px;
}

.navmenu a img{
  height: 20px;
}

.header-menu{
  list-style: none;
  border-top: 1px solid #E6E7EB;
  padding: 10px;
}

header > div > div > a.active{
  font-weight: 800;
}

header > div > div > div > a{
  font-size: 14px;
  color: #060606;
  transition: all 0.3s;
  font-family: 'Freesentation';
  font-weight: 400;
  margin-right: 40px;
}
header > div > div > div > a:hover{
  color: #FFB931;
}

header > div > div > div > a > img{
  height: 20px;
}

header > div > div > div > a.active{
  font-weight: 800;
}

/* @media (max-width: 1200px) {
  .header .modal_local_btn{
    order: 2;
  }
  .header .logo {
    order: 1;
  }

  .header .header_service{
    order: 3;
  }
   .header .header_fee{
    order: 4;
  }
   .header .header_calcost{
    order: 5;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 3;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 4;
  }
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navmenu {
  padding: 0;
}
.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navmenu li {
  position: relative;
}
.navmenu a,
.navmenu a:focus {
  color: #FFB931;
  padding: 18px 15px;
  font-size: 13px;
  font-family: var(--nav-font);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}
.navmenu li:last-child a {
  padding-right: 0;
}
.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}
.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu .dropdown ul li {
  min-width: 200px;
}
.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--nav-dropdown-color);
}
.navmenu .dropdown ul a i {
  font-size: 12px;
}
.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--nav-dropdown-hover-color);
}
.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}
.navmenu .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

/* Navmenu - Mobile */
/* @media (max-width: 1199px) {
  .header .logo img {
    max-height: 30px;
    margin: 0 8px;
  }
  .header .modal_local_btn > img {
    height: 20px;
    margin: 0;
  }
  .navmenu a img {
    height: 20px;
  }
  

  #header .header-top{
    padding: 10px 0;
  }
  .header-menu {
    padding-right: 0;
    padding-left: 0;
  }
  .header-menu > li {
    margin-right: 30px;
    margin-left: 8px;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 0 7px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(41, 33, 33, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul { 
    display: block;
  }
} */

.modal_local, .modal_lang {
/*팝업 배경*/
  display: none; /*평소에는 보이지 않도록*/
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.modal_local .modal_local_popup,
.modal_lang .modal_lang_popup {
/*팝업*/
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #ffffff;
  border-radius: 0.375rem;
  width: 340px;
}
.modal_local .modal_local_popup > h3,
.modal_lang .modal_lang_popup > h3{
  font-size: 18px;
  font-weight: 700;
}
.modal_lang .modal_lang_popup > ul{
  padding: 15px 0;
}
.modal_lang .modal_lang_popup > ul > li{
  list-style: none;
  padding: 7px;
  margin: 10px 0;
  width: 100%;
  text-align: center;
  border: 1px solid #E6E7EB;
  color: #000;
  font-size: 14px;
  border-radius: 0.375rem;
  cursor: pointer;
}
.modal_lang .modal_lang_popup > ul > li.on{
  border: 1px solid #000;
  background-color: #f8f8f8;
}

.modal_lang .modal_lang_popup .close_lang_btn {
  position: absolute;
  display: block;
  border: none;
  border-radius: 0.375rem;
  color: #fff;
  cursor: pointer;
  background-color:#00000000;
  top: 10px;
  right: 10px;
}
.modal_lang .modal_lang_popup .close_lang_btn > img{
  width: 20px;
  height: 20px;
}


.modal_local .modal_local_popup > ul{
  padding: 15px 0;
}
.modal_local .modal_local_popup > ul > li{
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  border: 1px solid #E6E7EB;
  border-radius: 0.375rem;
  margin-bottom: 10px;
  height: 100px;
}
.modal_local .modal_local_popup > ul > li > span{
  font-size: 16px;
  color: #000;
  margin: 0 5px;
}
.modal_local .modal_local_popup > ul > li > p{
  font-size: 12px;
  margin-bottom: 0;
  border-left: 1px solid #E6E7EB;
  height: 100%;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.modal_local .modal_local_popup > ul > li > img{
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal_local .modal_local_popup > .close_local_btn{
  position: absolute;
  display: block;
  border: none;
  cursor: pointer;
  background-color:#00000000;
  top: 10px;
  right: 10px;
}
.modal_local .modal_local_popup > .close_local_btn > img{
  width: 20px;
  height: 20px;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #000;
  background-color: #F8F8F8;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

.footer .footer-about p {
  font-size: 12px;
}

.footer .social-links{
  justify-content: flex-end;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color:#000;
  margin-right: 20px;
  transition: 0.3s;
}

.footer .social-links a img{
  width: 30px;
}

.footer .social-links a:hover {
  color:#000;
  border-color: var(--accent-color);
}

.footer .h3 {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #000;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #000;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #000;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-btn {
  align-items: flex-end;
  justify-content: space-between;
}

.footer .footer-btn .btn-box{
  display: flex;
}
.footer .footer-btn .footer-button .btn-box button{
  margin-right: 15px;
  display: block;
  width: 150px;
  height: 40px;
  border: 1px solid #878787;
  background-color: #fff;
  border-radius: 10px;
  font-weight: 700;
}

/* @media (max-width: 768px) {
  .footer .footer-btn{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .footer-btn .footer-button .btn-box button{
    margin-right: 15px;
    display: block;
    width: 120px;
    height: 30px;
    border: 1px solid #878787;
    background-color: #fff;
    border-radius: 10px;
    font-size: 12px;
  }
} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #060606;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #FFB931;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
/* @media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
} */

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #060606;
  background-color: #fff;
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
  color: #060606;
}
.page-title .h1 {
  font-size: 24px;
  font-weight: 700;
  color: #060606;
}

.page-title .review{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.page-title .review button{
  display: block;
  width: 150px;
  height: 40px;
  border: 1px solid #441d1d;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s;
}
.page-title .review button:hover{
  background-color: #FFF2DA;
  border: 1px solid #FFB931;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li a{
  color: #060606;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color: #FFB931;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb,#060606, transparent 70%);
}

/* @media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }

  .page-title h1{
    margin-left: 8px;
  }
  .page-title .h1{
    margin-left: 8px;
  }
} */

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #fff;
  margin: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

/* @media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
} */

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}


.section-title p {
  margin-bottom: 0;
}

.carousel-inner {
  display: flex;
  overflow: visible;
  transition: transform 0.5s ease-in-out;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox에서 스크롤바 숨기기 */
}
.carousel-inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari에서 스크롤바 숨기기 */
}
.carousel-item {
  flex: 0 0 calc(100% / 2.5); /* 2.5개 표시되도록 조정 */
  padding: 10px;
  display: block;
  margin-right: 0;
  scroll-snap-align: start;
}
.carousel-indicators{
  margin-bottom: 5px;
}
.carousel-indicators li{
  display: none;
}
.carousel-indicators > button{
  background-color: #ffba3170;
  border: none;
  padding: 2px 10px;
  margin: 0 5px;
}
.carousel-indicators > button.active{
  background-color: #FFB931;
}

.review-title{
  display: flex;
  align-items: center;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.review-title > .review-title_p{
  font-size: 16px;
  margin-bottom: 0;
  color: var(--heading-color);
}

.review-title > .rate {
  display: inline-block;
  border: 0;
}
.review-title > .rate > input {display: none;}
.review-title > .rate > label {float: right; color: #ddd}
.review-title > .rate > label:before {
  display: inline-block;
  font-size: 1rem;
  padding: .3rem .2rem;
  margin: 0;
  cursor: pointer;
  font-family: FontAwesome;
  content: "\f005 ";}
.review-title > .rate .half:before {
  content: "\f089 "; 
  position: absolute;
  padding-right: 0;
}
.review-title > .rate input:checked ~ label, 
.review-title > .rate label:hover,.rate label:hover ~ label {color: #f73c32 !important;}

.review-title > .rate input:checked + .rate label:hover,
.review-title > .rate input input:checked ~ label:hover,
.review-title > .rate input:checked ~ .rate label:hover ~ label,  
.review-title > .rate label:hover ~ input:checked ~ label {color: #f73c32 !important;}

.review-date span{
  font-size: 12px;
  display: block;
}

.review-txt{
  margin-top: 10px;
  height: 60px;
}
.review-txt p{
  font-size: 14px;
  height: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* @media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc(100% / 1.8);
  }
}
@media (max-width: 502px) {
  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
  .carousel-item {
    flex: 0 0 calc(100% / 1.1);
  }
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

/* @media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
} */

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

/* @media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
} */

.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

/* @media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
} */

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-control-prev {
  justify-content: start;
}

/* @media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
} */

.hero .carousel-control-next {
  justify-content: end;
}

/* @media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
} */

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Main Banner
--------------------------------------------------------------*/
.main-banner{
  position: relative;
  min-height: 400px;
  background-image: url("../img/main_/main_banner.png");
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #FFDB4F;
  border-radius: 20px;
}
.main-banner .main-banner-text{
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 50px;
  font-family: 'Freesentation';
  color: #060606;
}
.main-banner .main-banner-text h2{
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -1px;
}
.main-banner .main-banner-text p{
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 30px;
}
.main-banner .main-banner-text span{
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  display: block;
  margin-bottom: 65px;
}
.main-banner .main-banner-text a{
  font-weight: 700;
  font-size: 14px;
  display: block;
  background-color: #ffffffc3;
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  color: #060606;
}
.main-banner .main-banner-text a:hover{
  background-color: #fff;
}

/* @media (max-width: 1199px) {
  .main-banner .main-banner-text{
    left: 8px;
    width: 93%;
  }
  .main-banner .main-banner-text h2{
    font-size: 24px;
  }
  .main-banner .main-banner-text p{
    font-size: 16px;
  }
  .main-banner .main-banner-text span{
    font-size: 12px;
  }
} */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 300px;
  display: block;
  padding: 60px 30px;
  text-align: left;
  transition: 0.3s;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: 100% 100%;
  color: #fff;
  overflow: hidden; /* 위아래 튀는 부분 자름 */

}

.services .service-item img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  opacity: 1; /* 필요시 조정 */
  pointer-events: none; /* 클릭 방지 */
  user-select: none;
}

.services .service-item.item1 {
  background-image: url("../img/main_/section1.png");
  background-color: #4E8BDC;
}
.services .service-item.item2 {
  background-image: url("../img/main_/section2.png");
  background-color: #E6A7C3;
}
.services .service-item.item3 {
  background-image: url("../img/main_/section3.png");
  background-color: #BEE3F2;
}

.services .service-item.item11{
  position: relative;
  overflow: hidden;
  background-color: #000; /* 공통 배경 */
  padding: 60px 30px;
  min-height: 250px;
  border-radius: 20px;
}
.services .service-item.item11 .service-img {
  position: absolute;
  bottom: 10%; /* background-position: 90% 대응 */
  left: 50%;
  transform: translateX(-50%);
  width: 22%; /* background-size: 30% 대응 */
  height: auto;
  pointer-events: none;
  user-select: none;
}


/* .services .service-item.item11 {
  background-image: url("../img/main_/item1.svg");
  background-color: #000;
  background-size: 30%;
  background-position: 50% 90%;
}
.services .service-item.item22 {
  background-image: url("../img/main_/item2.svg");
  background-color: #000;
  background-size: 30%;
  background-position: 50% 90%;
}
.services .service-item.item33 {
  background-image: url("../img/main_/item3.svg");
  background-color: #000;
  background-size: 30%;
  background-position: 50% 90%;
} */

.services .service-item > span{
  text-align: center;
  width: 100%;
  display: block;
  color: #fff;
  margin-bottom: 10px;
}

.services .service-item > h5{
  text-align: center;
  color: #fff;
}

.services .service-item > h3{
  color: #fff;
  text-align: center;
}

.services .service-item > .black{
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  top: 0;
  border-radius: 20px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item > div{
  position: absolute; 
  top: 20px;
  left: 20%;
  transform: translateX(-20%);
  color: #fff !important;
}
.services .service-item > div > span{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.services .service-item > div > h2{
  color: #fff;
}
.services .service-item > div > h2{
/* .services .service-item > div > h3{ */
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.services .service-item > div > p{
  font-size: 12px;
  font-weight: 300;
  width: 75%;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/

.step-wrap {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.step-container {
  display: flex;
  gap: 20px;
  will-change: transform;
  flex-wrap: wrap;
  justify-content: center;
}
.step-icon img {
  height: auto;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* @media (max-width: 1400px) {
  .step-wrap {
    overflow-x: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  .step-wrap::-webkit-scrollbar {
    display: none;
  }
  .step-container {
      animation: scrollLeft 20s linear infinite;
  }
} */

.steps .step-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s;
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  width: 18%;
}

.steps .step-icon .img-box {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  max-width: 90%;
  background-color: #FFF2DA;
  border-radius: 50%;
}

.steps .step-icon img{
  max-width: 70%;
  transition: all 0.3s;
}

.steps .step-icon h3{
  width: 100%;
}

.steps .step-icon p{
  font-size: 18px;
  font-weight: 600;
  word-break: break-word; /* 대부분 상황에서 적절 */
  text-align: center;
  width: 100%;
}
.steps .step-icon span{
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #9E9E9E;
}

.steps .step-icon:hover{
  border: 1px solid #E6E7EB;
}

.steps .step-icon:hover img {
  transform: scale(1.1);
}

/* @media (max-width: 1199px) {
  .section-title h2 {
    font-size: 24px;
  }
  .steps .step-icon p{
    font-size: 16px;
  }
  .steps .step-icon span{
    font-size: 12px;
  }

  .services .service-item.item11 .service-img {
  position: absolute;
  bottom: 15%;
  left: 70%;
  width: 40%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
  
  .services .service-item > span{
    display: none;
  }

  .services .service-item > h3{
    text-align: left;
    margin: 0;
    font-size: 22px;
    width: 200px;
  }
} */
/* @media (max-width: 500px){
  
  .services .service-item.item11,
  .services .service-item.item22,
  .services .service-item.item33 {
    display: flex;
    min-height: 50px;
  }

  .services .service-item.item11 .service-img {
    top: 50%;             
    right: 7%;           
    bottom: auto;         
    transform: translateY(-50%);
    width: 18%;          
  }
} */

/*--------------------------------------------------------------
# Store Section
--------------------------------------------------------------*/
.store-wrap {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.store-container {
  display: flex;
  gap: 20px;
  will-change: transform;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* @media (max-width: 1400px) {
  .store-wrap {
    overflow-x: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  .store-wrap::-webkit-scrollbar {
    display: none; 
  }
  .store-container {
      animation: scrollLeft 20s linear infinite;
  }
} */

.store .store-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 10px;
  width: 199.3px;
  height: 170px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.store .store-img > img {width: 100%;}

/* .store .store-img.store-img1{background-image: url("../img/main_/K-POP.png");}
.store .store-img.store-img2{background-image: url("../img/main_/K-Beauty.png");}
.store .store-img.store-img3{background-image: url("../img/main_/K-Fashion.png");}
.store .store-img.store-img4{background-image: url("../img/main_/K-Lifestyle.png");}
.store .store-img.store-img5{background-image: url("../img/main_/K-Comics.png");}
.store .store-img.store-img6{background-image: url("../img/main_/K-Marketplace.png");} */

.store .store-img .text-box{
  background-color: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
  border-radius: 0 0 5px 5px;
  text-align: center;
  height: 50px;
}
.store .store-img .text-box p{
  line-height: 45px;
  font-size: 14px;
  font-weight: 700;
}

.store .store-img .text-box

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}L

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.container-title{
  font-size: 32px;
  margin-bottom: 20px;
}
.container-title-exp{
  font-size: 16px;
  margin-bottom: 30px;
}

.pricing .pricing-item {
  background-color: #FFF;
  padding: 25px;
  height: 100%;
  border-radius: 0.375rem;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing .pricing-item h2 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 15px;
}

.pricing .pricing-item > span{
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.pricing .pricing-item h2 {
  color: #FFB931;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

/* .pricing .pricing-item h2 .yello_title {
  color: #FFB931;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
} */

.pricing .pricing-item h3 small {
  font-size: 16px;
  color: #000;
}
.pricing .pricing-item h3 {

  font-size: 16px;
  font-weight: 500;
}

.pricing .pricing-item h3.pricing_span {
  color: #000;

}

.pricing .pricing-item .description {
  font-size: 12px;
  margin-top: 5px;
}
.pricing .pricing-item .includes{
  background-color: #00000010;
  margin-top: 30px;
  padding: 5px;
  border-radius: 50px;
}

.pricing .pricing-item .cta-btn {
  border: 1px solid var(--default-color);
  color: #fff;
  background-color: #111;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 6px;
}

.pricing .pricing-item .cta-btn:hover {
  background: #FFB931;
  color: #000;
  border-color: #fff;
}

.pricing .pricing-item .ul {
  padding: 0;
  list-style: none;
  text-align: left;
  line-height: 20px;
}

.pricing .pricing-item .ul .li {
  /* padding: 7px 0; */
  display: flex;
  align-items: flex-start;
  color: var(--default-color);
}

.pricing .pricing-item .ul .li:last-child {
  padding-bottom: 0;
}

.pricing .pricing-item .ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing .pricing-item .ul .li > h3{
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
  .pricing .pricing-item h2 .wrap-line{
    width: 100%;
  }

/* @media (max-width: 1199px){
  
  .pricing .pricing-item h4 .wrap-line{
    width: 100%;
  }
}
@media (max-width: 992px) {
  .pricing .pricing-item h2 .wrap-line,
  .pricing .pricing-item h3 .wrap-line,
  .pricing .pricing-item h4 .wrap-line{
    width: auto;
  }
}

@media (max-width: 767px) {

}

@media (max-width: 420px) {

} */

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block; 
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}




/*--------------------------------------------------------------
# Mypage Section
--------------------------------------------------------------*/

section.mypage-top {
  margin: 30px 0;
}
.mypage-top .mypage-top-item-box{
  padding: 0;
  width: calc(100% - 16px);
  margin: 0 8px;
  display: flex;
  justify-content: space-between;
}
.mypage-top .mypage-top-item-box .mypage-top-item{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  border-radius: 10px;
  font-size: 12px;
  height: 45px;
  width: 24%;
  min-width: 220px;
  color: #fff;
}
.mypage-top .mypage-top-item-box .mypage-top-item > img{
  width: 30px;
  height: 30px;
}
.mypage-top .mypage-top-item-box .mypage-top-item > p{
  font-size: 18px;
  margin-bottom: 0;
  margin-left: 10px;
  font-weight: 500;
}
.mypage-top .mypage-top-item-box .mypage-top-item > span{
  font-size: 14px;
  margin-left: 10px;
  font-weight: 300;
}
.mypage-top .mypage-top-item-box .mypage-top-item > .img{
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.mypage-mid{
  padding: 0 8px;
}
.mypage-mid > ul.mypage-mid-tab{
  display: flex;
  /* justify-content: space-around;
  background-color: #f8f8f8; */
  border-bottom: 1px solid #111;
  /* padding: 8px 0; */
}

.mypage-mid > ul.mypage-mid-tab::-webkit-scrollbar{
  display:none;
}

.mypage-mid > ul.mypage-mid-tab > button{
  padding: 5px 15px;
  font-size: 16px;
  color: #999;
  border: none;
}
.mypage-mid > ul.mypage-mid-tab > button.active{
  border: none;
  border-bottom: 3px solid #111;
  color: #111;
  font-weight: 500;
}

.mypage-mid > ul.mypage-mid-tab > li > button{
  width: 100%;
  padding: 5px 13px;
  font-size: 16px;
  color: #999;
  border: none;
}
.mypage-mid > ul.mypage-mid-tab > li > button.active{
  border: none;
  border-bottom: 3px solid #111;
  color: #111;
  font-weight: 500;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content{
  margin: 30px 0;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > h1{
  font-size: 32px;
  margin-bottom: 20px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state{
  margin-bottom: 50px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul{
  list-style: none;
  display: flex;
  gap: 10px;
  padding-left: 0;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li{
  width: 150px;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > p{
  font-size: 16px;
  line-height: 1.2;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > h3{
  font-size: 28px;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .plus-btn{
  border-top: 1px solid #ccc;
  position: relative;
  margin-bottom: 50px;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .plus-btn > button{
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #fff;
  border-radius: 10px;
  background-color: #ccc;
  transition: all 0.3s;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .plus-btn > button.active{
  background-color: #111;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li{
  padding: 0;
  border: none;
  box-shadow: 0 0 8px #00000014;
  margin-bottom: 15px;
  border-radius: 10px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top{
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #dee2e6;
  padding: 15px 20px;
  align-items: center;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top > p{
  margin-bottom: 0;
  font-weight: 700;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top > span{
  font-size: 14px;
  padding: 3px 15px;
  background-color: #FFF2DA;
  border-radius: 15px;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-id{
  margin: 10px 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e7e7e7;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-id > p{
  margin-bottom: 0;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont{
  margin: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info{
  list-style: none;
  font-weight: 500;
  padding: 0;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li{
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  font-size: 14px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li > span{
  display: block;
  width: 65px;
  text-align: justify;
  margin-right: 15px;
  color: #a6a6a6;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li > p{
  margin-bottom: 0;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > div{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > div > button{
  background-color: #111;
  color: #fff;
  padding: 3px;
  width: 90px;
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 5px;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > div > button.inactive{
  background-color: #ccc;
  border: none;
  color: #252525;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > div > button.done{
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .order-info-paging{
  margin: 10px 0 40px;
  align-items: center;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .order-info-paging > span{
  padding: 0px 7px;
  margin: 5px;
  cursor: pointer;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .order-info-paging > span.active{
  background-color: #111;
  color: #fff;
  border-radius: 5px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .order-info-paging > span:hover{
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
}

/* @media (max-width: 1199px){
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > h2{
    font-size: 24px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > p{
    font-size: 12px;
    margin-bottom: 5px;
  }
  .mypage-mid > ul.mypage-mid-tab > li > button{
    font-size: 12px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top > p{
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top > span{
    font-size: 12px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-id > p{
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li{
    font-size: 12px;
  }
} */

.mypage-mid > .mypage-tab-content > .mypage-panel-content > h2{
  margin-bottom: 15px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > p{
  font-size: 16px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .list{
  display: flex;
  margin-top: 30px;
  padding-top: 20px;
  justify-content: space-between;
  flex-direction: column;
  border-top: 2px solid #E6E7EB;
  border-bottom: 2px solid #E6E7EB;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > h2{
  font-weight: 500;
  font-size: 24px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > ul{
  padding: 0;
  margin-left: 20px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > ul > li{
  margin: 10px 0;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > ul > li > h3{
  font-size: 16px;
  font-weight: 700;
  display: inline;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > h2{
  font-size: 24px;
  margin-top: 30px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp{
  padding: 0;
  margin: 20px 0 40px;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li{
  list-style: none;
  box-shadow: none;
  display: flex;
  margin: 20px 0;
  justify-content: space-between;   
} 
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > .step-exp-title{
  display: flex;
  align-items: center;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > .step-exp-title > span{
  font-size: 14px;
  background-color: #FFF2DA;
  padding: 3px 10px;
  border-radius: 50px;
  display: block;
  margin-right: 10px;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > .step-exp-title > h3{
  font-size: 18px;
  margin-bottom: 0;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > ol{
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 30px;
  list-style: disc;
}
.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > ol > li{
  margin-bottom: 10px;
  font-size: 16px;
}

.mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > img{
  width: 35%;
  border-radius: .375rem;
  box-shadow: 0 0 5px #00000010;
}

/* @media (max-width: 991px) {
  .mypage-top .mypage-top-item-box .mypage-top-item{
    flex: 0 0 auto;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > img{
    width: 20px;
    height: 20px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > p{
    font-size: 14px;
    margin-left: 5px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > span{
    font-size: 12px;                                                                                                                                                                                                                                                                
    margin-left: 5px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > .img{
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }
}
@media (max-width: 768px) {

  .page-title .review button {
    width: 120px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
  }

  .mypage-top .mypage-top-item-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    gap: 10px;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  
  .mypage-top-item-box::-webkit-scrollbar {
    display: none; 
  }

  .mypage-top .mypage-top-item-box .mypage-top-item{
    flex: 0 0 auto; 
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > img{
    width: 20px;
    height: 20px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > p{
    font-size: 14px;
    margin-left: 5px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > span{
    font-size: 12px;                                                                                                                                                                                                                                                                
    margin-left: 5px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > .img{
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }

  .mypage-mid > .mypage-tab-content > .mypage-panel-content > h2{
    font-size: 18px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li > p{
    text-overflow: ellipsis;
    width: 250px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > a{
    font-size: 14px;
    padding: 5px 10px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .order-info-paging > span{
    font-size: 14px;
  }

  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .list {
    flex-direction: column;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > ul > li{
    font-size: 14px;
    list-style: none;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > span{
    border-bottom: 2px solid #f8f8f8;
    padding-bottom: 10px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li {
    flex-direction: column;
    align-items: center;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > .step-exp-title > h5{
    font-size: 16px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > ol > li {
    margin-bottom:5px;
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > img {
    width: 95%;
  }

  .mypage-mid > ul.mypage-mid-tab > li > button {
    min-height: 65px;
    padding: 5px;
  }
}

@media (max-width: 500px){
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul{
    gap: 5px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li{
    padding: 5px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > p {
    font-size: 10px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > h3{
    font-size: 20px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li > p{
    width: 120px;
  }
} */



/* step css */
.step-title{
  color: #060606;
  background-color: #fff;
  padding: 10px 8px;
  position: relative;
  border-bottom: 1px solid #E6E7EB;
}
.step-title a{
  display: flex;
  align-items: center;
}
.step-title > a > img{
  height: 14px;
  margin-right: 8px;
}
.step-title > a > h3 {
  font-size: 16px;
  font-weight: 500;
  color: #060606;
  margin-bottom: 0;
}

.sub-container{
  width: 50%;
  /* min-width: 350px; */
  max-width: 800px;
  padding: 0;
  margin: 0 auto;
}

.sub-container > h3{
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E6E7EB;
}

.sub-mid > ul.sub-mid-tab{
  display: flex;
  justify-content: space-around;
  background-color: #f8f8f8;
  border-bottom: none;
  padding: 8px 0;
  margin-bottom: 10px;
}
.sub-mid > ul.sub-mid-tab > li{
  width: 48%;
  border-radius: 5px;
}
.sub-mid > ul.sub-mid-tab > li > button{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  color: #000;
}
.sub-mid > ul.sub-mid-tab > li > button.active{
  border: 1px solid #FFB931;
  border-radius: 5px;
  color: #FFB931;
}
.sub-mid > ul.sub-mid-tab > li > button:hover{
  border-radius: 5px;
}

.step-panel-content > ul > li.list-group-item{
  margin-bottom: 5px;
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  border-radius: var(--bs-border-radius);
  cursor: pointer;
}
.step-panel-content > ul > li.list-group-item.active{
  background-color: #FFF2DA;
  color: #000;
}

.step-panel-content > ul > li.list-group-item .sub-list{
  padding-left: 0;
}
.step-panel-content > ul > li.list-group-item .sub-list > li{
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 300;
}
.step-panel-content > ul > li.list-group-item .sub-list > li > p{
  margin-bottom: 0;
}
.step-panel-content > ul > li.list-group-item .sub-list > li.top{
  font-size: 16px;
  font-weight: 500;
}

.continue{
  margin-bottom: 40px;
}
.continue > .continue-btn{
  width: 100%;
  border: none;
  padding: 10px 0;
  border-radius: 0.375rem;
  transition: all 0.3s;
  color: #868686;
}
.continue > .continue-btn.active{
  background-color: #060606;
  color: #fff;
}
.continue > .continue-btn.active:hover{
  color: #FFB931;
}



.continue2{
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
}
.continue2 > .continue-btn2{
  width: 50%;
  border: none;
  margin: 5px;
  padding: 10px 0;
  border-radius: 0.375rem;
  transition: all 0.3s;
  color: #868686;
}

.continue2 > .before-btn{
  width: 50%;
  border: 1px solid #868686;
  margin: 5px;
  padding: 10px 0;
  background-color: transparent;
  border-radius: 0.375rem;
  transition: all 0.3s;
  color: black;
}
.continue2 > .continue-btn2.active{
  background-color: #060606;
  color: #fff;
}
.continue2 > .continue-btn2.active:hover{
  color: #FFB931;
}

.sub-container > .exp-text{
  background-color: #F8F8F8;
  padding: 10px 15px;
  border-radius: 0.375rem;
  margin-bottom: 10px;
}
.sub-container > .exp-text > span{
  font-size: 14px;
}

.sub-container .input-cont{
  list-style: none;
  padding: 0;
}
.sub-container .input-cont .input-box{
  margin-bottom: 25px;
}
.sub-container .input-cont .input-box > label{
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
.sub-container .input-cont .input-box > div{
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}

.sub-container .input-cont .input-box > button.custom-select{
  display: flex;
  width: 100%;
  border: none;
  padding-left: 0;
  background-color: transparent;
  border-bottom: 1px solid #E6E7EB;
  justify-content: space-between;
  align-items: flex-end;
}
.sub-container .input-cont .input-box > div > input{
  border: none;
  border-bottom: 1px solid #E6E7EB;
  margin-right: 10px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  height: 35px;
}
.sub-container .input-cont .input-box > div > input[type="radio"]{
  width: 24px;
  height: 24px;
  margin: 0;
}
.sub-container .input-cont .input-box > .form-check{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  align-items: center;
}
.sub-container .input-cont .input-box > .form-check .option-box {
  cursor: pointer;
  width: calc(100% - 35px);
}
.sub-container .input-cont .input-box > .form-check .option-box:hover {
  border-color: #999;
}
.form-check{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 0px;
}
.form-check > input[type="radio"]{
  width: 24px;
  height: 24px;
  margin: 0;
}
.form-check .option-box {
  cursor: pointer;
  width: calc(100% - 35px);
  margin-left: 10px;
}
.form-check .option-box:hover {
  border-color: #999;
}

.form-check .option-box > span{
  font-size: 12px;
  display: block;
}

.form-check-input{
  --bs-form-check-bg: #f5f5f5;
}
#noAccountContent > .card{
  --bs-card-border-color: #ccc;
  --bs-card-border-width: none;
  --bs-card-border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
  background-color: #f5f5f5;
}
#hasAccountContent > .card{
  --bs-card-border-color: #ccc;
  --bs-card-border-width: none;
  --bs-card-border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
}
#hasAccountContent > .card .input-box{
  list-style: none;
  margin-bottom: 25px;
}
#hasAccountContent > .card .input-box > label {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
#hasAccountContent > .card .input-box > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}
#hasAccountContent > .card .input-box > div > input {
  border: none;
  border-bottom: 1px solid #E6E7EB;
  margin-right: 10px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  height: 35px;
}
#hasAccountContent > .card .input-box > div > input::placeholder{
  font-weight: 300;
}

.sub-container .input-cont .input-box > div > input::placeholder{
  font-weight: 300;
}
.sub-container .input-cont .input-box > div > p{
  margin-bottom: 0;
}
.sub-container .input-cont .input-box > div > button{
  font-size: 12px;
  line-height: 1;
  padding: 5px;
  border-radius: 0.375rem;
  border: none;
  background-color: #060606;
  color: #fff;
  height: 35px;
}
.sub-container .input-cont .input-box > .level-btn-box > button{
  width: 32%;
  font-size: 14px;
  background-color: #f5f5f5;
  color: #111;
}
.sub-container .input-cont .input-box > .level-btn-box > button.active{
  background-color: #fff;
  border: 1.5px solid #111;
}

.sub-container .input-cont .input-box > select{
  display: block;
  width: 100%;
  margin-bottom: 10px;
  height: 35px;
  border: none;
  border-bottom: 1px solid #E6E7EB;
  font-size: 14px;
}

.sub-container .input-cont .input-box > .bank-search{
  display: block;
}
.sub-container .input-cont .input-box > .bank-search > .text{
  font-size: 12px;
  background-color: #f8f8f8;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 0.375rem;
  border: 1px solid #059652;
}
.sub-container .input-cont .input-box > .bank-search > .text > p{
  margin-bottom: 10px;
}

.sub-container .input-cont span.warning{
  font-size: 12px;
  color: #df1529;
  line-height: 1.5;
  display: block;
  margin-top: 5px;
}
span.warning{
  font-size: 12px;
  color: #df1529;
  line-height: 1.5;
  display: block;
  margin-top: 5px;
}

.sub-container .input-cont .input-box > div .cate{
  display: flex;
  align-items: center;
  background-color: #FFF2DA;
  margin-right: 10px;
  padding: 3px 10px;
  border-radius: 50px;
}
.sub-container .input-cont .input-box > div .cate > span{
  font-size: 12px;
  font-weight: 700;
  margin-right: 5px;
}
.sub-container .input-cont .input-box > div .cate > img{
  width: 10px;
  cursor: pointer;                                                                                                                                                                                              
}

.sub-container .input-cont .input-box > textarea{
  display: block;
  width: 100%;
  min-height: 100px;
  font-size: 14px;
  border: 1px solid #E6E7EB;
}

.sub-container .input-cont .input-box > ol{
  list-style: none;
  padding: 5px 0;
  border-top: 2px solid #E6E7EB;
  border-bottom: 2px solid #E6E7EB;
}
.sub-container .input-cont .input-box > ol > li{
  display: flex;
  font-size: 14px;
  align-items: center;
  margin: 10px 0;
}
.sub-container .input-cont .input-box > ol > li > span{
  width: 120px;
  color: #a6a6a6;
}
.sub-container .input-cont .input-box > ol > li > p{
  margin-bottom: 0;
  max-width: calc(100% - 120px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.sub-container .input-cont .input-box > ol > li.product > .product-number{
  background-color: #ccc; 
  height: 100px;
  width: 100px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-container .input-cont .input-box > ol > li.product > .txt-box{
  display: flex;
  flex-direction: column;
  min-height: 100px;
  justify-content: space-around;
}
.sub-container .input-cont .input-box > ol > li.product > .txt-box > a{
  display: block;
  line-height: 1;
  font-size: 14px;
  color: #000;
}
.sub-container .input-cont .input-box > ol > li.product > .txt-box > span{
  display: block;
  font-size: 14px;
  color: #ccc;
}

select.country{
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  color: #777;
  border: none;
  font-weight: 300;
  border-bottom: 1px solid #ccc;
}

.sub-container .input-cont .input-box > table{
  border-top: 2px solid #E6E7EB;
  border-bottom: 2px solid #E6E7EB;
  width: 100%;
}
.sub-container .input-cont .input-box > table > tbody > tr{
  font-size: 14px;
}
.sub-container .input-cont .input-box > table > tbody > tr.total{
  font-weight: 700;
}
.sub-container .input-cont .input-box > table > tbody > tr > th{
  width: 36%;
  padding: 10px 0;
}
.sub-container .input-cont .input-box > table > tbody > tr > td{
  padding: 5px 0;
}

/* @media (max-width: 1200px){
  .sub-container{ 
    width: 80%;
  }
}

@media (max-width: 500px){
  .sub-container{
    min-width: 340px;
  }
} */

/* popup */
.popup{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #00000050;
  z-index: 999;
}
.popup .popup-cont{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 80%;
  min-width: 340px;
  height: 70vh;
  min-height: 500px;
  border-radius: 0.375rem;
}

.popup .popup-cont .close{
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
}


.popup .popup-cont .close > img{
  height: 15px;
}


.popup .popup-cont > h3{
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

.popup .popup-cont > .bank-list{
  padding: 10px;
  height: calc(100% - 60px);
    overflow-y: scroll;
}
.popup .popup-cont > .bank-list > li{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  padding: 5px 0;
  border-bottom: 0.5px solid #fff;
  transition: all 0.3s;
  cursor: pointer;
}
.popup .popup-cont > .bank-list > li:hover{
  border-bottom: 0.5px solid #ccc;
}
.popup .popup-cont > .bank-list > li > span{
  font-size: 14px;
  padding: 2px 5px;
  background-color: #f8f8f8;
  border-radius: 50px;
}
.popup .popup-cont > .bank-list > li > .bank-img{
  display: flex;
}
.popup .popup-cont > .bank-list > li > .bank-img > img{
  height: 24px;
  margin-right: 5px;
}
.popup .popup-cont > .bank-list > li > .bank-img > p{
  margin-bottom: 0;
  font-size: 14px;
  display: block;
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* International Shipping */

.InterS-panel > div.I-title{
  margin-bottom: 15px;
  border-top: none;
  padding: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.InterS-panel > div.I-title > h1{
  font-size: 28px;
  width: 100%;
  text-align: left;
}
.InterS-panel > div.I-title .button{
  margin: 10px 5px;
  border: none;
  border-radius: 50px;
  padding: 7px 25px;
  font-size: 14px;
  width: 220px;
}

.mypage-mid > .mypage-tab-content > .InterS-panel > p{
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 30px;
}

.InterS-panel > ul{
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.mypage-mid > .mypage-tab-content > .InterS-panel > ul > li{
  list-style: none;
  box-shadow: none;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.InterS-panel > ul > li > img{
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px 50px;
  border-radius: 10px;
}
.InterS-panel > ul > li > h3{
  font-size: 20px;
  margin: 10px 0;
}
.InterS-panel > ul > li > span{
  font-size: 13px;
  color: #000;
  text-align: center;
  display: block;
}
.InterS-panel > ul.k-product > li > span{
  text-align: left;
}

.mypage-mid > .mypage-tab-content > .InterS-panel > ol.text-list{
  list-style: disc;
  padding-left: 20px;
}
.mypage-mid > .mypage-tab-content > .InterS-panel > ol.text-list > li{
  margin-bottom:  15px;
}
.mypage-mid > .mypage-tab-content > .InterS-panel > ol.text-list > li > h3{
  font-size: 16px;
  font-weight: 700;
}

.InterS-panel > div{
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: 1px solid #00000023;
}

.InterS-panel > div > div{
  display: flex;
  width: 40%;
  flex-direction: column;
}
.InterS-panel > div > div > .r-text{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.InterS-panel > div > .l-list{
  padding: 0;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.InterS-panel > div > .l-list > li{
  list-style: none;
  width: 22%;
  margin: 5px;
  border: 1px dashed #ffffff00;
  border-radius: 5px;
  transition: all 0.3s;
}
.InterS-panel > div > .l-list > li:hover{
  border: 1px dashed #ccc;
}
.InterS-panel > div > .l-list > li > a{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}
.InterS-panel > div > .l-list > li > a > img{
  width: 80%;
}
.InterS-panel > div > .l-list > li > a > p{
  color: #000;
  margin-bottom: 0;
  font-size: 12px;
}

.InterS-panel > div > .l-text{
  width: 60%;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
}
.InterS-panel > div > .l-text > p{
  font-size: 14px;
}

/* @media (max-width: 991px){
  .InterS-panel > div {
    flex-direction: column;
  }
  .InterS-panel > div > div {
    width: 100%;
  }
  .InterS-panel > div > .r-text {
    width: 100%;
  }
  .InterS-panel > div > .l-list {
    width: 100%;
  }
  .InterS-panel > div > .l-text {
    width: 100%;
  }
}

@media (max-width: 502px){
  .InterS-panel > ul {
    flex-direction: column;
  }
  .mypage-mid > .mypage-tab-content > .InterS-panel > ul > li {
    width: 100%;
  }
  .InterS-panel > ul > li > img {
    width: 70%;
  }
} */

/* Shipping-Destinations */
.Shipping-Destinations h1{
  font-size: 28px;
  margin-bottom: 15px;
}
.Shipping-Destinations p{
  font-size: 16px;
  margin-bottom: 30px;
}
.Shipping-Destinations h2{
  font-size: 24px;
  margin-bottom: 15px;
}
.Shipping-Destinations h3{
  font-size: 16px;
  font-weight: 700;
}

.Shipping-Destinations li{
  margin-bottom: 15px;
}
.Shipping-Destinations ul.kor-to{
  list-style: none;
  padding: 0;
  justify-content: space-between;
}
.Shipping-Destinations ul.kor-to li{
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin: 15px 0;
  width: 30%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.Shipping-Destinations ul.kor-to li > h3{
  display: flex;
  align-items: center;
  height: 40px;
}
.Shipping-Destinations ul.kor-to li > h3 > p{
  background-color: #fff;
  padding: 5px 10px;
  margin-bottom: 0;
  margin-right: 10px;
  border-radius: 50%;
}
.Shipping-Destinations ul.kor-to li > span{
  text-align: center;
  display: block;
  margin-bottom: 60px;
}
.Shipping-Destinations ul.kor-to li > a{
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  padding: 7px 25px;
  font-size: 14px;
  background-color: #111;
  color: #fff;
  width: 90%;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 5%;
}

/* @media (max-width: 991px){
  .Shipping-Destinations ul.kor-to li > h3{
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 768px){
  .Shipping-Destinations ul.kor-to{
    flex-direction: column;
  }
  .Shipping-Destinations ul.kor-to li{
    width: 100%;
  }
  .Shipping-Destinations ul.kor-to li > h3{
    height: 30px;
    font-size: 16px;
    margin-bottom: 10px;
  }
} */


/* country-item-div */
.country-item-div{
  justify-content: space-between;
}
.country-select-button {
  background-color: #111;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 49%;
  height: 100%;
}
.country-item-box {
  border: 2px dashed #ccc;
  padding: 20px;
  border-radius: 10px;
  width: 49%;
  height: 600px;
  overflow-y: auto;
  box-sizing: border-box;
}
.country-placeholder {
  text-align: center;
  height: 100%;
  display: flex;
  color: #666;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.country-placeholder img {
  width: 60px;
  opacity: 0.4;
  margin-bottom: 10px;
}
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.country-modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  min-width: 300px;
  z-index: 1001;
  position: relative;
  display: block;
  width: 90%;
  max-width: 500px;
  height: 600px;
}
.country-modal h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.country-modal > .search-mode{
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f5f5f5;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.country-modal > .search-mode > input{
  width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding: 5px;
}

.country-list{
  overflow-y: scroll;
  height: 465px;
}
.country-list span{
  display: block;
  margin-top: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.country-list button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: #f0f0f0;
  margin-top: 5px;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
}

#itemList{
  padding-left: 15px;
  list-style:disc
}

#itemList li {
  margin-bottom: 5px;
  padding: 5px;
  border-bottom: 1px solid #ccc;
}

.country-modal .close_country_btn {
  position: absolute;
  display: block;
  border: none;
  border-radius: 0.375rem;
  color: #fff;
  cursor: pointer;
  background-color:#00000000;
  top: 10px;
  right: 10px;
}
.country-modal .close_country_btn > img{
  width: 20px;
  height: 20px;
}

#country{
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  background-color: #111;
  border: none;
  color: #fff;
}

/* @media (max-width: 768px){
  .country-item-div{
    flex-direction: column;
  }
  .country-select-button{
    width: 100%;
    margin-bottom: 5px;
  }
  .country-item-box{
    width: 100%;
  }
} */


/* calculate */
.form-section, .result-section {
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 20px;
  width: 400px;
}
.form-section input, .form-section select {
  width: 100%;
  padding: 5px 10px;
  margin: 10px 0;
}

.form-section input{
  border: none;
  border-bottom: 1px solid #ccc;
}

.form-section p{
  margin-bottom: 0;
}
.form-section .h3{
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 18px;
}
.form-section select{
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  color: #777;
  border: none;
  border-bottom: 1px solid #ccc;
}

.form-section span{
  margin-bottom: 15px;
  font-size: 14px;
}

.dimensions {
  display: flex;
  gap: 10px;
}
.dimensions input {
  flex: 1;
}
.calculate-button {
  background: #ccc;
  color: #000;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
}
.calculate-button.active {
  background: #111;
  color: #fff;
  cursor: pointer;
  pointer-events: all;
}
.info-list {
  margin-top: 20px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-size: 14px;
  border-radius: 10px;
}
.info-list h3{
  margin-top: 0;
}
.info-list ul{
  margin-bottom: 0;
}

.result-section{
  padding: 20px;
  margin: 20px;
  border: 1px solid #ccc;
}

.result-section button{
  background: #000;
  align-items: center;
  justify-content: center;
  background-color: #111;
  border-radius: 10px;
  font-size: 16px;
  height: 45px;
  color: #fff;
}
.image-placeholder {
  width: 150px;
  height: 100px;
  margin: 150px auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.pending {
  text-align: center;
  color: gray;
}
.rate-box {
  background: #f2f2f2;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}
.rate-box span{
  display: block;
}
.rate-price {
  font-weight: bold;
  margin-top: 35px;
  font-size: 21px;
}

/* @media (max-width: 991px) {
  #resultBox{
    width: calc(100% - 40px);
  }
  .image-placeholder {
    margin: 60px auto 20px;
  }
} */

.mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product > li{
  width: 22%;
}
.k-product > li > div{
  width: 100%;
  box-shadow: 0 0 5px #00000014;
  border-radius: 10px;
}

.k-product > li > div > .img {
    /* background-color: #ccc; */
    cursor: pointer;
    height: 120px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;

  display: flex;
  align-items: center; /* 세로 중앙 정렬 */
  justify-content: center; /* 필요 시 가로 중앙도 같이 정렬 */

}
.k-product > li > div > .img > a{
  display: block;
  /* width: 100%;
  height: 100%; */
}
.k-product > li > div > .img > a > img {
    max-height: 100%; 
    max-width: 100%;  
  /* height: 100%; 
    position: absolute;
    object-fit: cover; */
    border-radius: 10px 10px 0 0;
    /* left: 50%;
    top: 0%; 
    transform: translateX(-50%); */
}

.k-product > li > div > h3{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}
.k-product > li > span{
  margin-top: 10px;
  text-align-last: left;
}
/* @media (max-width: 991px) {
  .k-product > li > div > .img > img {top: 13%;}
}

@media (max-width: 768px) {
  .mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product{
    flex-wrap: wrap;
    flex-direction: row;
  }
  .mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product > li {
    width: 48%;
    margin-bottom: 20px;
  }
  .k-product > li > div > .img { height: 100px; }
  .k-product > li > div > .img > img {top: 0%;}
} */


.k-product > li > div > .img > img {
    max-height: 100%; 
    max-width: 100%;
    /* position: absolute;
    object-fit: cover; */
    border-radius: 10px 10px 0 0;
    /* left: 50%;
    top: 0%; 
    transform: translateX(-50%); */
}

/* store-detail */
.store-detail{
  flex-direction: column;
  align-items: flex-start;
  margin-left: 20px;
  margin-bottom: 0px;
  justify-content: space-between;
}
.store-detail > p{
  margin-bottom: 0px;
}

/* notice */
.notice-tab .nav-link {
  cursor: pointer;
}
.notice-tab-content {
  margin-top: 20px;
}
.notice-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.accordion-button{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.accordion-button p{
  margin-bottom: 0;
  max-width: 800px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accordion-button p.date{
  position: absolute;
  right: 60px;
}

.accordion-button:not(.collapsed){
  background-color: #fff;
}

.accordion-item{
  border: none;
  border-bottom: 1px solid #ccc;
}
.accordion-item:last-child{
  border-bottom: none;
}

.accordion-body{
  background-color: #f5f5f5;
}
.page-item:first-child .page-link{
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.page-item:last-child .page-link {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.page-link{
  border: none;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  color: #000;
}

.active>.page-link, .page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #111;
  border-color: #111;
}

/* @media (max-width: 1200px) {
  .accordion-button p{
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .accordion-button p{
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .accordion-button {
    font-size: 14px;
  }

  .accordion-button p{
    max-width: 270px;
  }
}

@media (max-width: 500px) {
  .accordion-button p{
    max-width: 180px;
  }
} */

/* support */
.support-category-btn{
  border-radius: 5px;
  margin-right: 10px;
  background-color: #fff;
  color: #ccc;
  border: 1px solid #ccc;
  height: 40px;
  padding: 0 10px;
}
.support-category-btn.active{
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
}
.support-category-search{
  border: 1px solid #ccc;
  height: 40px;
  display: flex;
  border-radius: 5px;
}
.support-category-search > input{
  border: none;
}

.order-info-paging > span{
  padding: 5px 12px;
  margin: 5px;
  cursor: pointer;
}
.order-info-paging > span.active{
  background-color: #111;
  color: #fff;
  border-radius: 5px;
}
.order-info-paging > span:hover{
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
}

.inquiry-send-btn{
  border-radius: 5px;
  color: #fff;
  background-color: #111;
}
.inquiry-send-btn:hover{
  border: 1px solid #111;
}

.inquiry-img{
  width: 100px;
  height: 100px; 
  background: #eaeaea; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 0.8rem;
}

.answered{
  border: 1px solid #111;
  color: #111;
  background-color: #fff;
  border-radius: 50px;
  font-size: 12px;
  padding: 2px 7px;
}
.awaiting{
  border: 1px solid #ccc;
  color: #ccc;
  background-color: #f5f5f5;
  border-radius: 50px;
  font-size: 12px;
  padding: 2px 7px;
}

.text-truncate {
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.answer-box{
  background-color: #fff;
  padding: 10px;
}

.answer-title{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.answer-title > span{
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #111;
}
.answer-title > p{
  margin-bottom: 0;
  margin-left: 5px;
}
.answer-cont{
  margin-top: 10px;
}

.accordion-button:not(.collapsed) .preview-text {
  display: none;
}

.inquiry-send-category{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}
.inquiry-send-category li{
  width: 32%;
  margin: 5px 0;
}
.inquiry-send-category li button{
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
  padding: 3px;
  border: 1px solid #ccc;
  background-color: #fff;
}
.inquiry-send-category li button.active{
  background-color: #f0f0f0;
  border: 1px solid #111;
}

#thumbnailContainer{
  justify-content: flex-start;
  flex-wrap: wrap;
}

.upload-tile {
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 10px;
}

.upload-box {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  font-size: 2rem;
  color: #666;
}

.thumbnail-tile {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  margin-top: 10px;
}

.thumbnail-box {
  width: 100%;
  height: 100%;
  background-color: #d7e9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  text-align: center;
  color: #333;
}

.remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.remove-btn:hover {
  background-color: #bb2d3b;
}

.inquiry-btn-box{
  border-top: 1px solid #ccc;
  padding: 25px 0 30px;
  display: flex;
  justify-content: center;
}
.inquiry-btn-box > button{
  border-radius: 5px;
  border: none;
  padding: 5px 20px;
}
.inquiry-btn-box > .cancle-btn{
  margin-right: 20px;
}
.inquiry-btn-box > .send-btn{
  background-color: #111;
  color: #fff;
}

button.active_btn{
  background-color: #111;
  color: #fff;
  border-color:#000;
}
button.active_btn:disabled{
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
  color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
  border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
}
button.active_btn:hover{

  border-color:#000;
}

/* @media (max-width: 768px) {
  .support-category-btn{
    margin-top: 5px;
    font-size: 14px;
    height: 30px;
  }
  .support-category-search{
    width: 100%;
    margin-top: 15px;
  }
} */


/* detailpopup */
.status-badge{
  border-radius: 50px;
  background-color: #fff;
  font-size: 14px;
  padding: 0 15px;
}

.popup-section{
  padding: 10px;
  margin-bottom: 10px;
}
.popup-section > p{
  border-bottom: 1px solid #ccc;
}

.popup-section > div{
  flex-wrap: wrap;
}
.popup-section > div > div > img{
  object-fit: contain;
}

.popup-table td{
  font-size: 14px;
  text-align: right;
}
.popup-table td:first-child,
.popup-table th:first-child{
  text-align: left;
}
.popup-table th{
  font-size: 14px;
  text-align: right;
}

.total-summary{
  border-radius: 5px;
  background-color: #111;
  color: #fff;
  padding: 5px;
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.popup-product-list{
  list-style: none;
  padding: 0;
}
.popup-product-list > li{
  display: flex;
  align-items: center;
  margin: 10px 0 15px;
}
.popup-product-list > li > div.product-num{
  background-color: #ccc; 
  height: 60px;
  width: 60px;
  margin-right: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-product-list > li > .prod-txt{
  display: flex;
  flex-direction: column;
}
.popup-product-list > li > .prod-txt > a{
  display: block;
  line-height: 1;
  font-size: 12px;
  color: #000;
}
.popup-product-list > li > .prod-txt > span{
  display: block;
  font-size: 12px;
  color: #ccc;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
    justify-content: center;
}


/* step css */
.step-exp{
  padding: 20px;
  color: #555;
  /* background-color: #f5f5f5; */
}
.sub-container .input-cont .input-box > div > input.input-submit{
  width: 150px;
  border-radius: 5px;
  margin: 0;
  transition: all 0.3s;
  
  color: #868686;
  color: #868686;
  font-weight: 500;
}



.sub-container .input-cont .input-box > div > input.input-submit.active{
  background-color: #060606;
  color: #fff;
}
.sub-container .input-cont .input-box > div > input.input-submit.active:hover{
  color: #FFB931;
}





.sub-container .input-cont .input-box > div > input.input-edit{
  margin-left: 5px;
  width: 150px;
  border-radius: 5px;
  margin: 0;
  color: #fff;
  background-color: #111;
  font-weight: 500;
  transition: all 0.3s;
}

.sub-container .input-cont .input-box > div > input.input-edit:hover{
  color: #FFB931;
}


.btn-selected {
  background-color: #111;
  color: white;
  border-color: #111;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 500px;
  max-height: 650px;
  overflow-y: scroll;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  -ms-overflow-style: none;
}
.modal-content::-webkit-scrollbar{
  display:none;
}

.modal-content > h2{
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

.modal-xl .modal-content {
  max-width: none !important;
  max-height: none !important;
}


.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.button-grid button {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}

.button-grid button:hover {
  background-color: #f0f0f0;
}

.modal-save button {
  margin-top: 20px;
  background-color: #111;
  color: #fff;
  border: 1.5px solid #111;
}
.modal-save button:hover{
  border: 1.5px solid #111;
  color: #111;
}

.category > h4{
  font-size: 16px;
  margin-top: 20px;
}
.product-type > h4{
  font-size: 16px;
  margin-top: 20px;
}
.product-type > p{
  font-size: 14px;
  color: #252525;
}

.choose-button{
  display: block;
  width: 100%;
  padding: 10px 0;
  border-radius: 0.375rem;
  background-color: #111;
  color: #fff;
}

.sub-container .input-cont .input-box > .Payment-Purpose-box{
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.Payment-Purpose-box > ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
}
.Payment-Purpose-box > ul > li{
  padding: 2px 15px;
  border-radius: 50px;
  background-color: #ffaa00;
  color: #000;
  margin-right: 10px;
}
.Payment-Purpose-box > ul > a{
  color: #000;
  margin-bottom: 20px;
}
.Payment-Purpose-box > ul > span{
  font-size: 14px;
  color: #555;
}

.Payment-Purpose-box > div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.Payment-Purpose-box > div > button{
  width: 49%;
  border-radius: 5px;
}

.Payment-Purpose-box > div > button:first-child{
  background-color: #111;
  color: #fff;
}
.Payment-Purpose-box > div > button:last-child{
  background-color: #f5f5f5;
  color: #111;
  border: 1px solid #f5f5f5;
}

.Payment-Purpose-box > h5{
  font-size: 16px;
  text-align: left;
  width: 100%;
}

.Payment-Purpose-box .count-box{
  width: 100%;
}

.Payment-Purpose-box .item-list{
  border-top: 1px solid #ccc;
  width: 100%;
  padding-top: 15px;
}
.Payment-Purpose-box .item-list > p{
  font-size: 14px;
}

/* 20250604 이후 css */ 

/* 92, 93 */
.modal-content > ul{
  list-style: none;
  padding: 0;
}

.modal-content > ul > li{
  display: flex;
  flex-direction: column;
}
.modal-content > ul > li > label{
  margin: 20px 0 8px;
  color: #111;
  font-weight: 500;
}
.modal-content > ul > li > input{
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  height: 35px;
}
.modal-content > ul > li > .btn{
  background-color: #111;
  color: #fff;
  font-size: 14px;
  border: 1.5px solid #111;
}

.modal-content > ul > li.option{
  flex-direction: row;
  flex-wrap: wrap;
}
.modal-content > ul > li.option > div.option-input{
  width: 75%;
  display: flex;
  flex-direction: column;
}
.modal-content > ul > li.option > div.option-input > input{
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  height: 35px;
}
.modal-content > ul > li.option > div{
  width: 25%;
  display: flex;
  flex-direction: column;
}
.modal-content > ul > li.option > div > label{
  margin: 20px 0 8px;
  color: #111;
  font-weight: 500;
}
.modal-content > ul > li.btn-box{
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}
.modal-content > ul > li.btn-box > button.btn{
  width: 49%;
  background-color: #111;
  color: #fff;
  font-size: 14px;
}
.modal-content > ul > li.btn-box > button.delete-btn{
  background-color: #ccc;
  border: 1px solid #ccc;
}

/*수치 table */
.table-wrapper {
  overflow-x: auto;
  width: 100%;
  
  /* 스크롤바 숨기기 */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE 10+ */
}
.table-wrapper::-webkit-scrollbar {
  display: none;                /* Chrome, Safari, Opera */
}
.sticky-table {
  /* min-width: 800px; */
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 5px;
}
.sticky-table th,
.sticky-table td {
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  border-width: 1px;
}
.sticky-col {
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 1;
}
.sticky-table thead .sticky-col {
  z-index: 2; /* 헤더가 셀보다 위에 오도록 */
  background-color: #f8f9fa; /* 테이블 헤더 배경색 */
}

.sticky-table span{
  font-size: 14px;
}


/* 리뷰 모달 */
.star-rating {
  position: relative;
  display: inline-block;
  font-size: 3.5rem; /* 별 크기 */
  direction: ltr;
  unicode-bidi: bidi-override;
  width: calc(3.5rem * 5); /* 별 5개 너비 */
  height: 3.5rem;
  user-select: none;
}
.star-rating .star {
  color: #ccc;
  display: flex;
  pointer-events: none;
}
.star-rating .star span {
  flex: 1;
  text-align: center;
}
.star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  color: gold;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}

.product-type > div.review > button{
  width: 30%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #555;
}
.product-type > div.review > button.active{
  background-color: #f5f5f5;
  color: #000;
  border: 1px solid #111;
}
/* 랜딩페이지 how it works */
.works-title{
  font-size: 32px;
  margin: 40px 0;
}
.works-ul{
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}
.works-ul > .works-list{
  display: flex;
  border-radius: 10px;
  margin: 30px 0;
  padding: 25px 35px;
  background-color: #f5f5f5;
}
.works-ul > .works-list > .works-img{
  width: 100px;
  height: 100px;
  margin-right: 20px;
  flex: 0 0 100px; /* flex-grow: 0; flex-shrink: 0; flex-basis: 100px */
  object-fit: cover; /* or 'contain' if you want padding instead of crop */
}
.works-ul > .works-list > .works-img > img{
  width: 100%;
  height: 100%;
}
.works-ul > .works-list > .works-text > h2{
  font-weight: 500;
  font-size: 24px;
}
.works-ul > .works-list > .works-text > h3{
  font-size: 16px;
  font-weight: 300;
}

/* @media (max-width: 768px){
  .works-ul > .works-list > .works-text > h2{
    font-size: 20px;
  }
  .works-ul > .works-list > .works-text > h3{
    font-size: 14px;
  }
  .works-ul > .works-list{
    padding: 25px;
  }
} */




.popup-event {
  width: 340px;
  background-image: url(../img/popup/popup.png);
  background-position: 80% 60%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 20px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-height: 660px){
  .popup-event{
    top: 80%;
  }
}

.popup-event .close-btn {
  width: auto;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}
.reopen-btn {
  display: none;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999998;
  background: linear-gradient(to right, #FFC107, #7ecbff);
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  width: 340px;
}
.gift-option {
  background: white;
  color: black;
  border-radius: 10px;
  padding: 12px;
  margin: 6px 0;
}
.yellow-box {
  color: #ffdc3f;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.lang-select {
  background: white;
  color: black;
  border-radius: 5px;
  border: none;
  padding: 4px 8px;
  font-size: 14px;
}

.event-title{
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.event-date > img{
  height: 20px;
  margin: 5px;
}
.event-title > img{
  height: 24px;
  margin: 5px;
}
.event-date{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 10px;
  background-color: #ffffffa2;
  margin: 10px 0;
  padding: 5px;
  font-size: 14px;
  font-weight: 700;
}

.gift-box{
  border-radius: 10px;
  text-align: center;
  background-color: #ffffff;
}
.gift-box strong img{
  height: 20px;
}
.gift-box > div > div{
  font-size: 12px;
  line-height: 1.1;
  font-weight: 500;
}
.gift-box > div > div > img{
  height: 60px;
  background-color: #111;
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
}

.event-guide{
  background-color: #7ecbffc8;
  color: #111;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-guide > strong{
  display: flex;
  align-items: center;
}
.event-guide > strong > img{
  height: 20px;
  margin-left: 5px;
}
.event-guide > ul{
  padding: 10px 0;
}

.event-btn > button{
  background: linear-gradient(to right, #FFC107, #7ecbff);
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  border-radius: 10px;
}

.more-btn > button{
  background-color: #ccc;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  border-radius: 10px;
}

.event-btn > button > img{
  height: 24px;
  margin-left: 5px;
}

.event-hide{
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
.event-hide > label{
  font-size: 12px;
  margin-left: 5px;
}

.order-info-paging > button.btn{
  padding: 0 7px;
}

.close-btn{
  width: 150px;
  border-radius: 5px;
  border: none;
  background: #111;
  color: #fff;
  padding: 4px 0;
}

/*모달 타이틀 중앙정렬 신경쓰임*/
.modal-header .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}


.mypage-mid > ul.mypage-mid-tab > .modal_category_btn{
    display: none;
  }

.link-account-table{
  width: 100%;
}
.link-account-table > thead{}
.link-account-table > thead > tr{
  border-bottom: 2px solid #ccc;
}
.link-account-table > thead > tr > th{
  text-align: center;
  padding: 10px 5px;
  font-size: 14px;
}
.link-account-table > tbody > tr{
  border-bottom: 1px solid #ccc;
}
.link-account-table > tbody > tr > td{
  text-align: center;
  padding: 10px 5px;
  font-size: 14px;
}

.link-account-table > tbody > tr > td > button{
  border-radius: 5px;
  border: none;
  background-color: #111;
  color: #fff;
}
.link-account-table > tbody > tr > td > button.delete{
  background-color: #fff;
  border: none;
  color: #ff0000;
  font-weight: 700;
}

.link-account-list{
  padding: 0;
  margin-top: 30px;
}
.link-account-list > li:first-child{
  margin-bottom: 0;
}
.link-account-list > li{
  list-style: none;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #111;
  padding: 5px 20px;
  margin-top: 15px;
  margin-bottom: 30px;
}
.link-account-list > li > a{
  display: flex;
  width: 100%;
}
.link-account-list > li > a > img{
  width: 24px;
  height: 24px;
}
.link-account-list > li > a > p{
  text-align: center;
  width: calc(100% - 24px);
  margin-bottom: 0;
  font-size: 16px;
  color: #111;
}

.btn.link-account-search{
  color: #fff;
  background-color: #111;
  opacity: 1;
  min-width:100px;
}
.btn.link-account-search:disabled {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
  color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));

}




/* 모바일 전용 설정 */
.mobile-only {
  display: none;
}

a.modal_lang_btn{
  background-color: #111;
  height: 30px;
  border-radius: 10px;
  color: #fff;
}

a.modal_lang_btn:hover{
  color: #FFB931;
}

.btn-row > button:first-child{
  margin-right: 10px;
}

@media (min-width: 1440px) {
  .mobile-menu, #hamburgerBtn {
    display: none !important;
  }
}
@media (max-width: 1439px) {

  .store-detail-box{
    flex-direction: column;
  }
  .store-detail{
    margin-left: 0px;
    margin-top: 20px;
  }
  .store-detail > p{
    margin-bottom: 10px;
  }

  .mobile-only {
    display: inline-block;
    background: none;
    border: none;
    padding: 0px;
    z-index: 1001;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .hamburger > span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
    margin: 5px 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo { height: 30px; }
  .location-icon { height: 25px; }

  .close-menu-btn {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .menu-block {
    margin-top: 20px;
    cursor: pointer;
  }

  .menu-login-title {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
  }

  .menu-block .menu-login-desc {
    font-size: 12px;
    color: #73787E;
  /* color: gray; */
  }

  .menu-block p {
    margin: 6px 0;
    font-size: 18px;
    color: #111;
  }

  .menu-block p > a{
    color: #111;
    margin-left: 10px;
  }

  .menu-block p.menu-section {
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
    font-size: 16px;
  }

  .arrow {
    font-weight: bold;
    font-size: 24px;
  }

  /* 데스크탑 전용 요소 숨김 */
  .desktop-icon, .desktop-menu, .header-top > div:nth-child(2) {
    display: none !important;
  }





  .header .modal_local_btn{
    order: 2;
  }
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 3;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 4;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px 5px;
    font-size: 12px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .header .logo img {
    max-height: 24px;
    margin: 0 5px;
  }
  .header .modal_local_btn > img {
    height: 20px;
    margin: 0;
  }

  .header .modal_local_btn > img.location-img {
    height: 30px;
    margin: 0;
  }
  .navmenu a img {
    height: 20px;
  }
  

  #header .header-top{
    padding: 0px 10px;
  }
  .header-menu {
    padding-right: 0;
    padding-left: 0;
  }
  .header-menu > li {
    margin-right: 30px;
    margin-left: 8px;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    /* padding: 0 7px; */
    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {                                                                                                                                                      
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(41, 33, 33, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul { 
    display: block;
  }

  .footer .footer-btn{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .footer-btn .footer-button .btn-box button{
    margin-right: 15px;
    display: block;
    width: 120px;
    height: 30px;
    border: 1px solid #878787;
    background-color: #fff;
    border-radius: 10px;
    font-size: 12px;
  }

  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  section,
  .section {
    scroll-margin-top: 66px;
  }

  .page-title h1{
    margin-left: 8px;
  }

  section,
  .section {
    scroll-margin-top: 66px;
  }

  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
  .carousel-item {
    flex: 0 0 calc(100% / 1.1);
  }

  .hero .carousel {
    min-height: calc(100vh - 48px);
  }

  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero .carousel-control-prev {
    padding-left: 15px;
  }
  .hero .carousel-control-next {
    padding-right: 15px;
  }

  .main-banner .main-banner-text{
    left: 15px;
    width: 92%;
  }
  .main-banner .main-banner-text h2{
    font-size: 24px;
  }
  .main-banner .main-banner-text p{
    font-size: 16px;
  }
  .main-banner .main-banner-text span{
    font-size: 12px;
  }

  .step-wrap {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox에서 스크롤바 숨김 */
    -ms-overflow-style: none; /* IE, Edge에서 스크롤바 숨김 */
  }
  .step-wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari에서 스크롤바 숨김 */
  }
  .step-container {
      /* animation: scrollLeft 20s linear infinite; */
  }

  .section-title h2 {
    font-size: 24px;
  }

  .step-container {
    gap: 10px;
  }

  .steps .step-icon{
    width: 30%;
    padding: 4px;
  }
  .steps .step-icon p{
    font-size: 16px;
    white-space: pre-wrap;
  }
  .steps .step-icon span{
    font-size: 12px;
  }

  .services .service-item.item11,
  .services .service-item.item22,
  .services .service-item.item33 {
    background-position: 93% 50%;
    background-size: 18%;
    display: flex;
    min-height: 50px;
  }

  .services .service-item.item11 .service-img {
    bottom: 5%;
    left: 80%;
    width: 22%;
  }
  
  .services .service-item > span{
    display: none;
  }
  
  .services .service-item > h3{
    text-align: left;
    margin: 0;
    font-size: 18px;
    width: 200px;
  }

  .store-wrap {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox에서 스크롤바 숨김 */
    -ms-overflow-style: none; /* IE, Edge에서 스크롤바 숨김 */
  }
  .store-wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari에서 스크롤바 숨김 */
  }
  /* .store-container {
    animation: scrollLeft 20s linear infinite;
  } */

  .store-container{
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .store .store-img{
    width: 30%;
    min-height: 120px;
  }
  .store .store-img > img {
    height: 100%;
    object-fit: cover;
  }

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }

  .mypage-mid > .mypage-tab-content > .mypage-panel-content > h2{
    font-size: 24px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > p{
    font-size: 12px;
    margin-bottom: 5px;
  }
  .mypage-mid > ul.mypage-mid-tab > li > button{
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top > p{
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-top > span{
    font-size: 12px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-id > p{
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li{
    font-size: 12px;
  }

  .page-title .review button {
    width: 120px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
  }

  .mypage-top .mypage-top-item-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap; /* 한 줄 유지 */
    overflow-x: auto; /* 가로 스크롤 활성화 */
    -webkit-overflow-scrolling: touch; /* 부드러운 스크롤 */
    gap: 10px; /* 아이템 간격 */
    /* 스크롤바 숨기기 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
  }
  
  .mypage-top-item-box::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .mypage-top .mypage-top-item-box .mypage-top-item{
    flex: 0 0 auto; /* 크기가 자동으로 변하지 않도록 설정 */
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > img{
    width: 20px;
    height: 20px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > p{
    font-size: 14px;
    margin-left: 5px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > span{
    font-size:12px;                                                  
    margin-left: 5px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item > .img{
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }

  .mypage-mid > .mypage-tab-content > .mypage-panel-content > h2{
    font-size: 18px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li > p{
    text-overflow: ellipsis;
    width: 250px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > a{
    font-size: 14px;
    padding: 5px 10px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .order-info-paging > span{
    font-size: 14px;
  }

  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .list {
    flex-direction: column;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > ul > li{
    font-size: 14px;
    list-style: none;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .list > span{
    border-bottom: 2px solid #f8f8f8;
    padding-bottom: 10px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li {
    flex-direction: column;
    align-items: center;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > .step-exp-title > h5{
    font-size: 16px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > .list-txt > ol > li {
    margin-bottom:5px;
    font-size: 14px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .step-exp > li > img {
    width: 95%;
  }

  .mypage-mid > ul.mypage-mid-tab > li > button {
    min-height: 40px;
  }

  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul{
    gap: 5px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li{
    padding: 5px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > p {
    font-size: 10px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li > h3{
    font-size: 20px;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > .order-info > li > p{
    width: 120px;
  }

  .sub-container{ 
    width: 80%;
    /* min-width: 360px; */
  }

  .InterS-panel > div {
    flex-direction: column;
  }
  .InterS-panel > div > div {
    width: 100%;
  }
  .InterS-panel > div > .r-text {
    width: 100%;
  }
  .InterS-panel > div > .l-list {
    width: 100%;
  }
  .InterS-panel > div > .l-text {
    width: 100%;
  }
  .InterS-panel > ul {
    flex-direction: column;
  }
  .mypage-mid > .mypage-tab-content > .InterS-panel > ul > li {
    width: 100%;
  }
  .InterS-panel > ul > li > img {
    width: 70%;
  }

  .Shipping-Destinations ul.kor-to{
    flex-direction: column;
  }
  .Shipping-Destinations ul.kor-to li{
    width: 100%;
  }
  .Shipping-Destinations ul.kor-to li > h3{
    height: 30px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .country-item-div{
    flex-direction: column;
  }
  .country-select-button{
    width: 100%;
    margin-bottom: 5px;
  }
  .country-item-box{
    width: 100%;
  }

  #resultBox{
    width: calc(100% - 40px);
  }
  .image-placeholder {
    margin: 60px auto 20px;
  }

  .mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product{
    flex-wrap: wrap;
    flex-direction: row;
  }
  .mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product > li {
    width: 30%;
    margin-bottom: 20px;
  }

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

  .support-category-btn{
    margin-top: 5px;
    font-size: 14px;
    height: 30px;
  }
  .support-category-search{
    width: 100%;
    margin-top: 15px;
  }

  .works-ul > .works-list > .works-text > h2{
    font-size: 20px;
  }
  .works-ul > .works-list > .works-text > h3{
    font-size: 14px;
  }
  .works-ul > .works-list{
    padding: 25px;
  }


  .mobile-only {
    display: inline-block;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
    margin-right: 5px;
  }
}

@media (max-width: 991px){
  .mypage-top .mypage-top-item-box .mypage-top-item {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .mypage-mid > .mypage-tab-content > .InterS-panel > ul.k-product > li {
    width: 48%;
  }

  .mypage-mid > ul.mypage-mid-tab1 > li > button{
    display: none;
  }
  .mypage-mid > ul.mypage-mid-tab1 > li > button.active{
    display: block;
  }

  .mypage-mid > ul.mypage-mid-tab1 > .modal_category_btn{
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    height: 30px;
    color: #000;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin: 4px 10px 0;
  }

  .mypage-mid > ul.mypage-mid-tab1 > .modal .modal-cont button{
    list-style: none;
    padding: 7px;
    margin: 5px 2.5%;
    width: 43%;
    text-align: center;
    border: 1px solid #E6E7EB;
    color: #000;
    font-size: 14px;
    border-radius: 0.375rem;
    cursor: pointer;
  }
  .mypage-mid > ul.mypage-mid-tab1 > .modal .modal-cont button.on{
    background-color: #e3e3e3;
  }

  .filter-tag{
    flex-direction: column;
  }
  .filter-tag > div > button{
    margin-bottom: 10px;
  }

  .mypage-mid > ul.mypage-mid-tab > li > button.link-height {
    min-height: 52px;
  }

  .btn-row{
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .accordion-button p{
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .accordion-button p{
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .accordion-button {
    font-size: 14px;
  }

  .accordion-button p{
    max-width: 270px;
  }
}

@media (max-width: 500px) {
  .accordion-button p{
    max-width: 180px;
  }
   .mypage-mid > .mypage-tab-content > .mypage-panel-content > ul > li > .order-cont > div > button {
    width: 65px;
  }
  .mypage-top .mypage-top-item-box .mypage-top-item{
    width: 100%;
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul {
    flex-wrap: wrap;
    /* justify-content: space-around; */
  }
  .mypage-mid > .mypage-tab-content > .mypage-panel-content > .item-state > ul > li {
    width: 30%;
  }
  .modal-body{
    padding: 0;
  }
}

.file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block; /* 또는 inline-block */
  max-width: 100%; /* 필요시 너비 지정 */
}

  .spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spin-wrapper{
      margin-left: 5px;
    width: 150px;
    border-radius: 5px;
    margin: 0;
    color: white;
    background-color: white;
    font-weight: 500;
    height: 35px;
    display: flex;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
