/* 공용 실험기기 예약 page */
.card__inner {
  width: 15rem;
  height: 25rem;
  transition: transform 2s;
  transform-style: preserve-3d;
  position: relative;
}
.card__inner .card__front,
.card__inner .card__back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}
.card__inner.flipped {
  transform: rotateY(180deg);
}
.card__inner .card__front .card__content {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 4fr 1fr;
  place-items: center flex-start;
}
.card__inner .card__front .card__content .card__img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  background: url(/images/equipment/panda.jpg) no-repeat center center;
  background-size: cover;
}
.card__inner .card__front .card__content .card__text {
  display: grid;
  gap: 1rem;
}
.card__inner .card__front .card__content .card__text .card__text--main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #555;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card__inner .card__front .card__content .card__text .card__text--sub {
  font-size: 1.25rem;
  font-weight: 500;
}
.card__inner .card__back {
  background-color: #0f0;
  transform: rotateY(180deg);
  display: grid;
  place-items: center;
}
.card__inner .card__back.malfunc {
  background: rgba(0, 0, 0, 0.1) !important;
}
.card__inner .card__back.malfunc .malfuc__wrap {
  display: grid;
  place-items: center;
}
.card__inner .card__back.malfunc .malfuc__wrap .malfunc__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.card__inner .card__back .back__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #555;
}
.card__inner .card__back .back__title .manager__list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}
.card__inner .card__back .back__title .manager__list .manager__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
}
.card__inner .card__back .back__title .manager__list .manager__item .manager__label {
  font-size: 1.25rem;
  font-weight: 500;
  color: #555;
}
.card__inner .card__back .back__title .manager__list .manager__item .manager__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #555;
}
.card__inner .card__back .back__btn {
  display: flex;
  gap: 1rem;
}
.card__inner .card__back .back__btn > button {
  width: 5rem;
  height: 2rem;
  border: none;
  border-radius: 6px;
  background: #fff;
  font-weight: 600;
  color: #555;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.card__inner .card__back .back__btn > button:hover {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.4));
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}		

.slide__wrap {
  width: min(100%, 67.5rem);
  height: 100%;
  overflow: hidden;
}
.slide__wrap .slide__list {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  transition: transform 0.5s;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
.slide__btn .slide__btn--prev {
  position: absolute;
  top: 50%;
  left: 2.5%;
  transform: translateY(-50%);
  z-index: 99;
}
.slide__btn .slide__btn--prev .prev__btn {
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;
  background-color: #f6f6f6;
  position: relative;
  cursor: pointer;
}
.slide__btn .slide__btn--prev .prev__btn::after {
  content: "";
  width: 6px;
  height: 9px;
  background: url(/images/sub/use-center-bg.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide__btn .slide__btn--next {
  position: absolute;
  top: 50%;
  right: 2.5%;
  transform: translateY(-50%);
  z-index: 99;
}
.slide__btn .slide__btn--next .next__btn {
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;
  background-color: #f0f0f0;
  position: relative;
  cursor: pointer;
}
.slide__btn .slide__btn--next .next__btn::after {
  content: "";
  width: 6px;
  height: 9px;
  background: url(/images/sub/use-center-bg.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-con .modal__tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
}
.modal-con .modal__tab .tab__btn {
  width: 100%;
  height: 5rem;
  border: none;
  background: #f0f0f0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.modal-con .modal__tab .tab__btn.tab__btn--active {
  background: #fff;
  color: #555;
  filter: drop-shadow(0 0 0.5rem #f6f6f6);
  box-shadow: 0 0 0.5rem #f6f6f6;
}
.modal-con .modal__tab .tab__btn:hover {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.2));
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.modal-con .modal__detail {
  margin-bottom: 3rem;
}
.swiper-slide > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mt-intro-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 5rem;
	margin-bottom: 3rem;
}
.mt-intro-wrap .imgSwiper{
	width: 690px;
	height: 340px;
	margin: 0;
	border: 1px solid #eee;
}
.mt-intro>strong {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 40px;
}

.mt-intro .text__list{
	display: grid;
	grid-template-rows: max-content;
	row-gap: 1rem;
}
.mt-intro .text__list .text__item {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.mt-intro .text__list .text__item .mi-sub-tit{
	grid-column: 1 / 2;
	font-weight: 700;
	font-size: 1.125rem;
}

.mt-intro .text__list .text__item .mi-sub-cont{
	grid-column: 2 / 5;
	font-size: 1.125rem;
}

.date-select-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2rem;
	margin-top: 1rem;
}
.date-select-wrap .dt-sel-box {
	border: 1px solid #ddd;
	padding: 25px;
	position: relative;
	height: 40rem;
}
.date-select-wrap>li>p {
	font-size: 18px;
	margin-bottom: 12px;
}
.fc-theme-standard td, .fc-theme-standard th, .fc-theme-standard .fc-scrollgrid {
	border: none !important;
}
.date-select-wrap .fc-scroller-liquid-absolute, .date-select-wrap .fc-scroller-harness, .date-select-wrap .fc-scroller {
	overflow: inherit !important;
}
.date-select-wrap .fc-col-header, .date-select-wrap .fc-daygrid-body, .date-select-wrap .fc-scrollgrid-sync-table {
	width: 100% !important;
}
.fc-button {
	border: none !important;
	background-color: #fff !important;
}
.fc-today-button {
	display: none !important;
}
.fc th {
	background-color: 
}
.fc-col-header tr{
	height: 4rem;
	line-height: 4rem;
	background-color: #319A88;
}
.fc td, .fc th {
	border: none !important;
}
.date-select-wrap .fc-col-header tr>th>div {
	color: #fff;
}
.date-select-wrap .fc-daygrid-day.fc-day-today{
	background-color: transparent !important;
	border-radius: 50%;
	position: relative;
}
.fc .fc-daygrid-day-top {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.fc-day-sun a {
	color: #FF0000 !important;
	text-decoration: none !important;
}
.fc-day-sat a {
	color: #0000FF !important;
	text-decoration: none !important;
}
.fc-daygrid-day-frame {
	display: flex;
	justify-content: center;
	align-items: center;
}
.date-select-wrap .fc-scrollgrid-sync-table tr>td {
	width: 4rem;
	height: 4rem;
	cursor: pointer;
}
.date-select-wrap .fc-daygrid-day.fc-day-today>.fc-daygrid-day-frame {
	width: 48px !important;
	height: 48px !important;
	min-height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #CFDEF3;
	border-radius: 50%;
}
.fc-daygrid-day-number{
	font-weight: 500;
}
.date-select-wrap .fc-highlight{
	background-color: #0F59C5 !important;
	border-radius: 50%;
	color: #fff;
	height: 48px;
	width: 48px;
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
}
.fc-daygrid-day-frame:has(.fc-highlight) .fc-daygrid-day-number{
	color: #fff;
}
.fc-daygrid-day-top{
	z-index: 10;
}
.date-select-wrap .fc-button-primary:hover{
	background-color: transparent !important;
	border-color:transparent !important;
}
.fc .fc-button-primary:focus, .fc .fc-button-primary:not(:disabled).fc-button-active:focus, .fc .fc-button-primary:not(:disabled):active:focus{
	box-shadow:none !important;
}
.cal-sign {
	border-top: 1px dashed #2A2F38;
	position: absolute;
	bottom: 5%;
	left: 50%;
	width: calc(100% - 50px);
	transform: translateX(-50%);
	padding: 25px 0;
}
.info-sign {
	display: flex;
	column-gap: 3rem;
}
.info-sign > li {
	display: flex;
	column-gap: 1rem;
}
.info-sign>li>span {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
}
.info-sign .choose>span {
	background-color: #0F59C5;
}
.info-sign .today>span {
	background-color: #CFDEF3;
}
.info-sign .possible>span{
	border: 1px solid #B9B9B9;
	background: #fff;
}
.info-sign .impossible>span{
	background: #eee;
}
.info-sign .admin-app>span{
	background: #909295;
}

.timeOl{
	display: flex;
	flex-wrap: wrap;
}
.timeOl>li{
	width: 20%;
	height: 98px;
}
.timeOl>li>p{
	height: 40px;
	background: #319A88;
	border-right: 1px solid #fff;
	color: #fff;
	text-align: center;
	line-height: 40px;
}
.timeOl>li>.br-none{
	border-right: 0;
}
.timeOl>li .time-span{
	border: 1px solid #B9B9B9;
	height: 58px;
	width: 100%;
	display: inline-block;
	border-top: 0;
	border-left: 0;
	line-height: 58px;
	text-align: center;
}
.timeOl>li .bl-ok{
	border-left: 1px solid #B9B9B9;
}
.timeOl>li .time-sold{
	background: #eee;
}
.timeOl .admin-time>p{
	background: #B0B1B3;
}

.timeOl .admin-time>span{
	background: #909295;
}
.right-info-sign{
	padding: 32px 0;
	border-bottom: 1px dashed #2A2F38;
}
.time-bottom{
	padding-top: 32px;
}
.time-bottom>p{
	margin-bottom: 10px;
}
.time-bottom .time-select{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
}
.time-bottom .select-custom{
	width: 50%;
	height: 40px;
	position: relative;
	border: 1px solid #BEBEBE;
}
.time-bottom .select-custom select{
	height: 100%;
	width: 100%;
	-o-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	padding: 0 40px;
	outline: 0;
}
.time-bottom .select-custom::before{
	content: "";
	background: url(../../images/icon/time.png) no-repeat;
	width: 16px;
	height: 16px;
	z-index: 3;
	left: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.speech-wrap{
	display: flex;
	gap: 4px;
	align-items: center;
}
.question-icon{
	position: relative;

}
.question-icon>span{
	display: inline-block;
	width: 21px;
	height: 21px;
	background: #fff;
	border: 1px solid #20355D;
	border-radius: 50%;
	color: #20355D;
	text-align: center;
	font-weight: 500;
	cursor: pointer;
}
.speech-box{
	position: absolute;
	width: 175px;
	background: #fff;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
	border-radius: 4px;
	left: 50%;
	transform: translateX(-50%);
	top: 26px;
	opacity: 0;
	transition: all .6s;
}
.speech-box>p:first-child{
	background: #20355D;
	color: #fff;
	border-radius: 4px 4px 0 0;
	padding: 5px 10px;
}
.speech-box>p{
	padding:10px;
	font-weight: 500;
}
.question-icon>span:hover ~ .speech-box{
	opacity: 1;
}

.eq__wrap .eq__contaier .eq__contents {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn__box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 4rem;
}
.btn__box .modal__btn {
  width: 20rem;
  height: 5rem;
  border: 1px solid #eee;
  padding: 1rem 2rem;
  border-radius: 6px;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 700;
  color: #234e52;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn__box .modal__btn:hover {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.md-guide-txt{
	margin-top: 8px;
}
.md-guide-txt>span{
	text-decoration: underline;
	color: #0F59C5;
	font-weight: 700;
	cursor: pointer;
}

.horiz-tb-wrap{
	margin-top: 32px;
}
.horiz-tb-wrap>strong{
	font-size: 20px;
	font-weight: 700;
}
.horiz-tb-wrap>table{
	margin-top: 12px;
}

.eq-info__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	background-color: #F9F9F9;
	padding: 0 48px;
}
.eq-info__item {
	display: flex;
	align-items: center;
}
.eq-list__text {
	font-size: 18px;
}
.exclamation__icon::before {
	content: "!";
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #0F59C5;
	color: #FFF;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	margin-right: 6px;
}
.eq-info__btn {
	width: 12rem;
	height: 2.5rem;
	padding: 0;
	cursor:pointer;
}
.malfunction__icon--y {
	width: 100%;
    height: 100%;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
    background: url(/images/equipment/res_n_icon.png) no-repeat center center;
}
.malfunction__icon--n {
	width: 100%;
    height: 100%;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
    background: url(/images/equipment/res_y_icon.png) no-repeat center center;
}

.eq__list {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	place-items: center flex-start;
}
.eq__name {
	font-size: 1.25rem;
	font-weight: 500;
}
.eq__name--kr {
	font-size: 1.125rem;
}

.eq__img > img{
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.elipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}
.detail__wrap {
	height: 20rem;
	padding: 4rem;
	background-color: #F2F6FC;
}
.detail__container {
	overflow-x: auto;
	height: 100%;
}
.detail__container .eq__subtitle,
.tab__detail .eq__subtitle {
	font-weight: 700;
	margin-bottom: .75rem;
}
.detail__container .eq__subcontent,
.tab__detail .eq__subcontent {
	margin-bottom: .25rem;
}

.guide-step-wrap>li{
	display: flex;
	width: 100%;
	column-gap: 102px;
	align-items: center;
}
.guide-step-wrap>.step-arrow{
	padding: 10px 0;
	justify-content: center;
}

.step-use-wrap .icon-cbox{
	border-radius: 50%;
	max-width: 120px;
	max-height: 120px;
	width: 100%;
	height: 120px;
	border: 1px solid #ddd;
	position: relative;
	background-color: #fff;
}
.step-use-wrap .icon-cbox>p{
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	line-height: 26px;
	position: absolute;
	left: 0;
	top: 8px;
}
.step-use-wrap .icon-cbox1{
	margin-top: 30px;
	position: relative;
}
.step-use-wrap .icon-cbox1::before{
	content: "";
	position: absolute;
	width: 1px;
	height: 840px;
	background: #ddd;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	z-index: -1;
}
.step-use-wrap .icon-cbox1>p{
	background: #99CA3C;
}
.step-use-wrap .icon-cbox2>p{
	background: #319A88;
}
.step-use-wrap .icon-cbox3>p{
	background: #0F59C5;
}
.step-use-wrap .icon-cbox>img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.step-tbox-wrap{
	width: 100%;
}
.step-tbox-wrap>.step-txt-box{
	margin-bottom: 10px;
   
}
.step-tbox-wrap>.step-txt-box:last-child{
	margin: 0;
}
.step-txt-box{
	position: relative;
}
.step-txt-box::before{
	content: "";
	position: absolute;
	display: block;
	height: 1px;
	width: 162px;
	background: #ddd;
	left: -162px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.step-txt-box{
	border: 1px solid #ddd;
	width: 100%;
	padding: 40px;
}
.step-txt-box dt,
.step-txt-box dt>span{
	font-size: 20px;
	font-weight: 700;
	margin-right: .5rem;
}
.step-txt-box dt{
	margin-bottom: 12px;
}
.step-tit1{
	color: #99CA3C;
}
.step-tit2{
	color: #319A88;
}
.step-tit3{
	color: #0F59C5;
}
.step-txt-box dd>p{
	display: flex;
	align-self: center;
	gap: 8px;
	margin-top: 10px;
}
.step-txt-box dd{
	margin-bottom: 10px;
}
.step-dd-bold{
	font-weight: 700;
}
.inner-p2{
	display: flex;
	gap: 40px;
}

.manager__td {
	text-align: center;
	line-height: 80px;
}

.slider__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eq-name__container {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin-bottom: 60px;
	height: 4.5rem;
	background-color: #F8F9FA;
	border: 1px solid #DCDCDC;
}
.eq-name__title {
	grid-column: span 6;
	font-size: 1.5rem;
	font-weight: 700;
	place-self: center;
}
.eq-list__btn {
	width: 10rem;
	height: 3.5rem;
	place-self: center; 
}

.tab__container {
	height: 240px;
}
.tab__detail {
	overflow-x: auto;
	height: 100%;
}
.form__input--readonly--dark {
	font-weight: 600;
}