@charset "UTF-8";
:root {
  --accent-color: var(--accent-color);
  --second-color: #373f57;
  --border-color: #BBC1D0;
  --boxbg-color: #F4F6FB;
  --red-color: #E14444;
  --fc-border-color: #E6EBF6;
  --fc-today-bg-color: #EBF1FF;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Pretendard Variable";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1em;
  word-break: keep-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: 28px;
  font-weight: 500;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 400;
}

.blue {
  color: var(--accent-color);
}

.red {
  color: var(--red-color);
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .btns:hover {
    background-color: #fff;
    color: var(--accent-color);
  }
}
.btns:active {
  background-color: #fff;
  color: var(--accent-color);
}

.btns.btn-rect {
  border-radius: 10px;
}

.btns.btn-rd {
  border-radius: 999px;
}

.fc-other-month {
  z-index: 2 !important;
}

.width-con {
  width: 100%;
  max-width: 880px;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-scehdule-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: url(../img/delivery_schedule/bg_plane.png) 34% -160%;
  background-size: 260px;
  -webkit-transition: background-image 550ms ease-out, background-position 0ms;
  transition: background-image 550ms ease-out, background-position 0ms;
  overflow-y: hidden;
  color: var(--second-color);
}
.delivery-scehdule-container .title-wrap {
  padding: 60px 0 40px;
  width: 100%;
  background: #fff;
}
.delivery-scehdule-container .title-wrap .width-con {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container .title-wrap .width-con {
    padding: 0 20px;
  }
}
.delivery-scehdule-container .title-wrap .width-con h3 {
  margin-bottom: 10px;
  color: var(--accent-color);
}
.delivery-scehdule-container .select-wrap {
  display: none;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  padding: 0 0 20px 0;
  margin: 40px 0 0;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container .select-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.delivery-scehdule-container .select-wrap .select-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  cursor: pointer;
}
.delivery-scehdule-container .select-wrap .select-box .selected-view {
  position: relative;
  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;
  gap: 8px;
  margin: 0;
  padding: 0 15px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: border 200ms linear;
  transition: border 200ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container .select-wrap .select-box .selected-view:hover {
    border: 2px solid rgb(255, 255, 255);
  }
}
.delivery-scehdule-container .select-wrap .select-box .selected-view:active {
  border: 2px solid rgb(255, 255, 255);
}
.delivery-scehdule-container .select-wrap .select-box .selected-view#region_view {
  width: 160px;
}
.delivery-scehdule-container .select-wrap .select-box .selected-view#delivery_view {
  width: 140px;
}
.delivery-scehdule-container .select-wrap .select-box .selected-view.now_select {
  border: 2px solid rgb(255, 255, 255);
}
.delivery-scehdule-container .select-wrap .select-box .selected-view::after {
  content: url(../img/btn_expand_more.svg);
  -webkit-filter: brightness(12.5);
          filter: brightness(12.5);
}
.delivery-scehdule-container .select-wrap .select-box .option-list {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: calc(100% + 5px);
  left: 0;
  margin: 0;
  width: 100%;
  max-height: 288px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.07);
          box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.07);
  overflow: auto;
  z-index: 95;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.delivery-scehdule-container .select-wrap .select-box .option-list::-webkit-scrollbar {
  width: 6px;
  height: 0;
}
.delivery-scehdule-container .select-wrap .select-box .option-list::-webkit-scrollbar-track {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  margin: 4px 0;
  background: #f4f6fb;
  border-radius: 0 85px 85px 0/0 120px 120px 0;
}
.delivery-scehdule-container .select-wrap .select-box .option-list::-webkit-scrollbar-thumb {
  width: 6px;
  background: #bbc1d0;
  border-radius: 999px;
}
.delivery-scehdule-container .select-wrap .select-box .option-list.hide {
  visibility: hidden;
  opacity: 0;
}
.delivery-scehdule-container .select-wrap .select-box .option-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0 0 0 15px;
  min-height: 48px;
  color: var(--second-color);
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container .select-wrap .select-box .option-list li:hover {
    background: #f4f5f8;
  }
}
.delivery-scehdule-container .select-wrap .select-box .option-list li:active {
  background: #f4f5f8;
}
.delivery-scehdule-container .select-wrap .select-box .option-list li a {
  color: var(--second-color);
  font-size: 16px;
  font-weight: 600;
}
.delivery-scehdule-container .select-wrap .select-box .option-list li.selected {
  background: #f4f5f8;
}
.delivery-scehdule-container #entire_calendar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin: 40px 0 100px;
  width: 100%;
  max-width: 880px;
}
.delivery-scehdule-container #entire_calendar #tab_region {
  width: 100%;
  overflow: scroll;
}
.delivery-scehdule-container #entire_calendar #tab_region::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #tab_region {
    display: none;
  }
}
.delivery-scehdule-container #entire_calendar #tab_region .tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
}
.delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a {
  padding: 0 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  color: #fff;
}
.delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a:link, .delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a:visited {
  text-decoration: none;
  color: #fff;
}
.delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a:active {
  text-decoration: none;
  color: var(--accent-color);
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a:hover {
    color: var(--accent-color);
  }
}
.delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a.selected:link, .delivery-scehdule-container #entire_calendar #tab_region .tab-wrap a.selected:visited {
  color: var(--accent-color);
  background-color: #fff;
}
.delivery-scehdule-container #entire_calendar #calendar {
  max-width: 880px;
}
.delivery-scehdule-container #entire_calendar #calendar * {
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.delivery-scehdule-container #entire_calendar #calendar::after {
  content: "일정을 선택하면 상세 내용을 확인하실 수 있습니다.";
  display: block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8em;
  color: #fff;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar::after {
    padding: 0 20px;
  }
}
.delivery-scehdule-container #entire_calendar #calendar a[data-goto]:hover {
  text-decoration: none;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar {
  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;
  margin-bottom: 20px;
}
@media (min-width: 330px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar {
    padding: 0 20px;
  }
}
@media (min-width: 0px) and (max-width: 329px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar {
    padding: 0 10px;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 0px) and (max-width: 329px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-left {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-left .fc-dayGridMonth-button {
  position: relative;
  min-width: unset;
  width: 44px;
  height: 30px;
  border-radius: 999px;
  border: none;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  background: transparent;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 250ms linear, opacity 125ms linear;
  transition: all 250ms linear, opacity 125ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-left .fc-dayGridMonth-button:hover {
    -webkit-box-shadow: inset 0 0 0 1px rgb(255, 255, 255);
            box-shadow: inset 0 0 0 1px rgb(255, 255, 255);
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-left .fc-dayGridMonth-button.fc-button-active {
  visibility: hidden;
  opacity: 0;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-left .fc-dayGridMonth-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/btn_arrow_forward02.svg) 50% 50% no-repeat;
  background-size: 14.65px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-filter: brightness(1.5);
          filter: brightness(1.5);
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-center {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-center h2 {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  text-align: right;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 0px) and (max-width: 329px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group {
  gap: 6px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary {
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 99%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  min-width: unset;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary:active {
  background: rgba(255, 255, 255, 0.2);
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary .fc-icon {
  font-size: 18px;
  color: #fff;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary .fc-icon.fc-icon-chevron-left {
  margin-left: -2px;
  margin-top: -2px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-button-group .fc-button-primary .fc-icon.fc-icon-chevron-right {
  margin-left: 2px;
  margin-top: -2px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-AddScheduleBtn-button {
  margin-left: 20px;
  width: 90px;
  height: 30px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: var(--second-color);
  border-radius: 999px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-header-toolbar .fc-right .fc-AddScheduleBtn-button:hover {
    color: var(--accent-color);
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-widget-header {
  width: 100% !important;
  margin: 0 !important;
  border: unset !important;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-widget-header .fc-day-header {
  padding: 12px 0;
  background: #fff;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-widget-header .fc-day-header.fc-sat * {
  color: var(--accent-color);
}
.delivery-scehdule-container #entire_calendar #calendar .fc-widget-header .fc-day-header.fc-sun * {
  color: #EE1C25;
}
.delivery-scehdule-container #entire_calendar #calendar td, .delivery-scehdule-container #entire_calendar #calendar th {
  position: relative;
  border: none;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container {
  overflow: hidden !important;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week {
  padding: 22px 0;
  border-top: 1px solid var(--fc-border-color);
  height: auto !important;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week .fc-bg {
  background-color: transparent;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week .fc-bg .fc-today {
  background: transparent;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week .fc-bg .fc-today::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  margin-left: 5px;
  margin-top: 10px;
  background: #EBF1FF;
  border-radius: 10px;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week .fc-bg .fc-today::after {
    width: calc(100% - 2px);
    margin-left: 1px;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week .fc-day-top .fc-day-number {
  width: 100%;
  text-align: center;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-week .fc-event-container .fc-day-grid-event {
  cursor: auto;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-sat * {
  color: var(--accent-color);
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-sun * {
  color: #EE1C25;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-event {
  margin: 5px auto 0;
  width: calc(100% - 12px);
  border-radius: 10px;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-event {
    width: calc(100% - 4px);
    border-radius: 6px;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-event .fc-content {
  padding: 0 5px;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-event .fc-content {
    padding: 0 2px;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-event .fc-content .fc-title {
  display: -webkit-box;
  display: -ms-flexbox;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  max-height: 36px;
  color: inherit;
  overflow: hidden;
  vertical-align: top;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: break-spaces;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-day-grid-container .fc-event .fc-content .fc-title {
    font-size: 12px;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view {
  padding: 10px;
  border-radius: 16px;
  background: #fff;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view {
    border-radius: unset;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-day-top {
  position: relative;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-day-top .fc-day-number {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-bg .fc-day {
  position: relative;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-bg .fc-day::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  margin-left: 5px;
  margin-top: 10px;
  background: transparent;
  border-radius: 10px;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-bg .fc-day.day-focus::after {
  background: #FFECC0;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-content-skeleton tbody tr:first-child .fc-event {
  margin-top: 25px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridMonth-view .fc-event-container {
  pointer-events: none;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view {
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view {
    border-radius: unset;
  }
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week {
  padding: 10px 0;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week.fc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-bg .fc-today::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  margin-left: 5px;
  margin-top: 10px;
  background: transparent;
  border-radius: 10px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-day-top .fc-day-number {
  top: 0;
  width: 100%;
  text-align: center;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-content-skeleton tbody tr:first-child .fc-event {
  margin-top: 0px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-content-skeleton tbody .fc-event-container .fc-day-grid-event {
  margin: 0 0 0 6px;
  border-color: #FFF !important;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-content-skeleton tbody .fc-event-container .fc-day-grid-event:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: inherit;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-content-skeleton tbody .fc-event-container .fc-day-grid-event .fc-content {
  padding: 8px;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-content-skeleton tbody .fc-event-container .fc-day-grid-event .fc-content:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
.delivery-scehdule-container #entire_calendar #calendar .fc-dayGridDay-view .fc-week .fc-content-skeleton tbody .fc-event-container .fc-day-grid-event .fc-content .fc-title {
  position: relative;
  z-index: 5;
  padding-left: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.04em;
  color: #373F57;
}
.delivery-scehdule-container #average-schedule {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  overflow: hidden;
  width: 100%;
  max-width: 880px;
  word-break: keep-all;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule {
    width: 100%;
    padding: 0 20px;
  }
}
.delivery-scehdule-container #average-schedule #tab_vehicle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule #tab_vehicle {
    display: none;
  }
}
.delivery-scehdule-container #average-schedule #tab_vehicle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
}
.delivery-scehdule-container #average-schedule #tab_vehicle ul .btns {
  gap: 13px;
  font-size: 18px;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
          box-shadow: inset 0 0 0 1px #fff;
}
.delivery-scehdule-container #average-schedule #tab_vehicle ul .btns svg path {
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .delivery-scehdule-container #average-schedule #tab_vehicle ul .btns:hover {
    color: var(--second-color);
    -webkit-box-shadow: inset 0 0 0 1px transparent;
            box-shadow: inset 0 0 0 1px transparent;
  }
  .delivery-scehdule-container #average-schedule #tab_vehicle ul .btns:hover svg path {
    fill: var(--accent-color);
  }
}
.delivery-scehdule-container #average-schedule #tab_vehicle ul .btns:active {
  color: var(--second-color);
}
.delivery-scehdule-container #average-schedule #tab_vehicle ul .btns.selected {
  color: var(--second-color);
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0 1px transparent;
          box-shadow: inset 0 0 0 1px transparent;
  pointer-events: none;
}
.delivery-scehdule-container #average-schedule #tab_vehicle ul .btns.selected svg path {
  fill: var(--accent-color);
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule #tab_vehicle ul .btns {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.delivery-scehdule-container #average-schedule .scehdule-title {
  width: 100%;
  text-align: center;
  line-height: 2em;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
}
.delivery-scehdule-container #average-schedule .scehdule-sub {
  width: 100%;
}
.delivery-scehdule-container #average-schedule .scehdule-sub .scehdule-sub-title {
  width: 100%;
  text-align: left;
  line-height: 2em;
  color: #fff;
  font-weight: 200;
}
.delivery-scehdule-container #average-schedule .scehdule-sub h6 {
  width: 100%;
  text-align: left;
  line-height: 2em;
  color: #fff;
}
.delivery-scehdule-container #average-schedule .scehdule-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 10px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .scehdule-table {
    max-width: 160px;
  }
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .scehdule-table .timeline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .scehdule-table .timeline li {
    -ms-flex-preferred-size: 64px;
        flex-basis: 64px;
  }
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline .region {
  gap: 10px;
  width: 140px;
  font-size: 15px;
  font-weight: 600;
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline .week {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .scehdule-table .timeline .week {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline .week li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #F4F7FE;
  border-radius: 10px;
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline .week li.closed {
  border: unset;
  opacity: 0.3;
}
.delivery-scehdule-container #average-schedule .scehdule-table .timeline .week li:last-child {
  border: unset;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .scehdule-table .timeline .week li {
    -ms-flex-preferred-size: 64px;
        flex-basis: 64px;
  }
}
.delivery-scehdule-container #average-schedule .scehdule-table .region-notice {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  border-radius: 10px;
  background: #F4F6FB;
}
.delivery-scehdule-container #average-schedule .scehdule-table .region-notice li {
  margin-left: 20px;
  text-indent: -20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2em;
  word-break: break-all;
}
.delivery-scehdule-container #average-schedule .scehdule-table .region-notice li::before {
  content: "•";
  margin-left: 5px;
  margin-right: 10px;
}
.delivery-scehdule-container #average-schedule .entire-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.delivery-scehdule-container #average-schedule .entire-notice li {
  margin-left: 15px;
  text-indent: -15px;
  font-size: 15px;
  font-weight: 300;
  line-height: 2em;
  color: #fff;
}
.delivery-scehdule-container #average-schedule .entire-notice li::before {
  content: "•";
  margin-right: 10px;
}
.delivery-scehdule-container #average-schedule #select_schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: unset;
}
.delivery-scehdule-container #average-schedule .schedule-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .schedule-wrap {
    width: 100vw;
    padding: 20px;
  }
}
.delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 850ms ease-out;
  transition: opacity 850ms ease-out;
}
.delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule.selected {
  visibility: visible;
  opacity: 1;
  height: auto;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule {
    gap: 20px;
  }
}
.delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule .delivery-schedule-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule .delivery-schedule-wrap {
    padding: 20px 0;
    overflow: visible;
  }
  .delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule .delivery-schedule-wrap::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    display: block;
    width: 100vw;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
  }
}
.delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule .scehdule-table-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  width: 100%;
  overflow: visible !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 879px) {
  .delivery-scehdule-container #average-schedule .schedule-wrap .delivery-schedule .scehdule-table-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: unset;
  }
}