@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");
@import url("/styles/font/pretendard.css");
@import url('/styles/font/pretendard-subset.css');

:root {
  --red: #ff3838;
}

* {
  font-family: "Pretendard", "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  /* transition: all 0.3s linear; */
}

*::selection {
  background-color: var(--red);
  color: #fff;
}

a {
  text-decoration: none !important;
}

html {
  font-size: 82.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: #f7f7f7;
  overflow: hidden;
}

/* Modal Styles */
.security-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.security-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s;
}

.data-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.security-modal-content h2,
.data-modal-content h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.security-modal-content p {
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

/* Captcha Container */
.captcha-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.code-display {
  border: 2px solid #ddd;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 100%);
}

.refresh-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #666;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.refresh-btn:hover {
  transform: rotate(180deg);
  background-color: var(--red);
}

/* Form Styles */
.security-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-form input[type="text"],
.security-form input[type="password"] {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.security-form input[type="text"]:focus,
.security-form input[type="password"]:focus {
  border-color: var(--red);
}

.security-form button {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.data-table th,
.data-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.data-table th {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

.data-table tr:hover {
  background-color: #f5f5f5;
}

.data-table td:nth-child(odd) {
  font-weight: bold;
}

/* Close Buttons */
.close-captcha-modal,
.close-data-modal {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-captcha-modal:hover,
.close-captcha-modal:focus,
.close-data-modal:hover,
.close-data-modal:focus {
  color: var(--red);
}

.error-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

#closeDataModal {
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .security-modal-content,
  .data-modal-content {
    width: 95%;
    margin: 20% auto;
    padding: 20px;
  }

  .security-modal-content h2,
  .data-modal-content h2 {
    font-size: 20px;
  }

  .security-form input[type="text"],
  .security-form input[type="password"],
  .security-form button {
    font-size: 14px;
  }

  .data-table {
    font-size: 14px;
  }

  .data-table th,
  .data-table td {
    padding: 8px;
  }
}

section {
  padding: 2rem 9%;
}


.privacy{
  color:var(--red) !important;
}

.privacy-container{
  max-width: 1200px;
}
.privacy-container a {
  color: #494949;
  text-decoration: none;
}
.privacy-container .privacy-toc ol {
  margin: 8px 18px;
}
.privacy-container .privacy-toc li {
  margin: .35em 0;
}
.privacy-container .privacy-note {
  background: #fafbff;
  border: 1px solid #e7e9f3;
  padding: 14px 16px;
  border-radius: 10px;

}

.privacy-container .privacy-toc {
  background: #f9f9f9;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 20px 0 24px;
}

.privacy-container .privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}
.privacy-container .privacy-table th {
  background: #f8fafc;
  text-align: left;
  font-weight: 700;
}
.privacy-container .privacy-table th, .privacy-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  vertical-align: top;
}

.privacy-container section {
  padding: 0;
}


.privacy-container .privacy-site-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: .5em 0 1em;
  padding: 0;
  list-style: none;
}

.privacy-container .privacy-site-item a {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
}

.privacy-container p[role="heading"] {
  font-weight: 700;
  margin: 2em 0 .8em;
}
.bui {
  cursor:pointer;
}

/*
  공용 규칙 
*/
.fl{
  /* 제목 단위 폰트 */
  font-size: 2rem; 
}
.fm {
  /* 본문 폰트 */
  font-size: 1.5rem;
}
.nl{
  /* 개행시 word break */
  word-break: keep-all;
}

.wl{
  font-weight: 400;
}

.br{
  border : solid red;
}


/*
  === START ===

  공용/button styles


  .site-btn   // 버튼 기본 스타일
  .red-btn    // 빨간색 버튼 ( 흰 배경 )
  .white-btn  // 흰색 버튼  ( 빨간 배경 )
*/
.site-btn{
  display: inline-block;
  padding: 0.2rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 800;

  border: 0px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 1.5rem;
  align-content: center;

  transition: 0.5s linear;
}
.site-btn::before {
  content: "";
  position: absolute;
  border-radius: 0.5rem;
  top: 0;
  left: -10%;
  width: 0%;
  height: 100%;
  transition: 0.3s linear;
  z-index: -1;
}
.site-btn:hover::before {
  width: 100%;
  left: 0;
}

.white-btn{
  background-color: #fff;
  color: var(--red);
}
.white-btn::before{
  background-color: var(--red);
}
.white-btn:hover{
  color: #fff;
  background-color: var(--red);
}

.red-btn{
  color: #fff;
  background-color: var(--red);
}
.red-btn::before{
  background-color: #fff;
}
.red-btn:hover{
  color: var(--red);
  background-color: #fff;
}

.main-btn{
  /* box-shadow:  16px 18px 1px rgba(0,0,0,0.1); */
  max-width: 280px;
  /* font-size: 2.6rem; */
}

.submit-btn{
  width: 150px;
  height: 50px;
  /* font-size: 1.6rem; */
}
/*
  button styles

  === END ===
*/


/** 
  === START ===
  공용/pagination
*/


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

.pg_page {
	display:flex;
	justify-content:center;
	align-items:center;
	width:30px;
	height:30px;
	margin:0 3px;
	background-color:#f5f5f5;
	border-radius:50%;
	font-size:1rem;
}

a.pg_page:hover {
	background-color:#ddd
}

.pg_current {
	background-color:#df1323;
	color:#fff;
	font-weight:400
}

.pg_prev {
	margin-right:10px
}

.pg_next {
	margin-left:10px
}

/*
  pagination

  === END ===
*/

/**
  === START ===
  공용/list styles
  섹션 스타일
*/
.form-group.row {
  font-size: 1.5rem;
  font-weight: 400;
  height: 45px;
  margin-bottom: 8px;
}
.list-content {
  width: 500px;
  border: 1px solid #df1323;
  border-radius: 10px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
  overflow-y: scroll;
  border: 1px solid white;
  color: red;
  font-weight: bolder;
  font-size: 1.5rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.369);
}

.list-content>option {
  padding: 20px;
}

.list-content>option:checked {
  background-color: #fff;
}

.list-content>option:hover {
  background-color: #df1323;
}

.list-content2 {
  background-color: #ededed;
  border-radius: 10px;
  height: 40px;
  padding: 12px 10px;
  margin-top: auto !important;
  font-size: 1.5rem;
}

.list-content3 {
  background-color: #ededed;
  border-radius: 10px;
  height: 30px;
  padding: 5px;
  color: #000000;
  text-align: center;
  margin: 10px auto;
}

@media screen and (max-width: 575px) {
  .form-group.row{
    height: 65px;
    margin-bottom: 12px;
  }
  .list-content2 {
    height: 30px;
    padding: 5px 22px;
  }

  .delivery-section .input-address .invalid-phone::after{
    margin-left: 0 !important;
  }
}
/*
  list styles

  === END ===
*/



/**
  === START ===
  공용/header 
  최상단 헤더 스타일
*/
header {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
header img {
  width: 100px;
}
header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: #666;
}
header .logo i {
  padding-right: 0.5rem;
  color: var(--red);
}
header .navbar a {
  font-size: 1.5rem;
  color: #666;
  margin-left: 2rem;
  font-weight: 600;
}
header .navbar a:hover {
  color: var(--red);
}
header .header-logo{
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .logo-text{
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  font-size: 2rem;
  font-weight: 800;
  line-height: initial;
}
header .logo-text div:first-child{
  color :black;
}
header .logo-text div:last-child{
  color :#df1323;
}
/**
  === END ===
  header
  최상단 헤더 스타일
*/



/*
  === START ===
  index.html/container
  공지사항, 매장정보 container
*/
.container {
  margin-top: 10vh;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 10%;
}

.container .page-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.container .page-wrapper:first-child{
  margin-bottom: 2rem;
}

.container strong {
  font-size: 1.5rem;
  font-weight: 800;
}

.container .heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background-color: #000000;
  border-radius: 20px;
  padding: 0.3rem 1.4rem;
  cursor: pointer;
}
/*
  공지사항, 매장정보 container 

   === END === 
*/


/*
  === START ===

  index.html/containerlink
  매장 두개를 표시하는 conatiner
*/

.containerlink {
  margin-top: 2vh;
  margin-bottom: 4vh;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.containerlink .link-wrapper {
  border-radius: 10px;
  border: 1px solid #e6e6e6;

  padding: 1.5rem 2rem;

  width: calc(50% - 0.5rem);
  display: flex;
}

.containerlink .link-wrapper:first-child{
  margin-right: 1rem;
}

.containerlink .link-wrapper a{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  font-weight: 600;
}

.containerlink .link-wrapper .link1 {
  display: inline-block;
  text-align: left;
  color: #333;
  cursor: pointer;
  font-size: 1.5rem;

  word-break: keep-all;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;

  width: 40%;
}

.containerlink .link-wrapper .link2 {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 0.5rem;

  color: var(--red);
  text-decoration: underline;

  word-break: keep-all;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*
  === END ===

  containerlink
  매장 두개를 표시하는 conatiner
*/


/**
  === START ===
  index.html/home
  홈 화면 스타일
*/
.home {
  display: flex;
  min-height: 60vh;
  align-items: center;
  background-color: rgba(223, 19, 35, 255);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  justify-content: center;
}

.home .content {
  width: 50%;
  flex: 1 1 40rem;
  padding-top: 6rem;
}

.home .content h3 {
  font-size: 2rem;
  color: #ffffff;
}

.home .content p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
}

.home .content button{
  width: 100%;
  padding: 1.4rem 0;
}

.home .image {
  width: 50%;
  max-width: 700px;
  flex: 1 1 40rem;
  background-image: radial-gradient(closest-side at 50% 50%, #fbac7e, #df1323);
}

.home .image img {
  width: 100%;
  padding: 1rem;
  animation: float 3s linear infinite;
}
/**
  home
  홈 화면 스타일

  === END ===
*/


.home-slide {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  gap: 1.5rem;
  align-items: center;
  background-color: rgba(223, 19, 35, 255);

  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-slide h1 {
  color: white;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}




/**
  === START ===

  tandc-block, tandc-section
  면책 사항 및 이용약관 스타일

*/
.tandc-block {
  display: none;
  align-items: center;
  justify-content: center;
  top: 0%;

  position: absolute;
  width: 100%;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 90vh;
  align-items: center;
  left: 100%;
  background-color: #f7f7f7 !important;
}

.tandc-section{
  width: 90%;
  max-width: 390px;
  height: 45vh;
  position: absolute;
  top: calc(4rem + 100px);

  height: calc(100vh - 4rem - 100px);
}

.tandc-block-text {
  text-align: center;
  color: #7d7d7d;
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 10px;
}
.tandc {
  width: 100%;
  background-color: white;
  border: 1px solid #d4d4d4;
  overflow: scroll;
  overflow-x: hidden;
  border-radius: 5px;
  padding: 15px;
  height: 52vh;
}

.tandc>ol {
  margin-left: 10px;
}

.tandc li{
  color: #969696;
  list-style-type: square;
  line-height: 2rem;
  font-size: 1.5rem;
}

.tandc .tandc-title {
  color: #969696;
}

.tandc p {
  color: #969696;
  font-size: 1.5rem;
  line-height: 2rem;
}

.check-mark {
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5rem;
}

/* @media (max-width: 480px) {
  .home-slide.home-index{
    min-height: 60vh;
  }
}

@media screen and (max-height: 800px) {
  .tandc {
    height: 25vh;
  }
} */

/**
  tandc-block, tandc-section
  면책 사항 및 이용약관 스타일

  === END ===
*/


/**
  === START ===

  tandc-section2
  설문조사 블럭

*/
.tandc-section2 {
  padding-top: calc(2rem + 100px);
  width: 90%;
  max-width: 500px;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-weight: bolder;
}

.tandc-section2 h1 {
  color: #e80000 !important;
}
/**
  tandc-section2
  설문조사 블럭

  === END ===
*/



/**
  === START ===

  third.html/inner-content
  세번째 페이지

*/
.home-third{
  justify-content: center;
  min-height: 100vh;
  padding-top: calc(4rem + 100px);
  align-items: flex-start;
}
.inner-content {
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.inner-content ul {
  list-style: square;
  text-align: left;
  color : #868686;
}

.inner-content h1 {
  text-align: center;
}

.inner-content form .form-group {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

}

.inner-content .captcha {
  background: linear-gradient(90deg, rgba(55, 55, 55, 1) 0%, rgba(255, 255, 255, 1) 100%);
  height: fit-content;
  width: 100%;
  font-size: 5rem;
  font-style: italic;
}

.input-field {
  margin: 5px;
  height: 30px;
  padding: 10px;
  border-radius: 5px;
  border-color: red;
  text-transform: uppercase;
  border-style: none;
  font-size: 1.5rem;
}

input {
  accent-color: red;
}

.input-button {
  margin: 5px;
  height: 30px;
  border-radius: 5px;
  padding-top: 10px;
  padding-left: 5px;
  padding-bottom: 10px;
  padding-right: 5px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide {
  display: none;
}

.input-field2 {
  /* margin: 5px; */
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.inner-content .add_more {
  width: 70px;
  height: 30px;
  border-radius: 10px;
  background-color: black;
  color: white;
  margin: 5px;
  font-size: 1.5rem;
}

.inner-content .captcha-reload {
  background-color: #666;
  color: white;
  padding: 5px;
  margin-bottom: 10px;
}

.inner-content p {
  margin-top: 5px;
}

@media screen and (max-width: 480px) {
  .inner-content {
    padding: 30px 10px;
  }
}

/**
  third.html/inner-content
  세번째 페이지

  === END ===
*/


/**
  === START ===

  result.html/celebrity
  네번째 페이지

*/

.home-result {
  justify-content: center;
  min-height: 100vh;
  /* padding-top: calc(4rem + 120px); */
  align-items: center;
}
.celebrity{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
}

.celebrity .img-container .row div{
  text-align: center;
}

.celebrity .img-container img{
  max-height: 42vh;
}

.celebrity .content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.celebrity .content h3 {
  font-size: 5rem;
  color: #ffffff;
}

.celebrity .content .main-btn{
  padding: 1rem 1rem;
  min-width: 150px;
}

.celebrity .content .content-btn-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


@media screen and (min-width: 768px) {
  .celebrity{
    flex-direction: row;
  }
  .celebrity .img-container{
    width: 50%;
  }

  .celebrity .content{
    width: 50%;
  }
}

/**
  result.html/celebrity
  네번째 페이지

  === END ===
*/


/**
  === START ===

  result.html/delivery-block
  네번째 페이지


*/
.delivery-block {
  display: none;
  align-items: center;
  justify-content: center;
  top: 0%;

  position: absolute;
  width: 100%;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
  left: 100%;
  background-color: #f7f7f7 !important;
}


.delivery-section {
  padding-top: calc(4rem + 100px);
  width: 90%;
  max-width: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-weight: bolder;
}

.delivery-section h1 {
  color: #000 !important;
}

.delivery-section .result-postcode{
  margin-top: 10px;
  font-size: 1.5rem;
  background-color: #5f5f5f;
  height: 40px;
  color: #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
}

.delivery-section .input-address input{
  background-color: #fff;
  border-radius: 8px;
  height: 40px;
}
.delivery-section .input-address .invalid-phone{
  margin-bottom: 40px;
}

.delivery-section .input-address .invalid-phone::after{
  content: "올바른 휴대폰 번호를 입력해주세요.";
  color: red;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  margin-left: 25%;
}


.delivery-section .address_form{
  margin: 30px;
}

.delivery-block .postcode input{
  margin-right: 0px;
}
.delivery-block .postcode div{
  margin-left: 0px;
}

@media screen and (max-width: 768px) {
  
  .form-group.row.postcode{
    height: 102px;
  }
}
/**
  result.html/delivery-block
  네번째 페이지

  === END ===
*/

/**
  === START ===

  denied.html, ending.html/
  엔딩 페이지
*/
.celebrity-btn-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.celebrity .content .celebrity-btn-wrapper .main-btn{
  width: 46%;
  word-break: keep-all;
  max-width: none;
}

@media screen and (max-width: 768px) {
  .celebrity-btn-wrapper{

    width: 100%;
  }
  .celebrity .content .celebrity-btn-wrapper .main-btn{
    padding: 1rem 0.4rem;
  }
}

/*
  denied.html, ending.html

  === END ===
*/


/**
    === START ===

    Profile Page

*/

.home-profile{
  background-color: #f7f7f7;
  align-items: flex-start;
  padding-top: calc(4rem + 100px);
}
.home-profile .profile-section{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.home-profile .profile-section .profile-card-head{
  display: flex;
  flex-direction: row;
}
.home-profile .profile-section .profile-card-head{
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #bababa;
  margin-bottom: 1rem;
}
.home-profile .profile-section .profile-card-head .profile-name{
  font-size: 2rem;
  font-weight: 400;
  margin-right: 1rem;
}
.home-profile .profile-section .profile-card-head .profile-name-data{
  color: #000;  
}
.home-profile .profile-section .profile-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0.3rem 0;
}
.home-profile .profile-section .profile-card-content{
  display: flex;
  flex-direction: column;

  font-size: 1.5rem;
  font-weight: 600;
}
.home-profile .profile-section .profile-card-content .profile-content-title{
  width: 20%;
  max-width: 100px;
  font-weight: 400;
}

.home-profile .profile-section .profile-card-content .profile-content-data{
  width: 60%;
  max-width: 400px;
}
.home-profile .profile-section .profile-card-edit .profile-edit{
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.5rem;
}

.home-profile .profile-section .profile-card-edit .edit-message{
  margin-top: 20px;
  border-top: 2px solid #bababa;
  display: inline-block;
  width: 100%;
}

.home-profile .profile-section .profile-delivery-section {
  display: flex;
  flex-wrap: wrap;

  margin-top: 40px;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.home-profile .profile-section .profile-delivery-section .delivery-title{
  width: 100%;
  color: #000;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 0.2rem solid #bababa;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem 0;

  width: 100%;
  max-width: 400px;
  /* height: 200px; */

  border: 0.2rem solid #dadada;
  border-radius: 8px;

  margin: 1rem;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-card .profile-delivery-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 1% 2%;
  border-right: 0.2rem solid #dadada;
}

.profile-delivery-img img{
  width: 100%;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-content{
  display: flex;
  flex-direction: column;
  width: 75%;
  padding: 1% 0;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-head{
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  font-size: 18px;
  font-weight: 700;

  padding-bottom: 3px;
  padding-left: 4px;
  padding-right: 8px;

  border-bottom: 0.2rem solid #dadada;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-title{
  word-break: keep-all;
  width: 65%;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-status{
  color : var(--red);
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-user{
  display: flex;
  flex-direction: column;

  padding: 4px;

  font-size: 15px;
  font-weight: 600;
}

.home-profile .profile-section .profile-delivery-section .profile-delivery-user-info{
  display: flex;
  flex-direction: row;
}

.home-profile .profile-section .profile-delivery-section .user-info-key{
  width: 35%;
}
.home-profile .profile-section .profile-delivery-section .user-info-value{
  width: 60%;
  word-break: keep-all;
}

/**
  === END ===

  Profile Page

*/


/**
  === START ===
  notice Page

*/
.hstack .bg-none:first-child{
  width: 25%;
  word-break: keep-all;
}

.hstack div:nth-child(3){
  word-break: keep-all;
  width: 62%;
}

.hstack .bg-none:last-child{
  width: 10%;
  word-break: keep-all;
}



#menu-bar {
  font-size: 3rem;
  cursor: pointer;
  color: #666;
  border: 0.1rem solid #666;
  border-radius: 0.3rem;
  padding: 0.5rem 1.5rem;
  display: none;
}





.home2 {
  display: flex;
  min-height: 100vh;
  align-items: center;
  background-color: rgba(223, 19, 35, 255);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
}


.upper-border {
  position: absolute;
  background-color: #ff0000;
  height: 200px;
  width: 100%;
  display: none;
  left: 100%;
}







/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d7d7d7;
}



.col-form-label {
  color: #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image {
  display: block;
  max-width: 100%;
}

.preview {
  overflow: hidden;
  width: 160px;
  height: 160px;
  margin: 10px;
  border: 1px solid red;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0rem);
  }

  50% {
    transform: translateY(3rem);
  }
}



.steps {
  margin-top: 10vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
}

.steps .box {
  flex: 1 1 25rem;
  text-align: center;
  padding: 1rem;
}

.steps .box img {
  border-radius: 50%;
  width: 200px;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  border: 1rem solid #fff;
}

.steps .box h3 {
  font-size: 3rem;
  color: #333;
  padding: 1rem;
}



.footer {
  background: #f1f1f1;
  color: #000000;
  text-align: center;
}

.footer .footer-top {
  border-bottom: 0.2rem solid #d8d8d8;
}

.footer .footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 2rem;
  padding: 1rem 0;
  font-size: 1.7rem;
  text-decoration: none;
  color: #757575;
}

.footer .footer-top-inner>ul {
  display: flex;
  color: #6c6c6c;
  line-height: 4rem;
  width: 80%;
}

.footer .footer-top-inner>ul li {
  list-style-type: none;
  margin-right: 3rem;
  font-size: 1rem;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.footer .footer-top-inner>ul li:last-child {
  margin-right: 0;
}

.footer .footer-top-inner>ul li a {
  color: #757575;
  display: block;
}

.footer .footer-top-inner .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 0 4rem;
  max-width: 4rem;
  margin-right: 3vi;
}

.footer .footer-top-inner .right .twitter {
  display: block;
  flex: 1 0 4rem;
  max-width: 4rem;
  height: 4rem;
  background: url(../assets/images/ico-twitter.png) center center no-repeat;
  background-size: 100% 100%;
}


.footer .fotter-bottom-inner {
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.footer .fotter-bottom-inner .logo {
  display: block;
  width: 8rem;
  height: 8rem;
  background: url(../assets/images/logo-footer.png) center center no-repeat;
  background-size: 100% 100%;
}

.footer .fotter-bottom-inner .location {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-top: 1rem;
  color: #757575;
}

.footer .fotter-bottom-inner .copy {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-top: 1rem;
  color: #757575;
}


#scroll-top {
  position: fixed;
  top: -120%;
  right: 2rem;
  padding: 0.5rem 1.5rem;
  font-size: 4rem;
  background: var(--red);
  color: #fff;
  border-radius: 0.5rem;
  transition: 0.5s linear;
}

#scroll-top.active {
  top: calc(100% - 12rem);
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.loader-container img {
  height: 50vh;
}

.loader-container.fade-out {
  top: -120%;
}



.home-sec-page {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-card h1 {
  color: white;
  font-weight: bolder;
  margin-bottom: 20px;
}



.form-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 500px;
}

.loading {
  display: none;
}


.loading.show {
  display: block;
}

.loading .loader {
  /* display: none; */
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: -30px 0 0 -30px;
  border: 16px solid #fff;
  border-top: 16px solid #e80000;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.loading .dim {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 98;
}

/* 4th page start */
.circle {
  width: 155px;
  height: 155px;
  background-color: white;
  border: 10px solid #df1323;
  border-radius: 100px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle .circletext {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-size: 3rem;
}

.content-card {
  width: 500px;
  height: 90px;
  background-color: white;
  border-radius: 15px 15px 0px 0px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#panel {
  display: visible;
  width: 500px;
  height: 450px;
  background-color: white;
  border-radius: 0px 0px 15px 15px;
  position: absolute;
  top: 61%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.address_form {
  margin: 30px;
}

/* 4th page end */



/* Shop Starts */
.container-shop {
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 10%;
  width: 100%;
}
.shop{
  padding-top: calc(4rem + 100px);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 90vh;
  align-items: center;
  background-repeat: no-repeat;
  background: #ffffff;
  background-size: cover;
  background-position: center;
}

.shop .container-shop h1{
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.shop .container-shop .search_shop{
  font-size: 1.5rem;
}

.shop .container-shop .shop-li{
  padding-top: 0;
  padding-bottom: 0;
}

.shopcontent{
  margin-top: 20px;
}

.dropdown{
  margin-top: 200px;
}


/* Notice Starts */


.notice{
  padding-top: calc(4rem + 100px);
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 90vh;
  align-items: center;
  background-repeat: no-repeat;
  background: #ffffff;
  background-size: cover;
  background-position: center;
}

.notice-title{
  color: #000;
  font-weight: bolder;
  font-size: 2rem;
  border-bottom: 1px solid #afafaf;
  width: 100%;
  text-align: left;
  padding-bottom: 5px;
}

.notice-wrapper{
  width: 100%;
  height: 50vh;
  border-bottom: 1px solid #afafaf;
}

.notice-card {
  display: inline-block;
  width: 100%;
  margin: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  
}
.card-content {
  
  padding: 20px;
}
.card-body{
  text-align: left; 
  font-size: 1.5rem;
}

.notice h1{
  color: white;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}

.notice h1 {
  color: white;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}

.notice-table {
  border-collapse: collapse;
  margin-bottom: 25px;
  font-size: 1.5rem;
  /* justify-content: space-between; */
  font-family: sans-serif;
  /* min-width: 1200; */
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  overflow: scroll;
  overflow-x: hidden;
}

.notice-table thead tr {
  background-color: #bababa;
  color: #ffffff;
  text-align: left;
}

.notice-table th,
.notice-table td {
  padding: 12px 15px;
  margin: 20px;
}

.notice-table tbody tr {
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
}

.notice-table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.notice-table tbody tr:last-of-type {
  border-bottom: 2px solid #bababa;
}

.notice-table tbody tr.active-row {
  font-weight: bold;
  color: #e80000;
}
.notice-table tbody tr a{
  color: #000;
}

.notice .list-btn-wrapper{
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.notice .site-btn{
  padding: 1rem 2rem;
  font-size: 1.7rem;
}


/* paging */
.paging {
  margin: 5rem auto 0;
  text-align: center;
  font-size: 0;
  display:
    flex;
  justify-content:
    center;
}

.paging .paging-inner {
  display: inline-block;
  background-color: #f0f0f0;
  border-radius: 5rem;
  vertical-align: top;
}

.paging a {
  display: inline-block;
  font-size: 1.6rem;
  color: #707070;
  line-height: 5rem;
  vertical-align: middle;
  min-width: 5rem;
  border-radius: 5rem;
  padding: 0 5rem;
  background-color: #f0f0f0;
}

.paging a.active {
  color: #df1323;
  background: #fff;
  font-weight: 500;
  box-shadow: 0rem 4rem 4rem 0rem rgba(182, 182, 182, 0.27);
}

.paging a.first {
  padding: 0;
  width: 5rem;
  height: 5rem;
  background-size: 2rem 1.8rem;
  margin: 0 1rem;
}

.paging a.prev {
  padding: 0;
  width: 5rem;
  height: 5rem;
  background-size: 1.2rem 1.8rem;
  margin: 0;
}

.paging a.next {
  padding: 0;
  width: 5rem;
  height: 5rem;

  background-size: 1.2rem 1.8rem;
  margin: 0 1rem;
}

.paging a.last {
  padding: 0;
  width: 5rem;
  height: 5rem;

  background-size: 2rem 1.8rem;
  margin: 0;
}





/* Notice endds */






/* media quiries */
@media (max-width: 991px) {
  html {
    font-size: 75%;
  }

  header {
    padding: 2rem;
  }

  header img {
    width: 80px;
  }

  section {
    padding: 2rem;
  }

  .steps .box img {
    width: 150px;
  }

  .steps .box h3 {
    font-size: 2rem;
    padding: 30px;
  }

  .heading {
    font-size: 1.6rem;
    padding: 10px;
  }

  .link1 {
    font-size: 1.25rem;
  }

  .link2 {
    font-size: 1.25rem;
  }


}

@media (max-width: 768px) {
  #menu-bar {
    display: initial;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f7f7f7;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    display: none;
  }

  header .navbar.active {
    display: initial;
  }

  header .navbar a {
    padding: 1.5rem;
    margin: 1.5rem;
    display: block;
    border: 0.2rem solid rgba(0, 0, 0, 0.1);
    border-left: 0.5rem solid var(--red);
    background: #fff;
  }

  .home .content img {
    height: 100px;
  }

  .home .content h3 {
    font-size: 1.75rem;
  }
  .list-content {
    width: 350px;
  }

  .list-content2 {
    width: 300px;
  }

  .form-card {
    width: 350px;
  }

  .captcha {
    font-size: 3rem;
  }

  .footer .footer-top-inner {
    font-size: 1.3rem;
  }

  .footer .fotter-bottom-inner {
    margin: 0 auto;
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 65%;
  }
  .containerlink .link-wrapper .link1{
    width: 80%;
  }

  .containerlink .link-wrapper .show-map{
    display: none;
  }

  header img {
    width: 60px;
  }

  .steps .box img {
    width: 100px;
  }

  .order .row form .inputBox input {
    width: 100%;
  }

  .list-content2 {
    width: 200px;
  }

  .list-content {
    width: 320px;
  }

  .form-card {
    width: 320px;
  }

  .content-card {
    width: 350px;
  }

  #panel {
    width: 350px;
    top: 63%;
  }

  .captcha {
    font-size: 2rem;
  }

  .footer .footer-top-inner {
    font-size: 1rem;
  }

  .footer .footer-top-inner .right {
    flex: 1 0 1rem;
    max-width: 1rem;
  }

  .footer .footer-top-inner .right .twitter {
    flex: 1 0 2rem;
    max-width: 2rem;
    height: 2rem;
  }

  .footer .fotter-bottom-inner .location {
    font-size: 1rem;
  }

  .footer .fotter-bottom-inner .copy {
    font-size: 1rem;
  }
}


@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@media (max-width: 400px) {
  .form-card{
    width: 280px;
  }
  .list-content{
    width: 280px;
  }
}