/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size:62.5% !important;
  color:#191919;
  letter-spacing:-0.02em;
  word-break:keep-all;
  word-wrap:break-word;
  box-sizing:border-box;
  -webkit-animation: fadein .3s ease forwards;
  animation: fadein .3s ease forwards;
  opacity: 0;
}

body {
  font-size:1.6rem;
}

ul,ol {
  list-style: none;
}

img {
  max-width:100%;
}

a {
  text-decoration:none;
  color:inherit;
  outline:none;
}

b, strong {
  font-weight:800;
}

button {
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

table {
  border-collapse:collapse;
}

input,select,textarea {
  padding-left:15px;
  padding-right:15px;
  font-family:inherit;
  font-size:1.8rem;
  font-weight:400;
  line-height:1.4;
  background-color:#fff;
  border:1px solid #ccc;
  -webkit-transition:all ease .1s;
  transition:all ease .1s;
  outline: none;
  border-radius:5px;
}

textarea {
  padding:10px;
  resize: none;
}

select {
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
}

select::-ms-expand {
  display:none;
}

::placeholder{
  color:#8a8a8a;
}

:-ms-input-placeholder{
  color:#8a8a8a;
}

::-ms-input-placeholder{
  color:#8a8a8a;
}

/* input:read-only, textarea:read-only {
  background-color: #f1f1f1;
} */

@-webkit-keyframes fadein {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

@keyframes fadein {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

html::-webkit-scrollbar {
  /* display: none; */
}

html {
  -ms-overflow-style: none;
  /* scrollbar-width: none; */
}

@media (max-width:1200px) {
  input,select,textarea {
    font-size:1.6rem;
  }
}
@media (max-width:1024px) {

}
@media (max-width:768px) {
  input,select,textarea {
    font-size:1.4rem;
    padding:0px 10px;
  }
}
@media (max-width:500px) {
  input,select,textarea {
    font-size:1.3rem;
  }
}


/* Overflow */
.hidden {
  overflow: hidden;
}


/* Display */
.sp{display:none;}
.mo{display:none;}

@media screen and (max-width:1024px){
  .sp{display:block;}
  .pc{display:none;}
}
@media screen and (max-width:768px){
  .tb{display:none;}
  .mo{display:block;}
}


/* Ellip */
.ellip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* Blind */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px,1px,1px,1px);
}


/* Block */
.block {
  display: block;
}


/* Font Weight */
.font-weight--semibold {
  font-weight:600;
}

.font-weight--bold {
  font-weight:700;
}


/* Color */
.color-gray9 {
  color:#939393;
}


/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
  border-radius:100px;
}

.button--brown01 {
  color:#fff;
  background-color: #c6b384;
}

@media (min-width:1201px) {
  .button--brown01:hover {
    background-color: #6e5f3b;
  }
}

/* Wrap */
.wrap--main,
.wrap--sub {
  padding-top:100px;
}

.wrap--privacy {
	padding: 20px 0px;
}


@media (max-width:1200px){
  .wrap--main,
  .wrap--sub {
    padding-top:60px;
  } 

	.wrap--privacy {
		padding: 20px 0px;
	}
}


/* Main */
#main {
  overflow: hidden;
  min-height: calc(100vh - 180px);
}

.wrap--bg #main {
  background-color:#fcfaf6;
}


/* Container */
.container {
  max-width:1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px; 
}


/* ---------------- S:Header ---------------- */
#header {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background-color: #fff;
}

#header .h-container {
  max-width:1730px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}

#header .h-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .h_logo {
  width:300px;
  height:44px;
}

#header .h_logo a {
  display: block;
  width:100%;
  height:100%;
  background: url('/en/img/common/h_logo.svg') no-repeat center;
}

#header .h_gnb {
  position: relative;
}

#header .h_gnb--mo {
  display: none;
}

#header .h_main {
  padding-right:190px;
}

#header .h_menu {
  display: flex;
  align-items: center;
  margin:0px 0px 0px 45px;
}

#header .h_menu__list {
  padding:16px;
  position: relative;
}

#header .h_menu__link {
  display: block;
  font-size: 1.6rem;
  line-height:1.2;
  margin:16px;
	text-align: center;
}

#header .last_link {
  width: 300px;
}

#header .h_menu__link h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color:inherit;
}

#header .h_submenu {
  overflow: hidden;
  position: absolute;
  top:100%;
  left:0;
  width:100%;
  max-height:0px;
  text-align: center;
  transition:all .35s ease;
  z-index:99;
}

#header .h_submenu li {
  margin-top:14px;
}

#header .h_submenu li:first-child {
  margin-top:22px;
}

#header .h_submenu a {
  display: block;
  font-size:1.4rem;
  font-weight:500;
	line-height:1.4;
  color:#999;
}

#header .h_assi {
  display: flex;
  align-items: center;
  position: absolute;
  top:50%;
  right:0;
  transform: translateY(-50%);
  z-index:10;
}

#header .h_member {
  position: relative;
  margin-right:60px;
}

#header .h_member__btn {
  display: block;
  width:24px;
  height:24px;
  background:url('/en/img/common/h_login.svg') no-repeat center; 
}

#header .h_member__menu {
  display: none;
  position: absolute;
  top:32px;
  left:50%;
  transform: translateX(-50%);
  min-width:100px;
  width:100%;
  background-color: #fff;
  border-radius:10px;
  padding:8px 0px;
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
  text-align: center;
}

#header .h_member__menu li {
  padding:8px 0px;
}

#header .h_member__menu a {
  display: block;
  font-size:1.4rem;
  font-weight:500;
  line-height:1;
}

#header .h_global {
  position: relative;
}

#header .h_global__btn {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
  font-weight:600;
  line-height:1;
  height:36px;
  padding:0px 20px;
  background-color: transparent;
  border:1px solid #191919;
  border-radius:20px;
}

#header .h_global__btn::after {
  content:"";
  display: block;
  margin-left:4px;
  border-top: 6px solid #191919;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transition:transform .3s ease;
}

#header .h_global__main li {
  text-align: center;
  font-size:1.6rem;
  font-weight:600;
  line-height:1;
  padding:0px 10px;
}

#header .h_mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h_mobile__btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h_mobile__btn span {
  position: relative;
  margin: 0 auto;
}

#header .h_mobile__btn span::before,
#header .h_mobile__btn span::after {
  content: "";
  position: absolute;
}

#header .h_mobile__btn span,
#header .h_mobile__btn span::before,
#header .h_mobile__btn span::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #191919;
}

#header .h_mobile__btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

@media (min-width:1201px){
  #header .h-background {
    position: absolute;
    top:100%;
    left:-50%;
    width:200%;
    height:0px;
    background-color: #fff;
    transition:all .3s ease;
    z-index:98;
  }

  #header .h_global__main {
    position: absolute;
    top:100%;
    left:0;
    width:100%;
    max-height:0px;
    opacity:0;
    visibility:hidden;
    overflow: hidden;
    background-color: #fff;
    border:1px solid #191919;
    border-top-color: transparent;
    border-radius:0px 0px 20px 20px;
    transition:all .3s ease;
  }

  #header .h_submenu li:hover a {
    color:#c0a258;
  }

  #header[data-header-submenu="on"] .h_submenu {
    max-height:340px;
  }

  #header[data-header-submenu="on"] .h-background {
    height:340px;
  }

  #header[data-header-member="on"] .h_member__menu--pc {
    display: block;
  }

  #header[data-header-global="on"] .h_global__btn {
    border-bottom-color: transparent;
    border-radius:20px 20px 0px 0px;
  }

  #header[data-header-global="on"] .h_global__btn::after {
    transform: rotate(-180deg);
  }

  #header[data-header-global="on"] .h_global__main {
    max-height:100px;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding:9px 0px;
  }
}
@media (max-width:1536px){
  #header .h_main {
    padding-right:240px;
  }

  #header .h_menu {
    margin:0px -32px;
  }
  
  #header .h_menu__list {
    padding:20px 16px;
  }
  
  #header .h_menu__link {
    margin:20px 16px;
  }
}
@media (max-width:1366px){
  #header .h_main {
    padding-right:200px;
  }

  #header .h_menu {
    margin:0px -24px;
  }
  
  #header .h_menu__list {
    padding:20px 12px;
  }
  
  #header .h_menu__link {
    margin:20px 12px;
  }

  #header .h_member {
    margin-right:40px;
  }
}
@media (max-width:1200px){
  #header {
    position: fixed;
    height:60px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,.15);
  }

  #header .h_gnb--pc {
    display: none;
  }

  #header .h_gnb--mo {
    display:block;
    width:100%;
  }

  #header .h_logo {
    position: absolute;
    top:12px;
    left:15px;
    width:252px;
    height:36px;
  }

  #header .h_logo a {
    background-size:auto 36px;
  }

  #header .h_main {
    position: fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100%;
    background-color: #fff;
    padding:60px 15px;
    transition:all .35s ease;
  }

  #header .h_menu {
    display: block;
    margin:0px;
  }

  #header .h_menu__list {
    padding:0px;
    border-bottom: 1px solid #ddd;
  }

  #header .h_menu__link {
    font-size:1.8rem;
    padding:15px 0px;
    margin:0px;
    border-bottom: 1px solid transparent;
  }

  #header .h_submenu {
    opacity: 0;
    visibility: hidden;
    position: relative;
    top: unset;
    left: unset;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    max-height: 0px;
    padding: 0px;
    margin: -12px 0px 12px;
    text-align: left;
    background-color: transparent;
  }

  #header .h_submenu li {
    margin:0px !important;
  }
  
  #header .h_submenu a {
    font-size:1.4rem;
    margin-top:12px;
  }

  #header .h_global {
    position: absolute;
    top:23px;
    left:15px;
  }

  #header .h_global__main {
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    position: relative;
    top: unset;
    left: unset;
  }

  #header .h_global__main ul {
    display: flex;
    align-items: center;
    margin:0px -6px;
  }

  #header .h_global__main li {
    padding:0px 6px;
  }

  #header .h_global__main a {
    display: block;
    font-size:1.6rem;
    font-weight:600;
    line-height: 1;
  }

  #header .h_global__main li.on a {
    color:#c6b384;
  }

  #header .h_member {
    margin:0px;
    border-bottom:1px solid #ddd;
  }

  #header .h_member__menu {
    display: flex;
    position: relative;
    top:unset;
    left:unset;
    transform: none;
    min-width:100%;
    border-radius: 0px;
    text-align: left;
    box-shadow: none;
    padding:15px 0px;
    margin:0px -10px;
  }

  #header .h_member__menu li {
    position: relative;
    padding:0px 10px;
  }

  #header .h_member__menu li::after {
    content:"";
    display: block;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    width:1px;
    height:12px;
    background-color: #191919;
  }

  #header .h_member__menu li:last-child::after {
    display: none;
  }

  #header .h_mobile {
    display: block;
  }

	.wrap--popup #header .h_mobile {
		display: none;
	}

  #header[data-header-mobile="on"] .h_main {
    right: 0;
  }

  #header .h_menu__link[data-menu-link="true"] + .h_submenu {
    visibility: visible;
    opacity: 1;
    max-height: 300px;
    margin: 0px 0px 12px;
  }
}
@media (max-width:768px) {
  #header .h_logo {
    top:16px;
    width:200px;
    height:28px;
  }

  #header .h_logo a {
    background-size:auto 28px;
  }

  #header .h_menu__link {
    font-size:1.6rem;
    padding:12px 0px;
  }

  #header .h_submenu {
    margin:-12px 0px 12px;
  }

  #header .h_submenu a {
    font-size:1.3rem;
  }

  #header .h_menu__link[data-menu-link="true"] + .h_submenu {
    margin:0px 0px 12px;
  }
}
/* ---------------- E:Header ---------------- */

/* ---------------- S:Footer ---------------- */
#footer {
  padding:40px 0px;
  background-color: #f3f3f3;
}

#footer .f-container {
  max-width:1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px; 
}

#footer .f_link {
  display: flex;
  margin:0px -10px;
}

#footer .f_link li {
  padding:0px 10px;
}

#footer .f_link a {
  font-size:1.6rem;
  font-weight:700;
  color:#262626;
}

#footer .f_info {
  display: flex;
  flex-wrap: wrap;
  margin:15px -10px;
}

#footer .f_info li {
  position: relative;
  font-size: 1.4rem;
  color:#6f6f6f;
  padding:0px 10px;
  margin:5px 0px;
}

#footer .f_info li.border::after {
  content:"";
  display:block;
  position: absolute;
  top:50%;
  right:0;
  transform: translateY(-50%);
  width:1px;
  height:12px;
  background-color: #6f6f6f;
}

#footer .f_info span {
  font-weight:700;
}

#footer .f_info li:first-child {
  width:100%;
}

#footer .f_copyright {
  font-size:1.4rem;
  font-weight:700;
  color:#6f6f6f;
}

@media (max-width:1200px) {
  #footer .f_link a {
    font-size:1.4rem;
  }

  #footer .f_info li {
    font-size:1.3rem;
  }

  #footer .f_copyright {
    font-size:1.3rem;
  }
}
@media (max-width:1024px) {
  #footer .f_link {
    margin:0px -6px;
  }

  #footer .f_link li {
    padding:0px 6px;
  }

  #footer .f_info {
    margin:13px -6px;
  }

  #footer .f_info li {
    padding:0px 6px;
    margin:3px 0px;
  }
}
@media (max-width:768px) {
  #footer {
    text-align: center;
  }

  #footer .f_link {
    justify-content: center;
    margin:0px -4px;
  }

  #footer .f_link li {
    padding:0px 4px;
  }

  #footer .f_link a {
    font-size:1.3rem;
  }

  #footer .f_info {
    justify-content: center;
    margin:10px -4px;
  }

  #footer .f_info li {
    font-size:1.2rem;
    padding:0px 4px;
    margin:2px 0px;
  }

  #footer .f_info li.border::after {
    display: none;
  }

  #footer .f_copyright {
    font-size:1.2rem;
  }
}
@media (max-width:500px) {
  #footer .f_link a {
    font-size:1.2rem;
  }
  
  #footer .f_info li {
    font-size:1.1rem;
  }

  #footer .f_copyright {
    font-size:1.1rem;
  }
}
/* ---------------- E:Footer ---------------- */

/* ---------------- S:Quick ---------------- */
.quick {
  position: fixed;
  top:50%;
  right:-120px;
  transform: translateY(-50%);
  z-index:998;
  opacity:0;
  animation: quick-fade .5s ease-out .6s forwards;
}

.quick ul {
  margin:-12px 0px;
}

.quick li {
  text-align: center;
  padding:12px 0px;
}

.quick .image {
  font-size:0px;
}

.quick .context {
  margin-top:6px;
}

.quick .context p {
  font-size:1.6rem;
  font-weight:600;
}

@keyframes quick-fade {
  from {
      right: -120px;
      opacity: 0;
  }
  to {
      right: 40px;
      opacity: 1;
  }
}

@media (max-width:1200px){
  .quick {
    right:-80px;
  }

  .quick ul {
    margin:-6px 0px;
  }
  
  .quick li {
    padding:6px 0px;
  }

  .quick .context {
    display: none;
  }

  @keyframes quick-fade {
    from {
        right: -80px;
        opacity: 0;
    }
    to {
        right: 20px;
        opacity: 1;
    }
  }
}
@media (max-width:1024px){
  .quick {
    top:unset;
    bottom:40px;
    transform: none;
  }
}
@media  (max-width:768px){
  .quick {
    bottom:20px;
  }

  .quick ul {
    margin:-4px 0px;
  }
  
  .quick li {
    padding:4px 0px;
  }

  .quick .image {
    width:48px;
  }
}
/* ---------------- E:Quick ---------------- */

/* ---------------- S:Form Calendar ---------------- */
.calendar .calendar-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom:40px;
}

.calendar .calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width:320px;
  width:100%;
}

.calendar .calendar-controls .arrow {
  display: block;
  width:36px;
  height:36px;
  background-repeat: no-repeat;
  background-position: center;
}

.calendar .calendar-controls .arrow--prev {
  background-image: url('/en/img/common/calendar_prev.png');
}

.calendar .calendar-controls .arrow--next {
  background-image: url('/en/img/common/calendar_next.png');
}

.calendar .calendar-controls p {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  font-size:4rem;
  font-weight:600;
  line-height: 1;
  white-space: nowrap;
}

.calendar .calendar-whether {
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
}

.calendar .calendar-whether p {
  display: inline-block;
  vertical-align: middle;
  margin-right:40px;
  font-size:1.8rem;
  font-weight:500;
  line-height: 1;
}

.calendar .calendar-whether p:last-child {
  margin-right:0px;
}

.calendar .calendar-whether .icon {
  display: inline-block;
  vertical-align: middle;
  width:24px;
  height:24px;
  margin-right:10px;
  background-repeat: no-repeat;
  background-position: center;
  font-size:0px;
}

.calendar .calendar-whether .icon--01 {
  background-image: url('/en/img/common/calendar_whether01.png');
}

.calendar .calendar-whether .icon--02 {
  background-image: url('/en/img/common/calendar_whether02.png');
}

.calendar .calendar-table {
  background-color: #fff;
  border-top:2px solid #04465c;
  border-bottom:1px solid #c6c6c6;
}

.calendar .calendar-table .thead {
  border-bottom:1px solid #c6c6c6;
}

.calendar .calendar-table .tbody .row {
  border-bottom:1px solid #c6c6c6;
}

.calendar .calendar-table .tbody .row:last-child{
  border-bottom:0px;
}

.calendar .calendar-table .row {
  display: flex;
}

.calendar .calendar-table .th,
.calendar .calendar-table .td {
  flex:1 1;
}

.calendar .calendar-table .th {
  padding:10px;
  text-align: center;
}

.calendar .calendar-table .td {
  padding:20px;
  border-right:1px solid #c6c6c6;
}

.calendar .calendar-table .td.weekend {
  background-color: #fbe3de;
}

.calendar .calendar-table .td.weekend .calendar-day {
  color:#ff1616;
}

.calendar .calendar-table .td:last-child {
  border-right:0px;
}

.calendar .calendar-table .calendar-day {
  font-size:2.4rem;
  font-weight:700;
  line-height:1;
  margin-bottom:20px;
}

.calendar .calendar-info dd {
  display: flex;
  align-items: center;
  padding-bottom:2px;
}

.calendar .calendar-info dd:last-child {
  padding-bottom:0px;
}

.calendar .calendar-info .icon {
  display: block;
  width:24px;
  height:24px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right:10px;
}

.calendar .calendar-info span {
  display: block;
  font-size:1.4rem;
  font-weight:500;
}

.calendar .calendar-info dd.use-yes .icon {
  background-image: url('/en/img/common/calendar_whether01.png');
}

.calendar .calendar-info dd.use-no .icon {
  background-image: url('/en/img/common/calendar_whether02.png');
}

.calendar .calendar-info dd.use-no span {
  color:#6f6f6f;
  text-decoration-line: line-through;
}

.calendar .calendar-buttons {
  display: flex;
  justify-content: center;
  margin-top:40px;
}

.calendar .calendar-buttons .button {
  max-width:240px;
  width:100%;
  height:64px;
  font-size:2rem;
  font-weight:500;
  color:#fff;
  background-color: #c4b69d;
  border-radius:0px;
}

@media (min-width:1201px) {
  .calendar .calendar-buttons .button:hover {
    background-color: #c0a258;
  }
}
@media (max-width:1200px) {
  .calendar .calendar-controls p {
    font-size:3rem;
  }
  
  .calendar .calendar-whether p {
    font-size:1.6rem;
    margin-right:40px;
  }

  .calendar .calendar-whether .icon {
    width:19px;
    height:19px;
    background-size:auto 19px;
  }
  
  .calendar .calendar-table .calendar-day {
    font-size:2rem;
  }

  .calendar .calendar-table .th, 
  .calendar .calendar-table .td {
    font-size:1.4rem;
  }

  .calendar .calendar-info span {
    font-size:1.3rem;
  }

  .calendar .calendar-info .icon {
    width:19px;
    height:19px;
    background-size:auto 19px;
  }

  .calendar .calendar-buttons .button {
    max-width:200px;
    height:52px;
    font-size:1.8rem;
  }
  
}
@media (max-width:1024px) {
  .calendar .calendar-heading {
    margin-bottom:30px;
  }

  .calendar .calendar-whether p {
    margin-right:30px;
  }

  .calendar .calendar-controls {
    max-width:240px;
  }

  .calendar .calendar-controls .arrow {
    width:28px;
    height:28px;
    background-size:auto 28px;
  }

  .calendar .calendar-scroll {
    overflow: hidden;
  }

  .calendar .scroll-wrap {
    overflow-x: scroll;
  }

  .calendar .scroll-wrap::-webkit-scrollbar {
    width:8px;  
    height:8px;
  }
  
  .calendar .scroll-wrap::-webkit-scrollbar-thumb {
    background: #c5a965;
    border-radius: 10px;
  }
  
  .calendar .scroll-wrap::-webkit-scrollbar-track {
    background: rgba(197, 169, 101, .3);
  }

  .calendar .calendar-table {
    min-width:1100px;
  }

  .calendar .calendar-table .td {
    padding: 16px;
  }

  .calendar .calendar-table .calendar-day {
    margin-bottom: 16px;
  }

  .calendar .calendar-buttons {
    margin-top:30px;
  }  
}
@media (max-width:768px) {
  .calendar .calendar-heading {
    margin-bottom:22px;
  }

  .calendar .calendar-whether .icon {
    width:15px;
    height:15px;
    background-size:auto 15px;
    margin-right:6px;
  }

  .calendar .calendar-whether p {
    font-size:1.4rem;
    margin-right:22px;
  }

  .calendar .calendar-controls {
    max-width:200px;
  }

  .calendar .calendar-controls .arrow {
    width:24px;
    height:24px;
    background-size:auto 24px;
  }

  .calendar .calendar-controls p {
    font-size:2.4rem;
  }

  .calendar .calendar-table {
    min-width:900px;
  }

  .calendar .calendar-table .th, 
  .calendar .calendar-table .td {
    font-size:1.3rem;  
  }

  .calendar .calendar-table .td {
    padding:12px;
  }

  .calendar .calendar-table .calendar-day {
    font-size:1.8rem;
    margin-bottom:12px;
  }

  .calendar .calendar-info .icon {
    width:15px;
    height:15px;
    background-size:auto 15px;
    margin-right:6px;
  }

  .calendar .calendar-info span {
    font-size:1.2rem;
  }

  .calendar .calendar-buttons {
    margin-top:22px;
  }

  .calendar .calendar-buttons .button {
    max-width:160px;
    height:44px;
    font-size:1.6rem;
  }
}
@media (max-width:500px) {
  .calendar .calendar-heading {
    justify-content: space-between;
    margin-bottom:18px;
  }

  .calendar .calendar-controls {
    max-width:130px;
  }

  .calendar .calendar-controls .arrow {
    width:16px;
    height:16px;
    background-size:auto 16px;
  }

  .calendar .calendar-controls p {
    font-size:1.8rem;
  }

  .calendar .calendar-whether {
    position: relative;
    top:unset;
    left:unset;
    transform: none;
    line-height: 1;
  }

  .calendar .calendar-whether p {
    font-size:1.2rem;
    margin-right:8px;
  }

  .calendar .calendar-table {
    min-width:740px;
  }

  .calendar .calendar-table .th, 
  .calendar .calendar-table .td {
    font-size:1.3rem;
    padding:6px;
  }

  .calendar .calendar-table .td {
    padding:8px;
  }

  .calendar .calendar-table .calendar-day {
    font-size:1.6rem;
    margin-bottom:8px;
  }

  .calendar .calendar-info .icon {
    margin-right:4px;
  }

  .calendar .calendar-buttons {
    margin-top:18px;
  }

  .calendar .calendar-buttons .button {
    max-width:120px;
    height:36px;
    font-size:1.4rem;
  }
}
/* ---------------- E:Form Calendar ---------------- */
