.swiper-pagination span:focus-visible {
  outline: none;
  background-color: transparent;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}
.center {
  width: 1080px;
  margin: 0 auto;
}
.wrap {
  width: 100%;
  min-width: 1080px;
}
/* 해더 */
header {
  height: 80px;
}
header .center {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menuList {
  display: flex;
}
.menuList li {
  padding-left: 40px;
  padding-top: 5px;
}
.menuList li a {
  color: #000;
  position: relative;
}

.purinaLogo {
  margin-left: 25px;
  cursor: pointer;
}
.menuList li a.on {
  color: #000;
  font-weight: 500;
}
.menuList li a.on:after {
  position: absolute;
  content: "";
  right: 1px;
  bottom: -10px;
  left: 1px;
  height: 2px;
  background-color: #000;
}
/* 배너 */
.banner {
  width: 100%;
  position: relative;
}
.banner img {
  width: 100%;
}
.bannerClickWrap {
  position: absolute;
  width: 56%;
  height: 22%;
  left: 50%;
  bottom: 0;
  display: flex;
  transform: translateX(-50%);
}
.bannerClick {
  width: 25%;
  height: 100%;
  cursor: pointer;
}
/* 강아지,고양이 프로플랜 링크  */
.proplanLink {
  display: flex;
  padding: 0 50px;
  padding-top: 50px;
  justify-content: space-between;
}
.titleImgWrap {
  padding: 100px 0 0px 0;
}
.titleImg {
  width: 1080px;
}
/* 강아지,고양이 상담내역 */
.counselingLink{
  display: flex;
  padding: 20px 50px;
  justify-content: space-between;
}
.tabList {
  width: 100%;
  display: flex;
}
.tab {
  width: 25%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  color: #000;
  background-color: #fdf0f1;
  border-top: 2px solid #fdf0f1;
  position: relative;
  font-weight: 500;
}

.tab:last-child:after {
  background-color: #fff;
}
.tab.on {
  color: #fe9494;
  font-weight: bold;
  background-color: #fff;
}
.tabContentWrap .tabContent {
  display: none;
}
.tabContentWrap .tabContent:nth-child(1) {
  display: block;
}
.tabList .tab {
  width: 50%;
}

/* 상담내역 내용 */
.contentBox {
  padding: 30px 20px;
}
.title {
  display: flex;
  justify-content: space-between;
}
.titleSelect{
  display: flex;
}
.titleSelect .nice-select {
  width: 120px;
  border: 1px solid #848684;
  font-size: 15px;
}
.nice-select.typeCounseling{
  margin-right: 10px;
}
.titleSelect .nice-select .list {
  width: 100%;
}
.ageSelect.nice-select .list {
  max-height: 200px;
  overflow-y: auto !important;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.ageSelect.nice-select.open .list::-webkit-scrollbar {
  width: 3px;
}
.ageSelect.nice-select.open .list::-webkit-scrollbar-thumb {
  background-color: #2f3542;
}
.ageSelect.nice-select.open .list::-webkit-scrollbar-track {
  background-color: #c4c4c4;
}
.titleSelect .nice-select .option {
  font-weight: normal;
}
.title h5 {
  font-size: 16px;
  font-weight: 500;
}

.addCounseling {
  width: 120px;
  height: 41px;
  border: 0;
  font-size: 15px;
  background-color: #269ab5;
  color: #fff;
  border-radius: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.myCounseling{
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.myCounseling b{
  font-weight: 500;
  padding-top: 3px;
}
/* 나의 문의 체크박스  */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-right: 5px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  padding-top: 3px;
  letter-spacing: -1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 8px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 7px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #ff5a5c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.titleLink .typeCounseling{
  margin-right: 5px;
}
.counselingList {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.counselingList section {
  width: 49%;
  border: 1px solid #848684;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 40px;
}
.counselingList section:last-child {
  /* margin-bottom: 0; */
}
.listTitle h4 {
  font-size: 16px;
  padding-bottom: 2px;
  font-weight: normal;
}
.listTitle span {
  font-size: 14px;
  display: inline-block;
  color: #c0c8cd;
  padding-bottom: 7px;
}
.listContent {
  padding-top: 10px;
  font-size: 14px;
}
.listContent li {
  display: flex;
  align-items: center;
  height: 30px;
  width: 100%;
}
.listContent .box {
  border: 1px solid #848684;
  padding: 2px 0;
  width: 80px;
  text-align: center;
}
.listContent li span {
  display: inline-block;
  padding-left: 8px;
  width: 390px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.listContent li.on {
  color: #fe9494;
}
.listContent li.on .box {
  border: 1px solid #fe9494;
}
.listContent li.off {
  color: #c0c8cd;
}
.listContent li.off .box {
  border: 1px solid #c0c8cd;
}
/* 페이지네이션 */
.paginationWrap {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.pagination {
  display: flex;
  cursor: pointer;
}
.pagination > div img {
  width: 15px;
  height: 15px;
}
.pagination ul {
  display: flex;
}
.pagination > div,
.pagination li {
  border: 1px solid #c0c8cd;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-right: 0;
}

.pagination > div:last-child {
  border-right: 1px solid #c0c8cd;
}
.pagination li.on {
  color: #ff5a5c;
  border: 1px solid #ff5a5c;
  background-color: #ff5a5d1e;
}
/* 위로 올라가기 */
.upArrow {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}
.upArrow img {
  cursor: pointer;
}
/* 푸터 */
.footer {
  background-color: #464646;
}
.footerTop {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.footerNav ul {
  display: flex;
}
.footerNav ul li {
  padding-right: 24px;
}
.footerNav ul li a {
  font-size: 13px;
  color: #fff;
}
.footerNav ul li a:hover {
  color: #fe9494;
}
.footerNav ul .on a {
  color: #fe9494;
}
.familySite select {
  width: 140px;
  height: 25px;
}
.familySite .ui-selectmenu-button.ui-button {
  width: 11em !important;
  background-color: #464646;
  color: #fff;
}
.ui-button:hover,
.ui-button:focus,
.ui-button.ui-state-active:hover {
  background-color: #464646 !important;
  color: #fff !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: none !important;
}
.ui-menu .ui-menu-item-wrapper {
  background-color: #464646 !important;
  color: #fff !important;
  padding-left: 17px !important;
}

.familySite .ui-selectmenu-icon.ui-icon {
  display: none;
}
.footerLine {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.footerSns {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.snsList ul {
  display: flex;
}
.snsList ul li {
  margin-left: 8px;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
  line-height: 200%;
  padding-bottom: 20px;
}
.footerBottom h3 {
  font-size: 13px;
}
.footerBottom .space {
  display: inline-block;
  width: 12px;
}
.footerBottom .space.brWeb {
  display: block;
}
.footerBottom p {
  padding-top: 10px;
  color: #c2c2c2;
}
