@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 100;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 400;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 500;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 700;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 900;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf) format('opentype');}

:root {
  --clr-primary: rgba(15, 103, 195, 1);
  --clr-lblue: rgba(0,168,255,1);
}

* {
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif !important;
}

text-box {
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: inherit;
}

red-text {
  color: #ed1b24;
}
blue-text {
  color: rgba(0,168,255,1);
}
dblue-text {
  color : rgba(15, 103, 195, 1);
}
.red-text {
  color: #ed1b24;
}
.red-bg {
  background-color: #ed1b24;
}
.blue-text {
  color: rgba(0,168,255,1);
}
.dblue-text {
  color : rgba(15, 103, 195, 1);
}
.blue-bg {
  background-color: rgba(0,168,255,1);
}
.dblue-bg {
  background-color : rgba(15, 103, 195, 1);
}
.orange-text {
  color: #ff8300;
}
.orange-bg {
  background-color: #ff8300;
}
.grey-text {
  color: #828387;
}
.grey-bg {
  background-color: #828387;
}
.dark-text {
  color: #434345;
}
.dark-bg {
  background-color: #434345;
}
.light-grey-bg {
  background-color: #d5d5d5;
}
.small-text {
  font-size: 0.9rem;
}
.large-text {
  font-size: 1.1rem;
}
.big-text {
  font-size: 1.2rem;
}
.huge-text {
  font-size: 1.3rem;
}
span.circle-gong {
  display: inline-block;
  /* border: 1px solid #f15050; */
  border: 1px solid var(--clr-lblue);
  /* background: #f15050; */
  /* color: white; */
  color: var(--clr-lblue);
  font-size: 18px;
  width: 25px; height: 25px;
  border-radius: 50%;
  vertical-align: text-bottom;
  text-align: center;
  line-height: 24px;
}
span.circle-gong:before {
  content: '공';
}
span.circle-won {
  display: inline-block;
  /* border: 1px solid #f15050; */
  border: 1px solid var(--clr-lblue);
  /* background: #f15050; */
  /* color: white; */
  color: var(--clr-lblue);
  font-size: 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  vertical-align: text-bottom;
  text-align: center;
  line-height: 18px;
  font-size: 0.8rem;
}
span.circle-won:before {
  content: '₩';
}
span.circle-won.blue {
  border: 1px solid rgba(0,168,255,1);
  background: rgba(0,168,255,1);
}

html, body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: white;
  font-size: 16px;
  color: #333333;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
  color: inherit;
}
a.button-anchor {
  display: inline-block;
  padding: 2px 15px 2px 15px;
  border: 1px solid rgba(213,213,213,1);
  font-size: 0.9rem;
}

label,input[type=radio],input[type=checkbox] {
  cursor: pointer;
  margin-bottom: 0;
}

#loadingDiv {
  position: fixed;
  top:0px; left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 2.0em; color: #666666;
  display: none;
  z-index: 20000;
}

#loadingDiv img {
  width: 100px; height: 100px;
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  margin: auto;
}

.flex-child {
  flex: 1;
}

.flex-wrapper {
  width: 100%;
  min-width: 1200px;
  display: flex;
  justify-content: center;
}

.header-top-bar {
  background: rgba(248,248,248,1);
}

.header-top {
  width: 1100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.header-top .header-top-copy {
  width: auto;
  margin-left: 30px;
}
.header-top .header-top-menu {
  text-decoration: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top-menu li {
  list-style: none;
  text-decoration: none;
  color: rgba(113,113,113,1);
  padding: 0 5px 0 5px;
}

.header-top-logo {
  width: 1100px;
  height: 100px;
  display: flex;
  align-items: center;
}

.header-top-logo .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top-logo div.telno-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  height: auto;
  gap: 5px;
}
.header-top-logo div.telno-box img {
  width: auto;
  height: 100%;
}
.header-top-logo div.telno-box p {
  margin: 0; padding: 0 0 0 5px;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}
.header-top-logo ul.shopping-box {
  text-decoration: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-top-logo ul.shopping-box li {
  list-style: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: rgba(113,113,113,1);
  padding: 0 5px 0 15px;

}
.header-top-logo ul.shopping-box li a {
  display: inline-flex;
  align-items: center;
}
.header-top-logo ul.shopping-box li a .box-icon {
  margin-right: 10px;
  font-size: 1.8rem;
}
.main-menu-bar {
  width: 750px;
  height: 50px;
  margin: 0; padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--clr-primary);
  border-bottom: 1px solid var(--clr-primary);
  background-color: transparent;
}
.main-menu-bar li {
  list-style: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px 0 5px;
  border-right: 1px solid #666666;
  color: black;
  font-size: 18px;
}
.main-menu-bar li.no-border-right {
  border-right: 0;
}
.tire-search-bar {
  width: 550px;
  height: 50px;
  margin: 0; padding: 0 10px 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}
.tire-search-bar > p {
  font-size: 18px;
  margin-bottom: 0;
  padding: 0;
}
.tire-search-bar > p.icon-p {
  width: 30px;
  height: auto;
  font-size: 24px;
  text-align: center;
}
.tire-search-bar > p.text-p {
  width: 200px;
  height: auto;
  text-align: left;
  line-height: 30px;
}
.wheel-search-bar {
  width: 350px;
  height: 50px;
  margin: 0; padding: 0 10px 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}
.wheel-search-bar > p {
  font-size: 18px;
  margin-bottom: 0;
  padding: 0;
}
.wheel-search-bar > p.icon-p {
  width: 30px;
  height: auto;
  font-size: 24px;
  text-align: center;
}
.wheel-search-bar > p.text-p {
  width: 80px;
  height: auto;
  text-align: left;
  line-height: 30px;
}
#inputMainTireSize {
  width: 170px;
  height: 30px;
  padding: 0 10px 0 10px;
  background: white;
  border: 0;
  color: black;
  font-size: 14px;
  margin-right: 10px;
}
#btnMainTireSize {
  width: 60px;
  height: 30px;
  background: rgb(255,255,255);
  border: 0;
  color: #555;
  font-size: 14px;
}
.button-full {
  width: 200px;
  height: 50px;
  padding: 0;
}
.button-full .fillup-btn {
  width: 100%; height: 100%;
  border: 0;
  background-color: #f15050;
  color: white;
}

.footer-info-box {
  width: 1100px;
  height: 240px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--clr-primary);
  border-bottom: 1px solid var(--clr-primary);
  background: rgba(248,248,248,1);
}

.footer-info-box .info-box {
  padding: 20px 0px 5px 0px;
  border-right: 1px solid rgba(213,213,213,1);
  height: 100%;
  width: 33.3%;
}
.footer-info-box .info-box:last-child {
  border-right: 0;
}
.footer-info-box .info-box > p {
  width: 100%;
  height: 28px;
  line-height: 25px;
  text-align: left;
  margin: 0;
  padding: 0 10px 0 30px;
  font-size: 1.1rem;
}
.footer-info-box .info-box p.title-text {
  font-size: 1.0rem;
  padding: 0 10px 0 20px;
}
.footer-info-box .info-box p.small-text {
  font-size: 0.9rem;
}
.footer-info-box .info-box p.overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-info-box .info-box p.button-p {
  height: 40px;
  text-align: left;
}

.footer-menu-bar {
  width: 1100px;
  height: 40px;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(213,213,213,1);
  border-bottom: 1px solid rgba(213,213,213,1);
  justify-content: space-between;
}
.footer-menu-bar > ul {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0; padding: 0;
}
.footer-menu-bar > ul.footer-left-menu {
  justify-content: flex-start;
}
.footer-menu-bar > ul.footer-right-menu {
  justify-content: flex-end;
}
.footer-menu-bar > ul > li {
  list-style: none;
  text-decoration: none;
  color: rgba(113,113,113,1);
  padding: 0 5px 0 5px;
  justify-self: left;
  font-size: 0.8rem;
}

.footer-bottom-box {
  width: 1100px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248,248,248,1);
}
.footer-bottom-box .bottom-box {
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 0.8rem;
}
.footer-bottom-box .bottom-box div {
  line-height: 25px;
}
.footer-bottom-box .bottom-box .button-anchor {
  font-size: 0.8rem;
  padding: 0px 5px 0px 5px;
}
.footer-bottom-box .bottom-box-right {
  
  justify-content: center;
  
}
.footer-bottom-box .bottom-box-right p {
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1rem;
}

.popup-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; left: 0;
  background-color: rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 10000;
  display: none;
}
.main-search-box {
  width: 700px;
  height: 500px;
  background-color: white;
  z-index: 10001;
  padding: 50px 0 50px 0;
  position: fixed;
  top: 50%; left: 50%;
  margin-top: -250px;
  margin-left: -350px;
  overflow: auto;
  display: none;
}
.main-search-box .box-title {
  background-color: rgba(85,85,85,1);
  color: white;
  width: 100%;
  height: 50px;
  padding: 0 70px 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-search-box .box-title div {
  font-size: 1.1rem;
}
.main-search-box .box-title .close-icon {
  font-size: 2rem;
}
.main-search-box .box-tab-bar {
  width: 100%;
  height: 70px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f15050;
}
.main-search-box .box-tab-bar .box-tab-bar-btn {
  color: black;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}
.main-search-box .box-tab-bar .box-tab-bar-btn:first-child {
  border-left: 0;
}
.main-search-box .box-tab-bar .box-tab-bar-btn:last-child {
  border-right: 0;
}
.main-search-box .box-tab-bar .box-tab-bar-btn.active {
  background: #f15050;
  color: white;
}
.main-search-box .box-tab-body {
  width: 100%;
  height: 280px;
  display: none;
}
.main-search-box .box-tab-body .rows {
  display: flex;
  width: 100%;
  height: 55px;
  padding: 0 70px 0 70px;
  align-items: center;
  justify-content: center;
}
.main-search-box .box-tab-body .rows:first-child label {
  margin-bottom: 0;
  font-size: 0.8rem;
}
.main-search-box .box-tab-body .rows.flex-right-align {
  justify-content: flex-end;
}
.size-select {
  display: flex;
  width: 100%; height: 100%;
  align-items: center;
  justify-content: space-between;
}
.size-select select {
  width: 180px; height: 40px;
}
.main-search-box .main-search-btn {
  width: 160px; height: 40px;
  background-color: #f15050;
  color: white;
}
.main-search-box .main-reset-btn {
  width: 160px; height: 40px;
  background-color: rgba(85,85,85,1);
  color: white;
}
.howto-check-tiresize-image {
  width: 100%;
  height: 330px;
  background-color: white;
  background-image: url(/images/howtoCheckTireSize3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 600px 330px;
  margin-top: 30px;
}
.box-car-image {
  width: 100%;
  height: 120px;
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.box-car-name {
  height: 50px;
  text-align: center;
  color: black;
}
.box-car-name #carNameSpan {
  color: #f15050;
}
.box-car-tire-size-bar {
  margin: 0;
  padding: 0 50px 0 50px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}
.box-car-tire-size-bar .box-car-tire-size {
  cursor: pointer;
  margin: 0.5px;
  list-style: none;
  background-color: rgba(213,213,213,1);
  height: 50px;
  padding: 0 15px 0 15px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: black;
}
.box-car-tire-size-bar .box-car-tire-size.active {
  color: #f15050;
}

.box-car-tire-info-bar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.box-car-tire-button-bar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-grey-background {
  background-color: rgba(85,85,85,1);
}
.dark-light-background {
  background-color: rgba(225,225,225,1);
}

.page-title-box {
  width: 1100px;
  height: 100px;
  margin: 0 auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-big-banner {
  width: 1100px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.page-150-banner {
  width: 1100px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.page-200-banner {
  width: 1100px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.page-300-banner {
  width: 1100px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.box-gap {
  width: 100%;
  height: 50px;
}

.radio-select-div {
  width: 1100px;
  padding: 10px 50px 10px 0px;
  min-height: 60px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}
.radio-select-div .radio-select-div-title {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-select-div .radio-select-div-options {
  width: 850px;
  min-height: 40px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}
.radio-select-div .radio-select-div-options div {
  width: auto;
  height: 40px;
  padding: 0 15px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-order-div {
  width: 1100px;
  height: 50px;
  padding: 0 10px 0 10px;
  border-top: 1px solid #f15050;
  border-bottom: 1px solid rgba(113,113,113,1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-order-div .list-order-buttons-bar {
  display: flex;
  align-items: center;
  justify-content: end;
}
.list-order-div .list-order-buttons-bar button {
  border: 0;
  background-color: white;
  padding: 0 15px 0 15px;
  height: 20px;
  border-right: 1px solid rgba(113,113,113,1);
}
.list-order-div .list-order-buttons-bar button.active {
  color: #f15050;
}
.list-order-div .list-order-buttons-bar button.lastone {
  border-right: 0;
}

.list-items-div {
  width: 1100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}
.list-items-div .list-item {
  position: relative;
  width: 265px;
  height: 425px;
  border: 1px solid rgba(213,213,213,1);
  margin: 0 5px 50px 5px;
  overflow: hidden;
}
.list-items-div .list-item > div {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 25px;
  padding: 0 10px 0 10px;
  color: rgba(85,85,85,1);
}
.list-items-div .list-item .list-item-button-area {
  width: 100%;
  height: 295px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.list-items-div .list-item .list-item-button-area > div {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 25px;
  padding: 0 10px 0 10px;
  color: rgba(85,85,85,1);
}
.list-items-div .list-item .list-item-button-area .list-item-image {
  width: 100%;
  height: 150px;
  padding: 10px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-items-div .list-item .list-item-button-area .list-item-image img {
  width: auto;
  height: 130px;
}
.list-items-div .list-item .list-item-button-area .list-item-title {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  color: black;
}
.list-items-div .list-item .list-item-button-area .list-item-size {
  height: 30px;
  line-height: 30px;
  color: black;
}
.list-items-div .list-item .list-item-button-area .list-item-marking {
  font-size: 0.8rem;
  margin: 0;
  padding: 0 10px 0 10px;
  color: rgba(85,85,85,1);
  width: 263px;
  height: 25px;
  overflow: hidden;
  white-space:nowrap;
  text-overflow: ellipsis;
}
.list-items-div .list-item .list-item-button-area .list-item-comment {
  font-size: 0.8rem;
  margin: 0;
  padding: 0 10px 0 10px;
  color: rgba(85,85,85,1);
  width: 263px;
  height: 30px;
  overflow: hidden;
  white-space:nowrap;
  text-overflow: ellipsis;
}
.list-items-div .list-item .list-item-star-price {
  position: absolute;
  left: 0;
  bottom: 100px;
  border-top: 1px solid rgba(213,213,213,1);
  border-bottom: 1px solid rgba(213,213,213,1);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}
.list-items-div .list-item .list-item-star-price .star-graph {
  font-size: 0.8rem;
}
.list-items-div .list-item .list-item-star-price .base-price {
  text-decoration: line-through;
  color: rgba(113,113,113,1);
}
.list-items-div .list-item .list-item-quantity-price {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 50px; left: 0;
  background-color: white;
}
.list-items-div .list-item .list-item-quantity-price input[type=number] {
  width: 40px;
  text-align: right;
}
.list-items-div .list-item .list-item-quantity-price select.input-quantity {
  width: 50px;
  height: 30px;
  padding: 5px;
  line-height: 1;
  margin-bottom: 5px;
}
.list-items-div .list-item .list-item-button-bar {
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0; left: 0;
  background-color: white;
}
.list-items-div .list-item .list-item-button-bar button {
  border: 0;
  width: 50%;
  height: 100%;
}
.list-items-div .list-item .list-item-button-bar button.full-size {
  width: 100%;
}
.list-items-div .list-item .list-item-button-bar button.grey-button {
  color: rgba(113,113,113,1);
  border-right: 1px solid rgba(213,213,213,1);
  font-size: 1.1rem;
  background-color: white;
  border-top: 1px solid rgba(213,213,213,1);
}
.list-items-div .list-item .list-item-button-bar button.grey-button:last-child {
  border-right: 0;
}
.list-items-div .list-item .list-item-button-bar button.grey-button:hover {
  color: white;
  font-size: 1.1rem;
  background-color: #f15050;
  border-top: 1px solid #f15050;
}

.detail-info-main-box {
  width: 1100px;
  display: flex;
  flex-direction: row;
}
.detail-info-main-box-left {
  width: 450px;
  display: flex;
  align-items: flex-start;
}
.detail-info-main-box-left > img {
  width: auto;
  height: 350px;
}
.detail-info-main-box-right {
  width: 650px;
}
.detail-info-main-box-right > p {
  padding: 0 10px 0 10px;
  margin: 0;
  line-height: 49px;
  width: 100%;
  height: 50px;
  color: rgba(85,85,85,1);
  border-bottom: 1px solid rgba(213,213,213,1);
}
.detail-info-main-box-right > p.product-info-box {
  height:auto;
  font-size: 1.0rem;
  line-height: 1.5rem;
  white-space: pre-wrap;
  background-color: rgba(248,248,248,1);
  padding: 15px 20px 15px 20px;
}
.detail-info-main-box-right > p.double-border {
  border-bottom: 2px solid rgba(113,113,113,1);
}
.detail-info-main-box-right > p.no-border {
  border-bottom: 0;
}
.detail-info-main-box-right > p.button-bar {
  display: flex;
  justify-content: center;
  border-bottom: 0;
}
.detail-info-main-box-right > p.button-bar > button {
  width: 310;
  height: 50px;
  line-height: 48px;
  margin: 0;
  background: rgba(255,255,255,1);
  border: 1px solid rgba(213,213,213,1);
  padding: 0;
  border-right: 0;
}
.detail-info-main-box-right > p.button-bar > button:last-child {
  color: white;
  border: 1px solid rgba(213,213,213,1);
  border-right: 1px solid #f15050;
  background: #f15050;
}
.product-name {
  font-size: 1.3rem;
  /* color: #f15050; */
  color: var(--clr-lblue);
}
.product-comment {
  font-size: 1.1rem;
}
.product-info-box {
  height:auto;
  font-size: 1.0rem;
  line-height: 1.0rem;
  white-space: pre-wrap;
  background-color: rgba(248,248,248,1);
}
.product-size {
  color: black;
  font-size: 1.1rem;
}
.product-size-select {
  width: 120px;
  height: 30px;
  padding: 5px;
  line-height: 1;
  margin-bottom: 5px;
}
.product-quantity-select {
  width: 50px;
  height: 30px;
  padding: 5px;
  line-height: 1;
  margin-bottom: 5px;
}

.detail-info-tab-bar {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 1100px;
  height: 60px;
  background-color: rgba(213,213,213,1);
  border-bottom: 1px solid #f15050;
}
.detail-info-tab-button {
  box-sizing: content-box;
  background-color: white;
  float: left;
  /* border-top: 1px solid #f15050; */
  color: black;
  margin-right: 1px;
  width: 274px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  cursor: pointer;
}
.detail-info-tab-button.active {
  border-top: 1px solid #f15050;
  border-left: 1px solid #f15050;
  border-right: 1px solid #f15050;
  color: #f15050;
  margin-left: -1px;
  margin-right: 0;
  font-weight: bold;
}
.detail-info-tab-button:first-child.active {
  border-left: 1px solid white;
}
.detail-info-tab-button:last-child {
  border-right: 1px solid white;
  margin-right: 0;
}
.detail-info-tab-body {
  width: 1100px;
  height: auto;
  padding: 40px 50px 40px 50px;
}
.detail-info-text-title {
  padding: 0; margin: 0;
  font-weight: normal; font-size: 1.1rem;
  width: 100%;
  line-height: 30px;
  color: black;
}
.detail-info-text-explain {
  width: 100%;
  line-height: 30px;
  padding: 0 15px 0 15px;
  margin: 0;
  font-weight: normal; font-size: 0.9rem;
  color: rgba(85,85,85,1);
}
button.inline-text-btn {
  color: black;
  background: rgba(255,255,255,1);
  border: 1px solid rgba(213,213,213,1);
  padding: 0 15px 0 15px;
  height: 24px;
  line-height: 22px;
  font-size: 0.8rem;
}
button.inline-text-btn:hover {
  color: #f15050;
}
.detail-info-text-gap-bar {
  width: 100%;
  height: 30px;
}

div.hidden-form {
  display: none;
}

#zipFindBoxWrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index:10000;
}
#zipFindBox {
  display: none;
  position: fixed;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  margin: -250px 0 0 -250px;
  overflow: hidden;
  z-index: 10000;
  -webkit-overflow-scrolling: touch;
  background: white;
}
#zipFindBox #btnCloseLayer {
  cursor:pointer;
  position:absolute;
  right:-3px;
  top:-3px;
  z-index:10005;
}

/* -- 서브메뉴가 있는 페이지 --*/
.page-has-submenu-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 1100px;
}
.page-has-submenu-wrapper.no-menu {
  justify-content: center;
  min-height: 450px;
}
.page-has-submenu-wrapper > .page-sub-menu-box {
  width: 200px;
  padding: 50px 0 50px 0;
}
.page-has-submenu-wrapper > .page-sub-menu-box p {
  margin: 0;
  padding: 0;
}
.page-has-submenu-wrapper > .page-sub-menu-box > p.page-sub-menu-title {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #f15050;
  font-weight: bold;
  font-size: 1.2rem;
}
.page-has-submenu-wrapper > .page-sub-menu-box > ul.page-sub-menu-list {
  list-style: none;
  padding: 0 0 50px;
  margin: 0;
}
.page-has-submenu-wrapper > .page-sub-menu-box > ul.page-sub-menu-list > li {
  list-style: none;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid rgba(213,213,213,1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.page-has-submenu-wrapper > .page-sub-menu-box > ul.page-sub-menu-list > li.active {
  color: #f15050;
}
.page-has-submenu-wrapper > .page-sub-menu-box > div.info-box {
  width: 100%;
  height: auto;
  min-height: 400px;
  padding: 10px 5px 10px 5px;
  /* background: rgba(248,248,248,1); */
}
.page-has-submenu-wrapper > .page-sub-menu-box > div.info-box > p {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.page-has-submenu-wrapper > .page-sub-menu-box > div.info-box > p.line-p {
  height: 15px;
  border-bottom: 1px solid rgba(213,213,213,1);
  margin-bottom: 15px;
}
.page-has-submenu-wrapper > .page-sub-menu-box > div.info-box > p.small-blank-p {
  width: 100%;
  height: 5px;
}
.page-has-submenu-wrapper > .page-content {
  width: 900px;
  padding: 50px 0 0 50px;
}
.page-has-submenu-wrapper > .page-content.no-menu {
  width: 100%;
  padding: 50px 0;
}
.page-has-submenu-wrapper > .page-content > .page-title-bar {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid var(--clr-primary);
}
.page-has-submenu-wrapper > .page-content > .page-title-bar > span {
  font-weight: normal;
  font-size: 1.2rem;
}
.page-has-submenu-wrapper > .page-content > .page-title-bar > span.small {
  font-size: 0.9rem;
  font-weight: normal;
}

div.dm-service-banner {
  width: 1100px;
  height: 450px;
  background-image: url('/images/bannerBg01.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 30px 0 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.todo-bar {
 width: 100%;
 padding: 30px 20px 10px 20px;
}
.todo-bar > p {
  margin: 0; padding: 0 5px 0 5px;
  height: 30px;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 0;
  table-layout: fixed;
}

.paging-bar {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging-bar .paging-btn {
  width: 20px;
  height: 30px;
  display: block;
  line-height: 30px;
  text-align: center;
  color: black;
  cursor: pointer;
}
.paging-bar .current-page {
  width: 20px;
  height: 30px;
  display: block;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  color: rgba(0,168,255,1)
}