@charset "UTF-8";
/* z-index nav:1000; 나머지:~998 popup:1000+ */
html {
  font-size: 62.5%;
  overflow: auto;
}

.wrapper {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: .03rem;
  height: 100%;
  /*border: 1px solid #767676; 웹에서만 적용*/
  max-width: 800px;
  margin: 0 auto;
}

/* 로딩이미지 */
.loading-img {
  background-color: #3E90E3;
  width: 100%;
  height: 100vh;
  max-width: 800px;
  position: fixed;
  z-index: 9999;
}

.loading-img .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading-img p {
  position: absolute;
  bottom: 7%;
  right: 8%;
  text-align: end;
}

.loading-img p span {
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  font-weight: 200;
  position: relative;
}

.loading-img p span em::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #42c7ac;
  width: 77px;
  height: 7px;
  bottom: 25px;
  z-index: -1;
}

.loading-img p span:last-child {
  font-size: 23px;
  font-weight: 400;
  display: block;
  padding-top: 15px;
}

.loading-img p span:last-child::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 8px;
  right: 18%;
}

.loading-img p span:last-child::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 8px;
  right: 5%;
}

/*팝업창*/
.dimm {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  z-index: 1001;
}

.popup {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300px;
  padding: 60px 30px;
  background-color: #fff;
  opacity: 1;
  z-index: 1002;
}

.popup .p-con {
  background-color: #F8F8F8;
  padding: 15px 20px;
  border-radius: 4px;
  position: relative;
}

.popup .p-con .date {
  display: inline-block;
  width: 100%;
  font-weight: 200;
  font-size: 13px;
  color: #989898;
}

.popup .p-con .date .time {
  font-weight: 200;
  padding-left: 4px;
}

.popup .p-con .rst-txt {
  display: inline-block;
  padding-top: 5px;
  font-weight: 400;
  padding-left: 6px;
  font-size: 15px;
  line-height: 18px;
}

.popup .p-con + .check-txt {
  text-align: left;
  font-size: 15px;
  font-weight: 300;
  padding: 24px 0 60px;
  line-height: 18px;
}

.popup .login-logo {
  margin-bottom: 3rem;
}

.popup .login-logo h2 {
  width: 120px;
}

.popup .p-wrap h2 {
  width: 50%;
  margin: 0 auto 40px;
}

.popup .p-wrap span {
  display: inline-block;
  width: 100%;
}

.popup .p-wrap span.p-txt strong {
  padding-right: 6px;
}

.popup .p-wrap button.check {
  padding: 10px 30px;
  border: 2px solid #B8B8B8;
  background-color: #313131;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin: 30px auto 0;
  display: block;
}

/*헤더*/
.header {
  position: fixed;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F8F8F8;
  z-index: 998;
}

.header .h-wrap {
  width: 89.37%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 0;
}

.header .h-icon {
  width: 22px;
}

.header .logo img {
  width: 100px;
  padding: 0 11px 0 0;
}

.header .logo span {
  padding: 0 0 0 11px;
  border-left: 1px solid #B7B7B7;
  font-size: 14px;
}

.header .menu {
  width: 27px;
  cursor: pointer;
}

/* 네비*/
.m-nav {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  font-family: "NanumSquareB";
}

.m-nav .nav-top {
  background-color: #313131;
  padding: 14px 0;
  width: 100%;
  position: relative;
}

.m-nav .nav-top .nav-logo {
  display: block;
  width: 100px;
  margin: 0 auto;
}

.m-nav .nav-top .nav-close {
  display: inline-block;
  width: 20px;
  position: absolute;
  right: 23px;
  bottom: 18px;
}

.m-nav .nav-box a:focus, .m-nav .nav-box a:hover {
  text-decoration: underline;
}

.m-nav .nav-box ul.nav1depth > li {
  list-style: inside;
  font-size: 1.8rem;
  padding: 20px 0;
  border-bottom: 1px solid #B8B8B8;
}

.m-nav .nav-box .nav2depth {
  padding-left: 40px;
}

.m-nav .nav-box .nav2depth li {
  list-style: none;
  border: none;
}

.m-nav .nav-box .nav2depth li a {
  padding: 10px 0;
  display: inline-block;
}

.m-nav .nav-box .nav2depth li a:first-child {
  padding: 30px 0 10px;
}

.m-nav .nav-box .nav2depth li a:last-child {
  padding: 10px 0 20px;
}

/*푸터*/
footer {
  background-color: #F8F8F8;
  color: #fff;
  padding: 12px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  max-width: 800px;
}

footer .footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer-wrap div:last-child img {
  vertical-align: middle;
}

footer .footer-wrap span {
  display: block;
  padding-bottom: 8px;
  font-size: 1.2rem;
}

footer .footer-wrap span:last-child {
  padding-bottom: 0;
}

footer .more {
  position: relative;
}

footer .more .mbtn {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background-color: #2662EE;
  margin-bottom: 20px;
  bottom: 25px;
  right: 0;
  text-align: center;
  line-height: 45px;
  font-size: 15px;
  color: #fff;
}

footer .more .mbtn01 {
  bottom: 77px;
  background-color: #46c7cb;
}

/*컨텐츠*/
.c-box {
  width: 89.37%;
  margin: 0 auto;
}

.c-contents {
  padding-top: 50px;
}

/* 데이트피커 */
.serach-box button.ui-datepicker-trigger {
  display: none;
}

.ui-widget.ui-widget-content {
  width: 65%;
  margin: 0 auto;
  max-width: 320px;
}

.ui-widget.ui-widget-content .ui-widget-header .ui-icon {
  background-image: url("../images/ui-icons_777777_256x240.png");
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 17%;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-title {
  padding-left: 5px;
  font-size: 13px;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 17%;
  border: none;
  background: transparent;
  text-align: end;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #dddddd;
  font-weight: bold;
  color: #313131;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: none;
  background: transparent;
}

.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 {
  background-color: #F84256;
  color: #fff;
}

.ui-state-default {
  background: #fff5ea;
}

.ui-state-default:hover {
  background-color: #f8dde0;
}

.main-img {
  background: #3E90E3;
  padding: 15px 0;
}

.main-img .img-box {
  margin: 0 auto;
  width: 140px;
}

.main-img img {
  width: 140px;
}

.main-img .monitoring {
  text-align: center;
  padding-top: 7px;
  color: #fff;
}

.main-img .monitoring em {
  padding: 0 4px;
}

.main-img.off {
  background: #8E8E8E;
}

.main-img.off .monitoring {
  padding-right: 0;
}

.main-img.off .basic {
  display: none;
}

.main-cont li {
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 300;
}

.main-cont li:nth-of-type(odd) {
  background-color: #F8F8F8;
}

.main-cont li.main-last-li {
  background-color: #ffffff;
  border-top: 1px solid #F6F6F6;
  display: block;
}

.main-cont li.main-last-li em {
  padding-right: 2px;
  font-weight: 400;
}

.main-cont li.main-last-li #warnRst {
  color: #E81C1C;
}

.main-cont li.main-last-li #reportRst {
  color: #076BD1;
}

.main-cont li.main-last-li li {
  background-color: #F5F8FB;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 로그화면 */
.search {
  position: fixed;
  z-index: 99;
  background: #fff;
  width: 100%;
  max-width: 800px;
}

.search .drop > dt {
  padding: 12px 24px;
  -webkit-box-shadow: 0px 1px 5px #e9e9e9;
          box-shadow: 0px 1px 5px #e9e9e9;
  position: relative;
}

.search .drop > dt::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 1.3em;
  width: 14px;
  height: 9px;
  background: url(../img/arrow-bottom.svg) no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-size: cover;
}

.search .drop > dt.is-active::after {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.search .drop dd {
  padding: 24px 44px;
}

.search .drop dd.is-active {
  visibility: hidden;
  padding: 0;
}

.search .drop label {
  font-weight: 300;
}

.search input[type="text"] {
  border: 1px solid #DFDFDF;
}

.select-box {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 7px;
}

/* select box 글자색 - 검은색(기본)으로 20230308 */
.select-box .select-list {
  width: 85%;
  color: #000000;
  z-index: 2;
  padding: 6px 0;
  padding-left: 11px;
  cursor: pointer;
  border: 1px solid #DFDFDF;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  font-size: .8em;
}

.select-box .arrow {
  float: right;
  border-left: 1px solid #2662EE;
  padding: 0 6px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.select-box .arrow i {
  color: #2662EE;
  font-size: 18px;
}

.serach-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.serach-box .search-txt {
  width: 18.7rem;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
}

.serach-box input[type="text"] {
  padding: 8px;
  font-size: 14px;
  border-radius: 0;
}

.serach-box .sinput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 85%;
}

a.btn-search {
  background: #2662EE;
  color: #fff;
  text-align: center;
  display: block;
  padding: 10px 0;
  border: none;
  border-radius: 4px;
  outline: none;
  margin-top: 20px;
  font-size: 14px;
}

.btn-search > i {
  font-size: 14px;
  color: #fff;
  padding-right: 3px;
}

.cont {
  padding: 205px 2.5% 70px; 
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

/* 시간조건이 추가되며 검색영역 아래로 확장 20230308 */
.cont.visit {
  padding: 245px 2.5% 70px; 
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.cont.is-active {
  padding-top: 45px;
  -webkit-transition: .3s;
  transition: .3s;
}

.cont dl dt {
  margin-bottom: 14px;
}

.cont dl dd:nth-of-type(odd) {
  background-color: #F8F8F8;
  border: none;
}

.cont dl dd {
  padding: 15px 20px;
  background-color: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  position: relative;
}

.cont dl dd .date {
  display: inline-block;
  width: 100%;
  font-weight: 200;
  font-size: 13px;
  color: #989898;
}

.cont dl dd .time {
  font-weight: 200;
  padding-left: 4px;
}

.cont dl dd .rst-txt {
  display: inline-block;
  padding-top: 5px;
  font-weight: 400;
  padding-left: 6px;
}

.cont dl dd .rst-txt.warn::before {
  content: "경고";
  display: block;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 14px;
  padding-right: 14px;
  font-weight: 300;
  color: #E81C1C;
}

.cont dl dd .rst-txt.warn::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 11px;
  background: url(../img/Icon-warning.png) no-repeat center 0/12px;
  top: 17px;
  right: 20px;
}

.cont dl dd .rst-txt.rpt::before {
  content: "신고";
  display: block;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 14px;
  padding-right: 14px;
  font-weight: 300;
  color: #076BD1;
}

.cont dl dd .rst-txt.rpt::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/ico-rpt.png) no-repeat center 0/17px;
  top: 13px;
  right: 18px;
}

/*토글*/
.toggleSwitch {
  width: 41px;
  height: 16px;
  display: block;
  position: relative;
  border-radius: 20px;
  background-color: #CCCCCC;
  cursor: pointer;
}

.toggleSwitch .toggleButton {
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #9B9B9B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 체크박스가 체크되면 변경 이벤트 */
#monitor:checked ~ .toggleSwitch {
  background: #2662EE;
}

#location:checked ~ .toggleSwitch {
  background: #2662EE;
}

#notify:checked ~ .toggleSwitch {
  background: #2662EE;
}

/*package 추가 20230220*/
#package:checked ~ .toggleSwitch {
  background: #2662EE;
}

#monitor:checked ~ .toggleSwitch .toggleButton {
  left: calc(100% - 23px);
  background: #fff;
  border: 2px solid #7A9EF2;
}

#location:checked ~ .toggleSwitch .toggleButton {
  left: calc(100% - 23px);
  background: #fff;
  border: 2px solid #7A9EF2;
}

#notify:checked ~ .toggleSwitch .toggleButton {
  left: calc(100% - 23px);
  background: #fff;
  border: 2px solid #7A9EF2;
}

/*package 추가 20230220*/
#package:checked ~ .toggleSwitch .toggleButton {  
  left: calc(100% - 23px);
  background: #fff;
  border: 2px solid #7A9EF2;
}

.toggleSwitch, .toggleButton {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/*검색*/
.arrow {
  /* background: url(../img/ico-arrow-back.svg) no-repeat center center; */
  background-size: cover;
  width: 22px;
  height: 22px;
}

.btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-box a {
  padding: 11px 45px;
  border: 1px solid #b8b8b8;
  border-radius: 4px;
  letter-spacing: 1px;
  text-align: center;
  font-size: 1.3rem;
}

.btn-box .btn-cancel {
  border: 1px solid #b8b8b8;
}

.btn-box .btn-check {
  border: 2px solid #2662EE;
  background-color: #2662EE;
  color: #fff;
  margin-right: 10px;
}

/*로그인, 회원가입*/
.login-content {
  height: 100vh;
}

.login-box {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 7.4rem 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.login-box .l-btn-area {
  width: 74.9%;
  margin: 0 auto 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login-box .l-btn-area a {
  width: 47.5%;
  text-align: center;
  border: 1.5px solid #b8b8b8;
  padding: 1.2rem 0;
  border-radius: 4px;
  color: #447AD6;
  font-size: 1.4rem;
  font-weight: 300;
}

.login-box .l-btn-area a:hover {
  font-weight: 400;
}

.login-box #confirm {
  position: relative;
}

.login-box #confirm #timer {
  display: inline-block;
  position: absolute;
  color: #a0a0a0;
  font-size: 1.4rem;
  vertical-align: middle;
  right: 72px;
  top: 30%;
}

.login-box #confirm .confirm {
  padding: 0.8rem 1.5rem;
  position: absolute;
  right: 5px;
  top: 5px;
}

.frm {
  width: 74.9%;
  margin: 0 auto;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
textarea {
  display: inline-block;
  width: 100%;
  outline: none;
  border: 1px solid #9D9D9D;
  border-radius: 4px;
  font-size: 1.7rem;
  padding: .9rem 0 .9rem 1.8rem;
  font-size: 1.5rem;
  font-family: sans-serif;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 2px solid #83a8ff;
}

.frm.joinFrm .num {
  position: relative;
}

.frm.joinFrm .num .num-chk {
  padding: 0.8rem 1.2rem;
  position: absolute;
  right: 5px;
  top: 5px;
}

input[type="checkbox"] {
  -webkit-appearance: auto;
  vertical-align: middle;
}

.input {
  position: relative;
}

.input .birthSelect{
	padding: 0.9rem 0 0.9rem 1.8rem;
    width: 50%;
    font-size: 100%;
}

.input input[type="checkbox"] {
  -webkit-appearance: auto;
  cursor: pointer;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.input input[type="checkbox"]:focus,
.input input[type="text"]:focus,
.input input[type="password"]:focus,
.input input[type="email"]:focus,
.input input[type="number"]:focus,
.input input[type="checkbox"]:active,
.input input[type="text"]:active,
.input input[type="password"]:active,
.input input[type="email"]:active,
.input input[type="number"]:active {
  background-color: #f9feff;
}

.input input[type="checkbox"] + label {
  padding-left: 5px;
}

.input .label {
  position: absolute;
  display: inline-block;
  width: 100%;
  color: #707070;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  letter-spacing: 1px;
  font-size: 1.6rem;
  line-height: 2.8em;
  left: 20px;
}

.input .active {
  top: -10px;
  left: 0;
  -webkit-transition: 0.2s ease-in-out transform;
  transition: 0.2s ease-in-out transform;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  font-size: 1.4rem;
}

.input-pw {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.login-logo {
  margin-bottom: 6rem;
}

.login-logo h2 {
  width: 150px;
  margin: 0 auto;
}

.btn {
  width: 100%;
  background-color: #447AD6;
  border-radius: 4px;
  outline: none;
  padding: 1.2rem 0;
  margin: 1.4rem 0 2.1rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn:hover {
  background: #355dbb;
  -webkit-transition: .3s;
  transition: .3s;
}

.frm .input {
  margin-bottom: 2rem;
}

.frm .input:last-child {
  margin-bottom: 0;
}

.frm .btn {
  background: #2662EE;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
  font-size: 1.3rem;
}

.frm .btn:hover {
  background: #355dbb;
  -webkit-transition: .3s;
  transition: .3s;
}

.num-chk, .num-chk {
  width: auto;
  display: inline-block;
  padding: 1.1rem 2.4rem;
  border-radius: 4px;
  margin: 0;
  margin-left: .8rem;
  font-weight: 500;
}

/*약관동의*/
.agree-wrap {
  padding: 7.4rem 0;
}

.agree-wrap .consent {
  margin: 4rem 0 3rem;
}

.agree-wrap .consent .certMsg {
  font-size: 1.4rem;
  padding: 20px 0;
  line-height: 15px;
}

.agree-wrap .consent .consent-subtxt {
  padding: 10px 15px;
  margin: 10px 0;
  background: #efefef;
  border-radius: 4px;
  overflow: auto;
  font-size: 12px;
  line-height: 13px;
}

.agree-wrap .consent dt {
  margin: 10px 0;
  font-size: 14px;
}

.agree-wrap .consent label {
  font-size: 1.4rem;
  padding-left: 8px;
  cursor: pointer;
}

.agree-wrap .consent label:hover {
  text-decoration: underline;
}

.agree-wrap .consent i {
  vertical-align: middle;
  float: right;
  cursor: pointer;
}

.agree-wrap .consent .consent-dl {
  margin-bottom: 10px;
}

.agree-wrap .consent .consent-dl > li {
  margin: 2rem 0;
}

.agree-wrap .consent .consent-dl > li:first-child {
  margin: 0rem 0;
}

.agree-wrap .consent .consent-txt {
  padding: 10px 15px;
  background: #efefef;
  border-radius: 4px;
  font-size: 12px;
  word-break: keep-all;
  height: 120px;
  overflow: auto;
  line-height: 14px;
}

/**
  * Basic
  *
  * @author jh3y - jheytompkins.com
*/
.basic:before {
  content: '';
  display: inline-block;
  height: 18px;
  width: 18px;
  -webkit-animation: spin .5s infinite linear;
          animation: spin .5s infinite linear;
  border: 4px #03f9d7 solid;
  border-left-color: #9bffdb;
  border-radius: 100%;
  vertical-align: text-top;
}

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

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

/**
  * Double ringed
  *
  * @author jh3y - jheytompkins.com
*/
.double-ringed {
  position: relative;
}

.double-ringed:after, .double-ringed:before {
  border-radius: 100%;
  display: block;
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  left: 6px;
}

.double-ringed:after {
  height: 8px;
  width: 8px;
  top: 7px;
  left: 16px;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  -webkit-box-shadow: 13px 0 0 0 #2DFFE2, -13px 0 0 0 #2DFFE2;
          box-shadow: 13px 0 0 0 #2DFFE2, -13px 0 0 0 #2DFFE2;
}

.double-ringed:before {
  height: 24px;
  width: 24px;
  border: 2px solid #fff;
}

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

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

@media screen and (max-width: 450px) {
  .wrap .c-contents .watch dl .watch-date #datepicker .ui-datepicker select.ui-datepicker-month, .wrap .c-contents .watch dl .watch-date #datepicker .ui-datepicker select.ui-datepicker-year {
    width: 27%;
    text-align: center;
  }
  .wrap .c-contents .watch dl .watch-date #datepicker .ui-widget.ui-widget-content {
    width: 100%;
  }
  .wrap .c-contents .watch dl .watch-date .date-disc .sub-disc,
  .wrap .c-contents .watch dl .watch-date .date-disc .sub-disc02,
  .wrap .c-contents .watch dl .watch-date .date-disc .sub-disc03 {
    padding-right: 16px;
    font-size: 12px;
  }
  .wrap .c-contents .crnt-box .rev-box .txt-h3 ul li .reserve-chk span {
    left: 60%;
  }
  .joinFrm input[name="userNumber"] {
    width: 100%;
  }
  .login-box .l-btn-area a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 350px) {
  .ui-datepicker table {
    font-size: .7em;
  }
}
