@charset "UTF-8";
:root {
  --main-bg-dark:#202125;
  --main-bg-light: #F4F3F4;
  --main-text-light: #B1B1B7;
  --main-text-grey: #828282;
  --main-text-dark: #4F4F4F;
  --main-border: #E1E1E1;
  --main-bg-light-second:#FDFCFD ;
  --main-bg-light-sum:#202125 ;
  --main-text-file-error: #e86760;
  --main-text-file-success: #95dd8f;
  --main-bg-table: #f9f9f9;
}

body.dark {
  --main-bg-dark:#202125;
  --main-bg-light: #16171B;
  --main-text-light: #B1B1B7;
  --main-text-grey: #828282;
  --main-text-dark: #F4F3F4;
  --main-border: #38383A;
  --main-bg-light-second: #202125;
  --main-bg-light-sum:#FDFCFD ;
  --main-text-file-error: #e86760;
  --main-text-file-success: #95dd8f;
  --main-bg-table: #444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../font/MuseoSansCyrl.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "MuseoSansCyrlNormal";
  src: url("../font/MuseoSansCyrl-300.woff") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "MuseoSansCyrlBold";
  src: url("../font/MuseoSansCyrl-500.woff") format("opentype");
  font-style: normal;
  font-weight: normal;
}
body {
  font-family: "MuseoSansCyrl";
  overflow-x: hidden;
  background-color: var(--main-bg-light);
}

a {
  text-decoration: none;
  cursor: pointer;
  font-family: "MuseoSansCyrl";
}

p, span {
  font-family: "MuseoSansCyrl";
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

li {
  list-style-type: none;
  cursor: pointer;
  font-family: "MuseoSansCyrl";
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

::-webkit-scrollbar-button {
  background-image: url("");
  background-repeat: no-repeat;
  width: 3px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: 0px 0px 3px transparent inset;
}

::-webkit-scrollbar-thumb {
  background-color: transparent;
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
}

::-webkit-resizer {
  background-image: url("");
  background-repeat: no-repeat;
  width: 4px;
  height: 0px;
}

::-webkit-scrollbar {
  width: 5px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000 !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.start {
  display: flex;
  height: 100vh;
}
.start-form {
  width: 35vw;
  background: #FDFCFD;
  border-right: 1px solid #E1E1E1;
  display: flex;
  justify-content: center;
  padding-top: 21vh;
}
.start-form form {
  max-width: 348px;
}
.start-form input {
  box-shadow: 0px 0px 11px rgba(58, 67, 76, 0.05), 0px 11px 11px rgba(58, 67, 76, 0.05);
}
.start-form img {
  width: auto;
  height: max-content;
  margin-bottom: 15vh;
}
.start-form .btn-blue {
  margin-top: 40px;
  width: 100%;
}
.start-form .password-block input {
  color: var(--main-text-dark);
  letter-spacing: 4px;
  padding-right: 50px;
}
.start-form .password-block.show input {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: initial;
}
.start-form div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.start-form div .form-checkbox label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
}
.start-form div a {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
}
.start-img {
  width: 65vw;
}
.start-img img {
  max-width: 922px;
  margin: 0 auto;
  object-fit: contain;
}
.start .form-group {
  min-width: 348px;
  margin-bottom: 20px;
}
.start-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #4F4F4F;
  margin-bottom: 35px;
}
.start-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #4F4F4F;
  margin-bottom: 33px;
}

.showPassword {
  position: absolute;
  cursor: pointer;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  z-index: 4;
}
.showPassword.active svg:first-child {
  display: none;
}
.showPassword.active svg:last-child {
  display: block;
}
.showPassword svg:last-child {
  display: none;
}

.showSave {
  position: absolute;
  cursor: pointer;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  z-index: 4;
}
.showSave.active svg:first-child {
  display: none;
}
.showSave.active svg:last-child {
  display: block;
}
.showSave svg:last-child {
  display: none;
}

@media screen and (max-width: 1050px) {
  .start > div {
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .start {
    height: auto;
    flex-direction: column;
  }
  .start-form {
    padding-top: 75px;
  }
  .start-img {
    background: #FDFCFD;
  }
  .start > div {
    width: 100vw;
  }
}
@media screen and (max-width: 420px) {
  .start-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .start-form img {
    margin-bottom: 50px;
  }
  .start-form div {
    flex-wrap: wrap;
  }
  .start-form div div, .start-form div a {
    margin: 5px 0;
  }
  .start .form-group {
    min-width: initial;
    width: 100%;
  }
}
.error_div {
  margin-top: 30px;
  color: #f00;
}

.error-color {
  color: #f00;
}

.error {
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 11vw;
}
.error-logo {
  width: max-content;
  height: auto;
  position: absolute;
  top: 60px;
  left: 60px;
}
.error img {
  max-width: 940px;
}
.error-info {
  max-width: 324px;
  margin-left: 6.24vw;
}
.error-info h1 {
  max-width: 285px;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  align-items: center;
  color: #4F4F4F;
}
.error-info p {
  font-size: 14px;
  line-height: 24px;
  color: #4F4F4F;
  margin-top: 25px;
}
.error-info .btn-blue {
  width: max-content;
  margin-top: 33px;
}
.error-msg {
  max-width: 324px;
  margin-left: 0;
}
.error-msg p {
  font-size: 17px;
  line-height: 24px;
  color: #ff0404;
  margin-top: 25px;
}
.error-copyright {
  position: absolute;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
  left: 60px;
  bottom: 200px;
}

@media screen and (max-width: 992px) {
  .error {
    padding-left: 0;
    padding: 0 30px;
  }
  .error-copyright {
    bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .error {
    padding-top: 100px;
    flex-direction: column;
  }
  .error-logo, .error-copyright {
    left: 30px;
  }
  .error-info {
    margin-left: 0;
    margin-top: 30px;
    max-width: initial;
  }
}
.environment_notice {
  background-color: #f00;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  margin: 2px;
  padding: 8px;
  overflow: hidden;
  white-space: nowrap;
}

.menu {
  background-color: var(--main-bg-dark);
  padding: 52px 35px 0 60px;
  width: 285px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  height: 100vh;
}
.menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}
.menu__top-items {
  display: flex;
  align-items: center;
  position: relative;
  right: -35px;
}
.menu__top-items .menu__colormode {
  margin-right: 10px;
}
.menu__top-items .menu__colormode:hover svg path {
  stroke: #2F80ED;
  fill: transparent;
}
.menu__top-items .menu__helpmpde {
  margin-right: 10px;
}
.menu__top-items .menu__helpmpde:hover svg path {
  stroke: #2F80ED;
  fill: transparent;
}
.menu__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-bg-dark);
  border: 1px solid var(--main-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu__circle:hover {
  border-color: #2F80ED;
  transition: all 0.5s ease-out;
}
.menu__circle:hover svg path {
  fill: #2F80ED;
  transition: all 0.5s ease-out;
}
.menu__logo {
  width: 68px;
  height: auto;
}
.menu__block {
  height: 100% !important;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.menu__block::-webkit-scrollbar {
  display: none;
}
.menu__block-item {
  margin-bottom: 25px;
}
.menu__block-item p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__block-item span, .menu__block-item a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-light);
  display: flex;
  align-items: center;
}
.menu__block-item svg {
  margin-right: 20px;
}
.menu__block-item.active:not(:nth-child(6)) span, .menu__block-item.active:not(:nth-child(6)) a {
  color: #2F80ED;
}
.menu__block-item.active:not(:nth-child(6)) svg path {
  stroke: #2F80ED;
}
.menu__block-item.active:nth-child(6) span, .menu__block-item.active:nth-child(6) a {
  color: #2F80ED;
}
.menu__block-item.active:nth-child(6) span svg path, .menu__block-item.active:nth-child(6) a svg path {
  fill: #2F80ED;
}
.menu__block-item:hover {
  transition: all 0.5s ease-out;
}
.menu__block-item:hover span, .menu__block-item:hover a {
  color: #2F80ED;
}
.menu__block-item:hover svg path {
  transition: all 0.5s ease-out;
  stroke: #2F80ED;
}
.menu__block-item:nth-child(6):hover span svg path, .menu__block-item:nth-child(6):hover a svg path {
  stroke: transparent;
  fill: #2F80ED;
}
.menu__block-sub {
  display: none;
}
.menu__block-sub li {
  padding-left: 45px;
  padding-top: 30px;
}
.menu.min {
  width: 100.5px;
  padding: 50px 30px 0 30px;
}
.menu.min .menu__displaymode {
  transform: rotate(180deg);
}
.menu.min .menu__top-items {
  position: static;
}
.menu.min .menu__logo,
.menu.min .menu__colormode,
.menu.min .menu__helpmpde,
.menu.min .menu__block p svg:last-child {
  display: none;
}
.menu.min .menu__block p span svg:last-child {
  display: block;
}
.menu.min .menu__block-item svg {
  margin-right: 0;
}
.menu.min .menu__block-item a, .menu.min .menu__block-item p {
  display: flex;
  justify-content: center;
}
.menu.min .menu__block a,
.menu.min .menu__block span {
  font-size: 0;
}
.menu-btn {
  width: 30px;
  height: 24px;
  position: relative;
  margin-left: 15px;
  display: none;
}
.menu-btn span {
  display: block;
  position: absolute;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 10px;
  height: 2px;
  min-height: 2px;
  width: 100%;
  background-color: var(--main-text-light);
}
.menu-btn span:after, .menu-btn span:before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  background-color: var(--main-text-light);
  height: 2px;
  min-height: 2px;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
}
.menu-btn span:after {
  bottom: -8px;
}
.menu-btn span:before {
  top: -8px;
}

.menu-sett {
  display: none;
}

.extend-dropdown-menu {
  left: auto;
  right: 0;
}

.board {
  width: 100vw;
  padding: 52px 0 60px 285px;
  min-height: 100vh;
}
.board.min {
  padding: 52px 0px 60px 102px;
}
.board-copy {
  margin-top: 96px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-light);
  padding-left: 60px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 65px 0 55px;
}
.header-bar {
  display: flex;
  align-items: center;
}
.header-bar > div {
  cursor: pointer;
}
.header-loc {
  margin: 0 20px;
}
.header-notif {
  position: relative;
}
.header-notif span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  position: absolute;
  border-radius: 50%;
  color: #FDFCFD;
  background: #FF00A8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  width: 22px;
  border: 2px solid #F4F3F4;
  top: -12px;
  right: -5px;
}
.header-user {
  display: flex;
  align-items: center;
  margin-left: 30px;
  cursor: pointer;
}
.header-user p {
  font-family: "MuseoSansCyrlBold";
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-light);
}
.header-user p span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  color: var(--main-text-dark);
}
.header-user img {
  box-shadow: 0px 5px 10px rgba(0, 60, 255, 0.06), 0px 5px 25px rgba(0, 60, 255, 0.06);
  border-radius: 100px;
  width: 36px;
  height: 36px;
  object-fit: cover;
  margin-left: 10px;
}
.header__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: var(--main-text-dark);
}
.header__title-min {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.header__title-min svg {
  margin-right: 5px;
}
.header-mobile {
  display: none;
}
.header-mobile-time {
  background-color: #e1e1e1 !important;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 5px 24px !important;
  gap: 8px;
  position: absolute;
  width: 100%;
  height: 34px;
  left: 0;
  top: 56px;
  border-bottom: 1px solid #e1e1e1 !important;
  border-radius: 0;
  cursor: pointer;
}
.header-mobile-time p {
  width: 100%;
}
.header-mobile-time p span {
  margin-left: 5px;
  position: relative;
}
.header-checkin_note_arrow {
  float: right;
}
.header-checkin_note_arrow path {
  stroke: var(--main-text-dark);
}
.header__green:hover {
  background-color: rgba(26, 186, 113, 0.2) !important;
}
.header__orange:hover {
  background-color: rgba(241, 132, 89, 0.58) !important;
}
.header__red:hover {
  background-color: rgba(185, 2, 2, 0.3) !important;
}
.header__grey:hover {
  background-color: rgba(117, 117, 117, 0.3) !important;
}
.header-time {
  padding: 9px 6px 9px 14px;
  /*background-color: rgba(26, 186, 113, 0.2);*/
  border-radius: 10px;
  margin-right: 20px;
  position: relative;
  width: 165px;
}
.header-time__nocheckin {
  /*background-color: rgba(161, 161, 161, 0.2);*/
  border: 1px solid var(--main-border);
}
.header-time__come {
  background-color: rgba(26, 186, 113, 0.2) !important;
}
.header-time__orange {
  background-color: rgba(253, 129, 76, 0.48) !important;
}
.header-time__go {
  background-color: rgba(117, 117, 117, 0.3) !important;
  font-weight: bold;
}
.header-time__error {
  background-color: rgba(185, 2, 2, 0.3) !important;
  font-weight: bold;
}
.header-time__drop {
  background: var(--main-bg-light-second);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  position: absolute;
  width: 100%;
  left: 0;
  top: 57px;
  display: none;
  z-index: 100;
}
.header-time__drop span {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  padding: 10px 15px;
  border-bottom: 1px solid var(--main-border);
}
.header-time__drop span svg {
  width: 6px;
  height: 6px;
  margin-right: 10px;
  margin-left: 9px;
}
.header-time__drop-separated {
  border-top: 1px solid var(--main-border) !important;
}
.header-time p {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  margin-bottom: 0;
}
.header-time p span {
  width: calc(100% - 22px);
  text-align: center;
}
.header-time p svg:first-child {
  width: 6px;
  height: 6px;
  margin-right: 10px;
  margin-left: 10px;
}
.header-time p svg:last-child {
  cursor: pointer;
  margin-left: 0;
  width: 18px;
  height: 18px;
}
.header-link .header__title {
  display: flex;
  align-items: center;
}
.header-link .header__title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #B1B1B7;
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.header-link .header__title a svg {
  margin-left: 15px;
}

.header-message {
  margin-left: 20px;
}

.item {
  position: relative;
}
.item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.item-circle-orange:after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 12px;
  height: 12px;
  border: 2px solid #F4F3F4;
  border-radius: 50%;
  background-color: #FAA237;
}

.item-circle-green:after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 12px;
  height: 12px;
  border: 2px solid #F4F3F4;
  border-radius: 50%;
  background-color: #1ABA71;
}

.item-basic {
  background-color: var(--rgba-color-var);
}
.item-basic:before {
  background-color: var(--hex-color-var);
}

.item-mobile {
  display: block;
  height: 50px;
  line-height: 50px;
  width: 100%;
}

.show_more_div {
  border-style: dashed;
  border-color: #777777;
  border-radius: 5px;
  background-color: #EEEEEE;
  border-width: 1px;
  padding: 3px;
  display: block !important;
  text-align: center;
  margin-bottom: 9px;
}

.item-orange {
  background-color: rgba(250, 162, 55, 0.3);
}
.item-orange:before {
  background-color: #FAA237;
}

.item-blue {
  background-color: rgba(47, 128, 237, 0.3);
}
.item-blue:before {
  background-color: #2F80ED;
}

.item-green {
  background-color: rgba(26, 186, 113, 0.3);
}
.item-green:before {
  background-color: #1ABA71;
}

.item-red {
  background-color: rgba(253, 65, 60, 0.3);
}
.item-red:before {
  background-color: #FD413C;
}

.item-grey {
  background-color: rgba(225, 225, 225, 0.3);
}
.item-grey:before {
  background-color: #E1E1E1;
}

.clickable_wish {
  border-width: 1px;
  border-style: dotted;
  padding: 14px;
}

/*input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}*/
.settings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 65px 0 55px;
}
.settings .settings-search {
  font-family: "MuseoSansCyrlBold";
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  display: flex;
  align-items: center;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  padding: 0 13px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.5s ease-out;
  position: relative;
  width: 19vw;
}
.settings .settings-search span {
  margin-right: 10px;
  height: 24px;
}
.settings .settings-search input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  background: transparent;
  color: #4F4F4F;
}
.settings-switch {
  display: flex;
}
.settings-switch a {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-light);
  transition: all 0.5s ease-out;
  padding-bottom: 5px;
  margin-right: 20px;
  border-bottom: 2px solid transparent;
  font-family: "MuseoSansCyrlBold";
  position: relative;
}
.settings-switch a span {
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD !important;
  background: #FF00A8;
  padding: 0 5px;
  border-radius: 50%;
  border: 2px solid #F4F3F4;
  top: -16px;
  right: -17px;
}
.settings-switch a.active {
  color: #2F80ED;
  border-color: #2F80ED;
}
.settings-switch a:hover {
  color: #2F80ED;
}
.settings-filter {
  position: relative;
  padding: 0 !important;
}
.settings-filter span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  display: flex;
  height: 50px;
  padding: 0px 13px;
  align-items: center;
}
.settings-filter svg {
  margin-right: 10px;
}
.settings-block {
  display: flex;
  align-items: center;
}
.settings-block .settings-search {
  max-width: 50vw;
}
.settings-block > div:not(.form-checkbox) {
  font-family: "MuseoSansCyrlBold";
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  padding: 0 13px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.5s ease-out;
  position: relative;
}
.settings-block > div:not(.form-checkbox) svg path {
  stroke: var(--main-text-dark);
}
.settings-block > div:not(.form-checkbox).settings-open span {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.settings-block > div:not(.form-checkbox).settings-open span svg {
  margin-right: 13px;
}
.settings-block > div:not(.form-checkbox).settings-open span svg path {
  stroke: var(--main-text-dark);
}
.settings-block > div:not(.form-checkbox).settings-location {
  width: max-content;
}
.settings-block > div:not(.form-checkbox).settings-location span {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.settings-block > div:not(.form-checkbox).settings-location span svg {
  margin-left: 13px;
  margin-right: 0;
}
.settings-block > div:not(.form-checkbox).btn-blue {
  color: #fff;
}
.settings-block > div:not(.form-checkbox).btn-blue:hover {
  color: #fff;
}
.settings-block > div:not(.form-checkbox).btn-blue:hover svg path {
  stroke: #fff;
}
.settings-block > div:not(.form-checkbox).btn-blue svg {
  margin-left: 15px;
}
.settings-block > div:not(.form-checkbox).btn-normal {
  color: #4F4F4F;
}
.settings-block > div:not(.form-checkbox).btn-normal svg {
  margin-left: 15px;
}
.settings-block > div:not(.form-checkbox):last-child {
  margin-right: 0;
}
.settings-block > div:not(.form-checkbox).active {
  color: #2F80ED;
  border-color: #2F80ED;
}
.settings-block > div:not(.form-checkbox).active svg path {
  stroke: #2F80ED;
}
.settings-block > div:not(.form-checkbox):hover {
  color: #2F80ED;
  border-color: #2F80ED;
}
.settings-block > div:not(.form-checkbox):hover svg path {
  stroke: #2F80ED;
}
.settings-administration {
  overflow-x: auto;
  margin-bottom: 30px;
}
.settings-administration__top {
  border-bottom: 0 !important;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 20px 10px;
}
.settings-administration__top_earning_and_shortage tr {
  border-bottom: 0 !important;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 20px;
  width: 100%;
}
.settings-administration__top_earning_and_shortage th {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_earning_and_shortage th:first-child {
  width: 75px;
}
.settings-administration__top_earning_and_shortage th:nth-child(2) {
  width: 40px;
}
.settings-administration__top_earning_and_shortage th:nth-child(3) {
  width: 40px;
}
.settings-administration__top_earning_and_shortage th:nth-child(4) {
  width: 40px;
}
.settings-administration__top_earning_and_shortage th:nth-child(5) {
  width: 70px;
}
.settings-administration__top_earning_and_shortage th:nth-child(6) {
  width: 70px;
}
.settings-administration__top_earning_and_shortage th:nth-child(7) {
  width: 45px;
}
.settings-administration__top_earning_and_shortage th:last-child {
  width: 20px;
  text-overflow: unset;
  overflow: unset;
}
.settings-administration__top_shift_plan p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_shift_plan p:first-child {
  width: 105px;
}
.settings-administration__top_shift_plan p:nth-child(2) {
  width: 39px;
}
.settings-administration__top_shift_plan_per_open_shift p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_shift_plan_per_open_shift p:first-child {
  width: 57px;
}
.settings-administration__top_shift_plan_per_open_shift p:nth-child(2) {
  width: 49px;
}
.settings-administration__top_auto-dp_entries p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_auto-dp_entries p:first-child {
  width: 75px;
}
.settings-administration__top_auto-dp_entries p:nth-child(2) {
  width: 80px;
}
.settings-administration__top_auto-dp_entries p:nth-child(3) {
  width: 50px;
}
.settings-administration__top_auto-dp_entries p:nth-child(4) {
  width: 75px;
}
.settings-administration__top_auto-dp_entries p:nth-child(5) {
  width: 75px;
}
.settings-administration__top_auto-dp_entries p:nth-child(6) {
  width: 60px;
}
.settings-administration__top_weekly_target_models p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_weekly_target_models p:first-child {
  width: 75px;
}
.settings-administration__top_weekly_target_models p:nth-child(2) {
  width: 75px;
}
.settings-administration__top_weekly_target_models p:nth-child(3) {
  width: 50px;
}
.settings-administration__top_weekly_target_models p:nth-child(4) {
  width: 30px;
}
.settings-administration__top_weekly_target_models p:nth-child(5) {
  width: 30px;
}
.settings-administration__top_weekly_target_models p:nth-child(6) {
  width: 30px;
}
.settings-administration__top_weekly_target_models p:nth-child(7) {
  width: 30px;
}
.settings-administration__top_weekly_target_models p:nth-child(8) {
  width: 30px;
}
.settings-administration__top_weekly_target_models p:nth-child(9) {
  width: 30px;
}
.settings-administration__top_weekly_target_models p:nth-child(10) {
  width: 30px;
}
.settings-administration__top_stamps_roundings p {
  text-align: center;
}
.settings-administration__top_stamps_roundings p:first-child {
  width: 100px;
}
.settings-administration__top_stamps_roundings p:nth-child(2) {
  width: 100px;
}
.settings-administration__top_stamps_roundings p:nth-child(3) {
  width: 50px;
}
.settings-administration__top_stamps_roundings p:nth-child(4) {
  width: 60px;
}
.settings-administration__top_stamps_roundings p:nth-child(5) {
  width: 80px;
}
.settings-administration__top_cost_numbers p {
  text-align: center;
}
.settings-administration__top_cost_numbers p:first-child {
  width: 50px;
}
.settings-administration__top_cost_numbers p:nth-child(2) {
  width: 60px;
}
.settings-administration__top_cost_numbers p:nth-child(3) {
  width: 60px;
}
.settings-administration__top_cost_numbers p:nth-child(4) {
  width: 60px;
}
.settings-administration__top_cost_numbers p:nth-child(5) {
  width: 100px;
}
.settings-administration__top_teams p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_teams p:first-child {
  width: 150px;
}
.settings-administration__top_teams p:nth-child(2) {
  width: 150px;
}
.settings-administration__top_payroll_areas p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_payroll_areas p:first-child {
  width: 150px;
}
.settings-administration__top_company_assign p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-administration__top_company_assign p:first-child {
  width: 150px;
}
.settings-administration-list {
  border-bottom: 0 !important;
}
.settings-administration-item {
  padding: 20px 10px 20px 10px;
  border-top: 1px solid var(--main-border);
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.settings-administration-item_earning_and_shortage td {
  text-align: center;
}
.settings-administration-item_earning_and_shortage td:first-child {
  width: 75px;
}
.settings-administration-item_earning_and_shortage td:nth-child(2) {
  width: 40px;
}
.settings-administration-item_earning_and_shortage td:nth-child(3) {
  width: 40px;
}
.settings-administration-item_earning_and_shortage td:nth-child(4) {
  width: 40px;
}
.settings-administration-item_earning_and_shortage td:nth-child(5) {
  width: 70px;
}
.settings-administration-item_earning_and_shortage td:nth-child(6) {
  width: 70px;
}
.settings-administration-item_earning_and_shortage td:nth-child(7) {
  width: 45px;
}
.settings-administration-item_earning_and_shortage td:last-child {
  width: 20px;
}
.settings-administration-item_shift_plan p {
  text-align: center;
}
.settings-administration-item_shift_plan p:first-child {
  width: 105px;
}
.settings-administration-item_shift_plan p:nth-child(2) {
  width: 39px;
}
.settings-administration-item_shift_plan_per_open_shift p {
  text-align: center;
}
.settings-administration-item_shift_plan_per_open_shift p:first-child {
  width: 57px;
}
.settings-administration-item_shift_plan_per_open_shift p:nth-child(2) {
  width: 49px;
}
.settings-administration-item_auto-dp_entries p {
  text-align: center;
}
.settings-administration-item_auto-dp_entries p:first-child {
  width: 75px;
}
.settings-administration-item_auto-dp_entries p:nth-child(2) {
  width: 80px;
}
.settings-administration-item_auto-dp_entries p:nth-child(3) {
  width: 50px;
}
.settings-administration-item_auto-dp_entries p:nth-child(4) {
  width: 75px;
}
.settings-administration-item_auto-dp_entries p:nth-child(5) {
  width: 75px;
}
.settings-administration-item_auto-dp_entries p:nth-child(6) {
  width: 60px;
}
.settings-administration-item_weekly_target_models p {
  text-align: center;
}
.settings-administration-item_weekly_target_models p:first-child {
  width: 75px;
}
.settings-administration-item_weekly_target_models p:nth-child(2) {
  width: 75px;
}
.settings-administration-item_weekly_target_models p:nth-child(3) {
  width: 50px;
}
.settings-administration-item_weekly_target_models p:nth-child(4) {
  width: 30px;
}
.settings-administration-item_weekly_target_models p:nth-child(5) {
  width: 30px;
}
.settings-administration-item_weekly_target_models p:nth-child(6) {
  width: 30px;
}
.settings-administration-item_weekly_target_models p:nth-child(7) {
  width: 30px;
}
.settings-administration-item_weekly_target_models p:nth-child(8) {
  width: 30px;
}
.settings-administration-item_weekly_target_models p:nth-child(9) {
  width: 30px;
}
.settings-administration-item_weekly_target_models p:nth-child(10) {
  width: 30px;
}
.settings-administration-item_stamps_roundings p {
  text-align: center;
}
.settings-administration-item_stamps_roundings p:first-child {
  width: 100px;
}
.settings-administration-item_stamps_roundings p:nth-child(2) {
  width: 100px;
}
.settings-administration-item_stamps_roundings p:nth-child(3) {
  width: 50px;
}
.settings-administration-item_stamps_roundings p:nth-child(4) {
  width: 60px;
}
.settings-administration-item_stamps_roundings div {
  width: 80px;
}
.settings-administration-item_cost_numbers p {
  text-align: center;
}
.settings-administration-item_cost_numbers p:first-child {
  width: 50px;
}
.settings-administration-item_cost_numbers p:nth-child(2) {
  width: 60px;
}
.settings-administration-item_cost_numbers p:nth-child(3) {
  width: 60px;
}
.settings-administration-item_cost_numbers p:nth-child(4) {
  width: 60px;
}
.settings-administration-item_cost_numbers p:nth-child(5) {
  width: 100px;
}
.settings-administration-item_teams p {
  text-align: center;
}
.settings-administration-item_teams p:first-child {
  width: 150px;
}
.settings-administration-item_teams p:nth-child(2) {
  width: 150px;
}
.settings-administration-item_payroll_areas p {
  text-align: center;
}
.settings-administration-item_payroll_areas p:first-child {
  width: 150px;
}
.settings-administration-item_company_assign p {
  text-align: center;
}
.settings-administration-item_company_assign p:first-child {
  width: 150px;
}
.settings__description {
  margin-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
  color: var(--main-text-dark);
  border-bottom: 1px solid var(--main-border);
}
.settings__tblItem {
  padding: 0;
  margin: 24px 0;
}

.form-checkbox {
  position: relative;
  margin-right: 32px;
}
.form-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.form-checkbox input:checked + label:after {
  border-color: #2F80ED;
}
.form-checkbox input:checked + label:before {
  opacity: 1;
}
.form-checkbox label {
  font-family: "MuseoSansCyrl";
  color: var(--main-text-dark);
  font-weight: 600;
  padding-left: 28px;
}
.form-checkbox label:after {
  content: "";
  border: 1px solid var(--main-text-grey);
  position: absolute;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.form-checkbox label:before {
  content: "";
  background: #2F80ED;
  position: absolute;
  border-radius: 5px;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  opacity: 0;
}

.form-radio {
  position: relative;
  margin-bottom: 10px;
}
.form-radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.form-radio input:checked + label {
  color: var(--main-text-dark);
}
.form-radio input:checked + label:after {
  border-color: #2F80ED;
}
.form-radio input:checked + label:before {
  opacity: 1;
}
.form-radio label {
  font-family: "MuseoSansCyrl";
  color: var(--main-text-grey);
  font-weight: 600;
  padding-left: 28px;
}
.form-radio label:after {
  content: "";
  border: 1px solid var(--main-text-grey);
  position: absolute;
  width: 20px;
  border-radius: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.form-radio label:before {
  content: "";
  background: #2F80ED;
  position: absolute;
  border-radius: 5px;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  opacity: 0;
}

.settings-toggle {
  display: flex;
  align-items: center;
}
.settings-toggle svg {
  cursor: pointer;
  margin: 0 5px;
}
.settings-toggle p {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-grey);
  margin-left: 20px;
}

.settings-block-item {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  display: flex;
  padding: 0 20px;
  align-items: center;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
}
.settings-block-item svg {
  margin-left: 15px;
}

.drop-settings {
  position: absolute;
  padding: 20px;
  display: none;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  top: 60px;
  z-index: 99;
  left: 0;
}
.drop-settings .form-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.drop-settings .form-flex .btn-blue {
  flex: 1;
  margin-left: 10px;
}
.drop-settings p {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  margin-bottom: 15px;
}
.drop-settings .form-checkbox {
  margin-bottom: 10px;
}
.drop-settings .form-checkbox label {
  color: var(--main-text-light);
}
.drop-settings .form-checkbox input:checked + label {
  color: var(--main-text-darkZK);
}

.settings-search {
  font-family: "MuseoSansCyrlBold";
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  display: flex;
  align-items: center;
  border: 1px solid var(--main-text-light);
  border-radius: 5px;
  height: 50px;
  padding: 0 13px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.5s ease-out;
  position: relative;
  width: 19vw;
}
.settings-search input::placeholder {
  font-family: "MuseoSansCyrl";
}

.settings__monthly-closing {
  justify-content: flex-end;
}

.settings-left-horizontal {
  justify-content: flex-end;
}

.settings-block-item {
  position: relative;
  cursor: pointer;
}

.overview {
  margin-top: 30px;
  border-top: 1px solid var(--main-border);
}
.overview span {
  color: var(--main-text-dark);
}
.overview-content {
  font-size: 18px;
  line-height: 48px;
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: #aaa;
}
.overview-calender {
  display: grid;
  grid-template-columns: 24.4vw repeat(7, 1fr) 60px;
  grid-auto-rows: min-content;
  position: relative;
  border-bottom: 1px solid var(--main-border);
  position: sticky;
  background-color: var(--main-bg-light);
  top: 0;
  z-index: 3;
}
.overview-calender p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 22px;
  font-family: "MuseoSansCyrlBold";
  color: var(--main-text-grey);
  border-right: 1px solid var(--main-border);
  padding: 25px 0;
}
.overview-calender p:first-child {
  justify-content: flex-start;
  padding-left: 60px;
}
.overview-calender p:first-child span {
  color: #2F80ED;
  font-size: 18px;
  line-height: 22px;
  font-family: "MuseoSansCyrlBold";
  padding-left: 12px;
}
.overview-calender-prev, .overview-calender-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--main-bg-light);
  border: 1px solid var(--main-border);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease-out;
  cursor: pointer;
}
.overview-calender-prev:hover, .overview-calender-next:hover {
  border-color: #2F80ED;
}
.overview-calender-next {
  right: 40px;
}
.overview-calender-next:disabled {
  pointer-events: none;
  opacity: 0.5;
  background: lightgrey;
}
.overview-calender-prev {
  left: calc(24.4vw - 20px);
}
.overview-item {
  display: grid;
  grid-template-columns: 24.4vw repeat(7, 1fr) 60px;
  grid-auto-rows: min-content;
  position: relative;
  border-bottom: 1px solid var(--main-border);
}
.overview-item-range {
  flex-direction: column;
}
.overview-item-range span {
  border-radius: 5px;
  min-height: 42px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  color: var(--main-text-dark);
}
.overview-item-range span:nth-child(2) {
  margin-top: 5px;
}
.overview-item__off {
  min-height: 60px;
  height: 100%;
  width: 100%;
  background-image: url("/images/bg.svg");
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "MuseoSansCyrlBold";
}
.overview-item__off:before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -2px;
}
.overview-item__notenrolled {
  min-height: 60px;
  height: 100%;
  width: 100%;
  background-image: url("/images/bg.svg");
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "MuseoSansCyrlBold";
}
.overview-item__ill:before {
  background-image: url("/images/ill.svg");
}
.overview-item__vacation:before {
  background-image: url("/images/vac.svg");
}
.overview-item__free:before {
  background-image: url("/images/clock.svg");
}
.overview-item:first-child p {
  padding: 15px 0;
}
.overview-item:nth-child(1) p.withHideElement span:nth-child(n+7) {
  display: none;
}
.overview-item:nth-child(1) p {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.overview-item:nth-child(1) p:not(:first-child) {
  align-items: flex-start;
  justify-content: flex-start;
}
.overview-item:nth-child(1) p:first-child span {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  font-family: MuseoSansCyrl;
  justify-content: flex-start;
}
.overview-item:nth-child(1) p span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  padding: 8px 5px;
  border-radius: 5px;
  color: var(--main-text-dark);
  min-width: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin: 2.5px;
}
.overview-item:nth-child(2) p.withHideElement span:nth-child(n+7) {
  display: none;
}
.overview-item:nth-child(2) p {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.overview-item:nth-child(2) p:not(:first-child) {
  align-items: flex-start;
  justify-content: flex-start;
}
.overview-item:nth-child(2) p:first-child span {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  font-family: MuseoSansCyrl;
  justify-content: flex-start;
}
.overview-item:nth-child(2) p span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  padding: 8px 5px;
  border-radius: 5px;
  color: var(--main-text-dark);
  min-width: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin: 2.5px;
}
.overview-item p {
  border: 1px solid transparent;
  border-right-color: var(--main-border);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  color: var(--main-text-dar);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.overview-item p.hover {
  cursor: pointer;
}
.overview-item p.hover:hover {
  padding: 0;
  border: 1px dashed var(--main-text-dark);
  align-items: center;
  justify-content: center;
  background-color: rgba(225, 225, 225, 0.3);
}
.overview-item p.hover:hover:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/images/plus.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overview-item p.hover-item {
  border: 1px dashed var(--main-text-dark);
  background-color: rgba(225, 225, 225, 0.3);
}
.overview-item p img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  object-fit: cover;
  margin-right: 15px;
}
.overview-item p:first-child {
  font-size: 14px;
  line-height: 17px;
  padding-left: 60px;
  color: var(--main-text-grey);
  font-family: "MuseoSansCyrl";
  justify-content: flex-start;
  padding-top: 15px;
  padding-bottom: 15px;
  pointer-events: none;
}
.overview-item:nth-child(n+3) p:first-child span:nth-child(2) {
  width: 9.9vw;
}
.overview-item:nth-child(n+3) p:first-child span:nth-child(3) {
  margin-right: 40px;
}

.overview-item:nth-child(2) div.hover-content {
  position: absolute;
  font-size: 14px;
  line-height: 17px;
  background-color: var(--main-text-dark);
  height: max-content;
  min-height: initial;
  width: max-content;
  color: #FDFCFD;
  padding: 3px 6px;
  top: -33px;
  left: -22px;
  pointer-events: none;
}
.overview-item:nth-child(2) div.hover-content:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--main-text-dark);
}

.overview.plan {
  border-top-color: #2F80ED;
}
.overview.plan .overview-calender svg path {
  stroke: var(--main-text-grey);
}
.overview.plan .overview-calender span {
  color: var(--main-text-dark);
}

.overview.daystamp-view {
  padding-right: 65px;
  overflow-x: auto;
}
.overview.daystamp-view::-webkit-scrollbar {
  display: none;
}
.overview.daystamp-view .overview-item {
  grid-template-columns: 450px repeat(16, 70px) !important;
  border-bottom: 0;
}
.overview.daystamp-view .overview-item:nth-child(2) {
  padding-right: 0;
}
.overview.daystamp-view .overview-item:nth-child(2) p span {
  margin: 0;
  padding: 0;
  max-width: initial;
}
.overview.daystamp-view .overview-item p {
  pointer-events: none;
  display: flex;
  border-bottom: 1px solid var(--main-border);
}
.overview.daystamp-view .overview-item p:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  position: relative;
}
.overview.daystamp-view .overview-item p:first-child > span {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 0 !important;
}
.overview.daystamp-view .overview-item p:first-child > span:first-child {
  width: 10vw;
  min-width: 200px;
}
.overview.daystamp-view .overview-item p:first-child > span:first-child span {
  width: 8vw;
  min-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
}
.overview.daystamp-view .overview-item p:first-child > span:nth-child(2) {
  width: 4vw;
  min-width: 73px;
}
.overview.daystamp-view .overview-item p:first-child > span:last-child {
  padding: 26px 27px;
  border-left: 1px solid var(--main-border);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}
.overview.daystamp-view .overview-item p:first-child > span:last-child.text-green {
  color: #00A358;
}
.overview.daystamp-view .overview-item p:first-child > span:last-child.text-yellow {
  color: #FAA237;
}
.overview.daystamp-view .overview-item p:first-child > span:last-child.text-red {
  color: #FD413C;
}
.overview.daystamp-view .overview-item p:first-child > span:last-child.text-grey {
  color: #828282;
}
.overview.daystamp-view .overview-item p:not(:first-child) {
  padding: 0;
}
.overview.daystamp-view .overview-item p:not(:first-child) span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  z-index: 2;
}
.overview.daystamp-view .overview-calender {
  grid-template-columns: 450px repeat(16, 70px) !important;
  padding-right: 20px;
}
.overview.daystamp-view .overview-calender .overview-calender-prev {
  left: 430px;
}
.overview.daystamp-view .overview-calender .overview-calender-next {
  right: -25px;
}
.overview.daystamp-view .overview-calender p {
  padding: 23px 0px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  display: flex;
  border-bottom: 1px solid var(--main-border);
}
.overview.daystamp-view .overview-calender p span {
  display: flex;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
}
.overview.daystamp-view .overview-calender p:first-child {
  padding-left: 60px;
}
.overview.daystamp-view .item-green {
  background: #ABDCC5;
  border-radius: 2px;
}
.overview.daystamp-view .item-yellow {
  border-radius: 2px;
  background: #FFE1BD;
}
.overview.daystamp-view .item-red {
  border-radius: 2px;
  background: #FFC7C7;
}
.overview.daystamp-view .item-grey {
  border-radius: 2px;
  background: #B1B1B7;
}
.overview.daystamp-view .text-green {
  color: #00A358;
}
.overview.daystamp-view .text-yellow {
  color: #FAA237;
}
.overview.daystamp-view .text-red {
  color: #FD413C;
}
.overview.daystamp-view .text-grey {
  color: #828282;
}
.overview.daystamp-view .daystamp-view__sum {
  display: flex;
  align-items: center;
  background-color: rgba(130, 130, 130, 0.1);
  padding: 25px 0 25px 12vw;
}
.overview.daystamp-view .daystamp-view__sum p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.overview.daystamp-view .daystamp-view__sum p span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding-left: 5px;
}
.overview.daystamp-view .daystamp-view__sum p:not(:last-child) {
  margin-right: 35px;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(79, 79, 79, 0.5);
  backdrop-filter: blur(10px);
}
.modal-body {
  padding: 35px 40px;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  max-width: 477px;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-body img {
  width: 20px;
  height: max-content;
}
.modal-body p, .modal-body p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  margin-bottom: 0;
}
.modal-text__bottom {
  margin-bottom: 32px !important;
}
.modal-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*margin-bottom: 20px;*/
  flex-wrap: wrap;
  color: var(--main-text-dark);
}
.modal-block .btn-blue {
  flex: 1;
  margin-left: 10px;
}
.modal-block .btn-red {
  flex: 1;
  margin-left: 10px;
}
.modal-block p {
  width: calc((100% - 20px) / 3);
}
.modal-block.modal-btn {
  margin-top: 40px;
}
.modal-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: var(--main-text-dark);
  font-family: "MuseoSansCyrlBold";
  margin-bottom: 10px;
}
.modal-wrap p {
  margin-bottom: 15px;
}
.modal-subtitle {
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 36px !important;
  color: var(--main-text-dark) !important;
  font-family: MuseoSansCyrlBold !important;
  margin-bottom: 10px !important;
}

.btn-grey {
  background: #F4F3F4;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

.btn-white {
  background: white;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

.btn-blue {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  background: #2F80ED;
  color: #FFFFFF;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
.btn-blue:disabled {
  background: #aaa;
}
.btn-blue:disabled svg path {
  stroke: #fff;
}

.btn-margin {
  margin: 5px;
}

.input-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.form-group, .form-element, .form-group-employeeprocess, .form-group-vacation {
  width: calc((100% - 20px) / 3);
  position: relative;
}
.form-group input, .form-element input, .form-group-employeeprocess input, .form-group-vacation input {
  outline: none;
  border: none;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  padding: 0 20px;
  width: 100%;
  color: var(--main-text-dark);
  z-index: 3;
  background: transparent;
  position: relative;
  text-align: left;
}
.form-group input:disabled, .form-element input:disabled, .form-group-employeeprocess input:disabled, .form-group-vacation input:disabled {
  color: grey;
  cursor: not-allowed;
}
.form-group input[type=date]:required:invalid::-webkit-datetime-edit, .form-element input[type=date]:required:invalid::-webkit-datetime-edit, .form-group-employeeprocess input[type=date]:required:invalid::-webkit-datetime-edit, .form-group-vacation input[type=date]:required:invalid::-webkit-datetime-edit {
  color: transparent;
}
.form-group input[type=date]:focus::-webkit-datetime-edit, .form-element input[type=date]:focus::-webkit-datetime-edit, .form-group-employeeprocess input[type=date]:focus::-webkit-datetime-edit, .form-group-vacation input[type=date]:focus::-webkit-datetime-edit {
  color: black !important;
}
.form-group label, .form-element label, .form-group-employeeprocess label, .form-group-vacation label {
  position: absolute;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.form-group.styled label, .styled.form-element label, .styled.form-group-employeeprocess label, .styled.form-group-vacation label {
  font-size: 12px;
  line-height: 15px;
  top: 0;
  background: var(--main-bg-light-second);
  z-index: 4;
}
.form-group.styled.focus label, .styled.focus.form-element label, .styled.focus.form-group-employeeprocess label, .styled.focus.form-group-vacation label {
  color: #2F80ED;
}
.form-group.styled.focus input, .styled.focus.form-element input, .styled.focus.form-group-employeeprocess input, .styled.focus.form-group-vacation input {
  color: #2F80ED;
  border-color: #2F80ED;
}
.form-group.form-radio, .form-radio.form-element, .form-radio.form-group-employeeprocess, .form-radio.form-group-vacation, .form-group.form-checkbox, .form-checkbox.form-element, .form-checkbox.form-group-employeeprocess, .form-checkbox.form-group-vacation {
  flex-shrink: 0;
}
.form-group.form-radio input, .form-radio.form-element input, .form-radio.form-group-employeeprocess input, .form-radio.form-group-vacation input, .form-group.form-checkbox input, .form-checkbox.form-element input, .form-checkbox.form-group-employeeprocess input, .form-checkbox.form-group-vacation input {
  z-index: 5;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.form-group.form-radio input:checked + label, .form-radio.form-element input:checked + label, .form-radio.form-group-employeeprocess input:checked + label, .form-radio.form-group-vacation input:checked + label, .form-group.form-checkbox input:checked + label, .form-checkbox.form-element input:checked + label, .form-checkbox.form-group-employeeprocess input:checked + label, .form-checkbox.form-group-vacation input:checked + label {
  background-color: #FAA237;
  color: #fff;
}
.form-group.form-radio label, .form-radio.form-element label, .form-radio.form-group-employeeprocess label, .form-radio.form-group-vacation label, .form-group.form-checkbox label, .form-checkbox.form-element label, .form-checkbox.form-group-employeeprocess label, .form-checkbox.form-group-vacation label {
  position: static;
  background-color: rgba(250, 162, 55, 0.3);
  height: 50px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrlBold";
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transform: none;
}
.form-group.form-checkbox, .form-checkbox.form-element, .form-checkbox.form-group-employeeprocess, .form-checkbox.form-group-vacation {
  margin-bottom: 10px;
  width: max-content;
}
.form-group.form-checkbox input:checked + label, .form-checkbox.form-element input:checked + label, .form-checkbox.form-group-employeeprocess input:checked + label, .form-checkbox.form-group-vacation input:checked + label {
  border-color: #2F80ED;
  background: transparent;
  color: #2F80ED;
}
.form-group.form-checkbox label, .form-checkbox.form-element label, .form-checkbox.form-group-employeeprocess label, .form-checkbox.form-group-vacation label {
  background: #F4F3F4;
  color: #828282;
  padding: 0 23px;
  border: 1px solid transparent;
}
.form-group.form-off, .form-off.form-element, .form-off.form-group-employeeprocess, .form-off.form-group-vacation {
  width: calc((100% - 20px) / 3);
}
.form-group.form-off label, .form-off.form-element label, .form-off.form-group-employeeprocess label, .form-off.form-group-vacation label {
  border: 1px solid #B1B1B7;
  background: transparent;
}
.form-group.form-off label img, .form-off.form-element label img, .form-off.form-group-employeeprocess label img, .form-off.form-group-vacation label img {
  margin-right: 8px;
}

.form-group-vacation {
  width: calc((100% - 20px) / 2);
}

.form-group-filter {
  width: 100%;
}
.form-group-filter p {
  margin-bottom: 0;
}

.form-group-employeeprocess {
  width: 100%;
  margin: 10px;
}
.form-group-employeeprocess div {
  padding: 10px;
  width: auto;
}
.form-group-employeeprocess label {
  font-size: 12px;
  line-height: 15px;
  top: 0;
  background: var(--main-bg-light-second);
  z-index: 40;
}
.form-group-employeeprocess .lohnmngmt_class {
  width: calc(100% - 20px);
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.form-group-employeeprocess table {
  outline: none;
  border: 1px solid var(--main-border);
  border-collapse: separate !important;
  border-radius: 5px;
  height: 50px;
  padding: 0 0 0 20px;
  width: 100%;
  color: var(--main-text-grey);
  z-index: 3;
  background: transparent;
  position: relative;
  text-align: left;
}
.form-group-employeeprocess table td {
  padding: initial;
}
.form-group-employeeprocess table .form-group-employeeprocess {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.form-group-employeeprocess input {
  width: calc(100% - 20px);
}
.form-group-employeeprocess input[type=radio] {
  height: initial;
  width: initial;
  margin-right: 10px;
}
.form-group-employeeprocess input[type=date]:required:invalid::-webkit-datetime-edit {
  color: transparent;
}
.form-group-employeeprocess input[type=date]:focus::-webkit-datetime-edit {
  color: black !important;
}

.form-element {
  width: calc(100% - 30px);
  min-height: 40px;
  margin: auto;
  margin-bottom: 15px;
}

.modal-test .modal-body {
  max-width: 405px;
  position: relative;
}
.modal-test .modal-body .modal-text {
  color: var(--main-text-dark);
  margin-bottom: 25px;
}
.modal-test .modal-body .modal-text span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
}
.modal-test .modal-body .btn-blue {
  width: 100%;
}
.modal-test .modal-body .form-group, .modal-test .modal-body .form-group-vacation, .modal-test .modal-body .form-group-employeeprocess, .modal-test .modal-body .form-element {
  width: 100%;
  margin-bottom: 40px;
}
.modal-test .modal-body .form-group input, .modal-test .modal-body .form-group-vacation input, .modal-test .modal-body .form-group-employeeprocess input, .modal-test .modal-body .form-element input {
  padding-left: 50px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.modal-test .modal-body .form-group:after, .modal-test .modal-body .form-group-vacation:after, .modal-test .modal-body .form-group-employeeprocess:after, .modal-test .modal-body .form-element:after {
  right: auto;
  left: 20px;
}
.modal-test .modal-body .form-calendar__arrow {
  position: absolute;
  right: 13px;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.modal-test .modal-body .form-calendar__arrow span {
  display: flex;
  cursor: pointer;
}
.modal-test .modal-body .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal-testing .modal-body {
  max-width: 365px;
}
.modal-testing .testing-progress__block {
  background: #E1E1E1;
  border-radius: 10px;
  height: 4px;
  width: 100%;
  margin-top: 20px;
  position: relative;
  margin-bottom: 40px;
}
.modal-testing .testing-progress__block .testing-progress {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background-color: #00A358;
}
.modal-testing .modal-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.modal-testing .progress-line {
  position: absolute;
  height: 14px;
  width: 3px;
  background-color: #2F80ED;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
}
.modal-testing__finish {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-testing__finish .modal-close {
  position: absolute;
  top: 0px;
  right: 0px;
}
.modal-testing__finish svg {
  margin: 0 auto 20px;
  width: max-content !important;
  height: auto !important;
}
.modal-testing__finish-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
  text-align: center;
}
.modal-testing__finish-text {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  margin-top: 10px;
  color: var(--main-text-grey);
}

.modal-testing svg {
  width: 25px;
  height: 25px;
}

.bg {
  fill: none;
  stroke-width: 2px;
  stroke: #E1E1E1;
}

[class^=meter-] {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.meter-1 {
  stroke-dasharray: 360;
  stroke-dashoffset: 100;
  stroke: transparent;
}

.modal-testing__result {
  display: none;
}

.testing-item {
  display: flex;
  align-items: center;
}
.testing-item:not(:last-child) {
  margin-bottom: 10px;
}
.testing-item p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  margin-left: 10px;
}
.testing-item svg {
  opacity: 0;
  position: relative;
  left: -7px;
}
.testing-item.active .meter-1 {
  animation: progress-1 ease-out;
  animation-delay: 0.2s;
}
.testing-item.active svg {
  opacity: 1;
}
.testing-item.passed svg {
  width: 10px;
  height: 10px;
  margin: 8px 8px 7px 7px;
}
.testing-item.passed svg circle:first-child {
  stroke-width: 0;
  cx: 5;
  cy: 5;
  r: 5;
}
.testing-item.passed svg circle.meter-1 {
  display: none;
}

@keyframes progress-1 {
  from {
    stroke-dashoffset: 360;
    stroke: #00A358;
  }
  to {
    stroke-dashoffset: 100;
    stroke: #00A358;
  }
}
.modal-testing__result .modal-block.modal-btn {
  margin-bottom: 0;
}
.modal-testing__result .modal-testing__persent {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 5px;
}
.modal-testing__result p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.modal-testing__result h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
  margin: 30px 0 15px;
}
.modal-testing__result h6 + p {
  color: var(--main-text-dark);
}

.new-correction .modal-body,
.modal-faq .modal-body,
.modal-questions-refactor .modal-body {
  max-width: 436px;
}
.new-correction .form-group.form-textarea, .new-correction .form-textarea.form-group-vacation, .new-correction .form-textarea.form-group-employeeprocess, .new-correction .form-textarea.form-element,
.modal-faq .form-group.form-textarea,
.modal-faq .form-textarea.form-group-vacation,
.modal-faq .form-textarea.form-group-employeeprocess,
.modal-faq .form-textarea.form-element,
.modal-questions-refactor .form-group.form-textarea,
.modal-questions-refactor .form-textarea.form-group-vacation,
.modal-questions-refactor .form-textarea.form-group-employeeprocess,
.modal-questions-refactor .form-textarea.form-element {
  width: 100%;
}
.new-correction .form-group.form-textarea:not(:last-child), .new-correction .form-textarea.form-group-vacation:not(:last-child), .new-correction .form-textarea.form-group-employeeprocess:not(:last-child), .new-correction .form-textarea.form-element:not(:last-child),
.modal-faq .form-group.form-textarea:not(:last-child),
.modal-faq .form-textarea.form-group-vacation:not(:last-child),
.modal-faq .form-textarea.form-group-employeeprocess:not(:last-child),
.modal-faq .form-textarea.form-element:not(:last-child),
.modal-questions-refactor .form-group.form-textarea:not(:last-child),
.modal-questions-refactor .form-textarea.form-group-vacation:not(:last-child),
.modal-questions-refactor .form-textarea.form-group-employeeprocess:not(:last-child),
.modal-questions-refactor .form-textarea.form-element:not(:last-child) {
  margin-bottom: 18px;
}
.new-correction .form-group.form-textarea textarea, .new-correction .form-textarea.form-group-vacation textarea, .new-correction .form-textarea.form-group-employeeprocess textarea, .new-correction .form-textarea.form-element textarea,
.modal-faq .form-group.form-textarea textarea,
.modal-faq .form-textarea.form-group-vacation textarea,
.modal-faq .form-textarea.form-group-employeeprocess textarea,
.modal-faq .form-textarea.form-element textarea,
.modal-questions-refactor .form-group.form-textarea textarea,
.modal-questions-refactor .form-textarea.form-group-vacation textarea,
.modal-questions-refactor .form-textarea.form-group-employeeprocess textarea,
.modal-questions-refactor .form-textarea.form-element textarea {
  width: 100%;
  min-height: 85px;
  font-family: "MuseoSansCyrl";
  padding: 17px 20px;
  resize: vertical;
}
.new-correction .form-calendar,
.modal-faq .form-calendar,
.modal-questions-refactor .form-calendar {
  min-width: 165px;
}
.new-correction .form-calendar input,
.modal-faq .form-calendar input,
.modal-questions-refactor .form-calendar input {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.new-correction .input-container,
.modal-faq .input-container,
.modal-questions-refactor .input-container {
  margin-bottom: 20px;
  margin-top: 25px;
}
.new-correction .input-container .form-radio:not(:last-child),
.modal-faq .input-container .form-radio:not(:last-child),
.modal-questions-refactor .input-container .form-radio:not(:last-child) {
  margin-right: 20px;
}
.new-correction .input-container .form-radio label,
.modal-faq .input-container .form-radio label,
.modal-questions-refactor .input-container .form-radio label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.new-correction .form-select,
.modal-faq .form-select,
.modal-questions-refactor .form-select {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 30px;
}
.new-correction .form-select + .form-group, .new-correction .form-select + .form-group-vacation, .new-correction .form-select + .form-group-employeeprocess, .new-correction .form-select + .form-element,
.modal-faq .form-select + .form-group,
.modal-faq .form-select + .form-group-vacation,
.modal-faq .form-select + .form-group-employeeprocess,
.modal-faq .form-select + .form-element,
.modal-questions-refactor .form-select + .form-group,
.modal-questions-refactor .form-select + .form-group-vacation,
.modal-questions-refactor .form-select + .form-group-employeeprocess,
.modal-questions-refactor .form-select + .form-element {
  margin-bottom: 20px;
}

.comment .modal-body {
  max-width: 391px;
}
.comment .modal-close {
  right: 20px;
  top: 20px;
  position: absolute;
  cursor: pointer;
}
.comment .modal-title,
.comment .modal-title span {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
}
.comment p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}
.comment .comment__text {
  margin-top: 16px;
  color: var(--main-text-dark);
}
.comment .comment__text + p {
  color: var(--main-text-grey);
  width: 88%;
}

.new-communication .modal-body {
  max-width: 435px;
}
.new-communication .modal-body .form-group, .new-communication .modal-body .form-group-vacation, .new-communication .modal-body .form-group-employeeprocess, .new-communication .modal-body .form-element {
  width: 100%;
}
.new-communication .modal-body .new-communication__bar {
  display: flex;
  margin-bottom: 30px;
}
.new-communication .modal-body .new-communication__bar li {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin-right: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid transparent;
}
.new-communication .modal-body .new-communication__bar li.active {
  color: #2F80ED;
  border-bottom-color: #2F80ED;
}

.modal-daystamp .modal-date,
.modal-daystamp .modal-history,
.modal-daystamp-user .modal-date,
.modal-daystamp-user .modal-history {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin-bottom: 25px;
}
.modal-daystamp .modal-history,
.modal-daystamp-user .modal-history {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.modal-daystamp .modal-history svg,
.modal-daystamp-user .modal-history svg {
  margin-left: 5px;
}
.modal-daystamp .add-tome-block__time,
.modal-daystamp-user .add-tome-block__time {
  cursor: pointer;
  display: none;
  margin-left: 20px;
}
.modal-daystamp .input-container-add-time.time-added .btn-blue,
.modal-daystamp-user .input-container-add-time.time-added .btn-blue {
  display: none;
}
.modal-daystamp .input-container-add-time.time-added .add-tome-block__time,
.modal-daystamp-user .input-container-add-time.time-added .add-tome-block__time {
  display: flex;
}
.modal-daystamp .form-group, .modal-daystamp .form-group-vacation, .modal-daystamp .form-group-employeeprocess, .modal-daystamp .form-element,
.modal-daystamp-user .form-group,
.modal-daystamp-user .form-group-vacation,
.modal-daystamp-user .form-group-employeeprocess,
.modal-daystamp-user .form-element {
  width: 100%;
  margin-bottom: 20px;
}
.modal-daystamp .form-group.form-calendar, .modal-daystamp .form-calendar.form-group-vacation, .modal-daystamp .form-calendar.form-group-employeeprocess, .modal-daystamp .form-calendar.form-element,
.modal-daystamp-user .form-group.form-calendar,
.modal-daystamp-user .form-calendar.form-group-vacation,
.modal-daystamp-user .form-calendar.form-group-employeeprocess,
.modal-daystamp-user .form-calendar.form-element {
  max-width: 165px;
}
.modal-daystamp .form-group.form-calendar input, .modal-daystamp .form-calendar.form-group-vacation input, .modal-daystamp .form-calendar.form-group-employeeprocess input, .modal-daystamp .form-calendar.form-element input,
.modal-daystamp-user .form-group.form-calendar input,
.modal-daystamp-user .form-calendar.form-group-vacation input,
.modal-daystamp-user .form-calendar.form-group-employeeprocess input,
.modal-daystamp-user .form-calendar.form-element input {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  font-family: "MuseoSansCyrl";
}
.modal-daystamp .form-radio:not(:last-child),
.modal-daystamp-user .form-radio:not(:last-child) {
  margin-right: 15px;
}
.modal-daystamp .form-radio label,
.modal-daystamp-user .form-radio label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}
.modal-daystamp .input-container-radio,
.modal-daystamp-user .input-container-radio {
  margin-bottom: 20px;
}
.modal-daystamp .form-toggle-block,
.modal-daystamp-user .form-toggle-block {
  display: none;
}
.modal-daystamp .form-checkbox,
.modal-daystamp-user .form-checkbox {
  margin-bottom: 20px;
}
.modal-daystamp .form-checkbox label,
.modal-daystamp-user .form-checkbox label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
}
.modal-daystamp .form-checkbox input:checked + label,
.modal-daystamp-user .form-checkbox input:checked + label {
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
}
.modal-daystamp .form-group.form-textarea, .modal-daystamp .form-textarea.form-group-vacation, .modal-daystamp .form-textarea.form-group-employeeprocess, .modal-daystamp .form-textarea.form-element,
.modal-daystamp-user .form-group.form-textarea,
.modal-daystamp-user .form-textarea.form-group-vacation,
.modal-daystamp-user .form-textarea.form-group-employeeprocess,
.modal-daystamp-user .form-textarea.form-element {
  width: 100%;
}
.modal-daystamp .form-group.form-textarea:not(:last-child), .modal-daystamp .form-textarea.form-group-vacation:not(:last-child), .modal-daystamp .form-textarea.form-group-employeeprocess:not(:last-child), .modal-daystamp .form-textarea.form-element:not(:last-child),
.modal-daystamp-user .form-group.form-textarea:not(:last-child),
.modal-daystamp-user .form-textarea.form-group-vacation:not(:last-child),
.modal-daystamp-user .form-textarea.form-group-employeeprocess:not(:last-child),
.modal-daystamp-user .form-textarea.form-element:not(:last-child) {
  margin-bottom: 18px;
}
.modal-daystamp .form-group.form-textarea textarea, .modal-daystamp .form-textarea.form-group-vacation textarea, .modal-daystamp .form-textarea.form-group-employeeprocess textarea, .modal-daystamp .form-textarea.form-element textarea,
.modal-daystamp-user .form-group.form-textarea textarea,
.modal-daystamp-user .form-textarea.form-group-vacation textarea,
.modal-daystamp-user .form-textarea.form-group-employeeprocess textarea,
.modal-daystamp-user .form-textarea.form-element textarea {
  width: 100%;
  min-height: 85px;
  font-family: "MuseoSansCyrl";
  padding: 17px 20px;
  resize: vertical;
}
.modal-daystamp .add-tome-block,
.modal-daystamp-user .add-tome-block {
  max-height: 200px;
  overflow: auto;
  padding-top: 5px;
  margin-bottom: 30px;
}
.modal-daystamp .input-container-add-time,
.modal-daystamp-user .input-container-add-time {
  margin-bottom: 20px;
}
.modal-daystamp .input-container-add-time:last-child,
.modal-daystamp-user .input-container-add-time:last-child {
  margin-bottom: 0px;
}
.modal-daystamp .input-container-add-time .btn-blue,
.modal-daystamp-user .input-container-add-time .btn-blue {
  margin-left: 5px;
}
.modal-daystamp .input-container-add-time .form-group, .modal-daystamp .input-container-add-time .form-group-vacation, .modal-daystamp .input-container-add-time .form-group-employeeprocess, .modal-daystamp .input-container-add-time .form-element,
.modal-daystamp-user .input-container-add-time .form-group,
.modal-daystamp-user .input-container-add-time .form-group-vacation,
.modal-daystamp-user .input-container-add-time .form-group-employeeprocess,
.modal-daystamp-user .input-container-add-time .form-element {
  max-width: 110px;
  margin-bottom: 0;
}
.modal-daystamp .input-container-add-time .form-group:first-child, .modal-daystamp .input-container-add-time .form-group-vacation:first-child, .modal-daystamp .input-container-add-time .form-group-employeeprocess:first-child, .modal-daystamp .input-container-add-time .form-element:first-child,
.modal-daystamp-user .input-container-add-time .form-group:first-child,
.modal-daystamp-user .input-container-add-time .form-group-vacation:first-child,
.modal-daystamp-user .input-container-add-time .form-group-employeeprocess:first-child,
.modal-daystamp-user .input-container-add-time .form-element:first-child {
  margin-right: 15px;
}

.modal-min .modal-body {
  max-width: 315px;
}
.modal-min .modal-body .form-group, .modal-min .modal-body .form-group-vacation, .modal-min .modal-body .form-group-employeeprocess, .modal-min .modal-body .form-element {
  width: 100%;
}
.modal-min .modal-body .form-group input, .modal-min .modal-body .form-group-vacation input, .modal-min .modal-body .form-group-employeeprocess input, .modal-min .modal-body .form-element input {
  color: var(--main-text-dark);
}
.modal-min .modal-body .btn-grey {
  width: max-content;
}
.modal-min .modal-body .modal-block.modal-btn {
  margin-top: 20px;
  margin-bottom: 0;
}
.modal-min .modal-body .modal-title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 25px;
}

.modal-questions-refactor .load-doc {
  width: 100%;
  margin-top: 15px;
  background: #F4F3F4;
  border: 1px dashed #E1E1E1;
  border-radius: 5px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-questions-refactor .load-doc .upload-file {
  display: none;
}
.modal-questions-refactor .load-doc p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.modal-questions-refactor .load-doc p svg {
  margin-right: 15px;
}
.modal-questions-refactor .load-doc p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  padding-left: 5px;
}
.modal-questions-refactor .load-doc input {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.modal-questions-refactor .upload-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.modal-questions-refactor .upload-file:not(:last-child) {
  border-bottom: 1px solid var(--main-border);
}
.modal-questions-refactor .remove-file {
  width: 18px;
  height: 18px;
  background-image: url("/images/icons/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.add-open-services .modal-body {
  max-width: 550px;
}
.add-open-services .modal-body .modal-cancellation p {
  margin-bottom: 15px;
}
.add-open-services .modal-body .form-group.form-select, .add-open-services .modal-body .form-select.form-group-vacation, .add-open-services .modal-body .form-select.form-group-employeeprocess, .add-open-services .modal-body .form-select.form-element {
  width: 36%;
}
.add-open-services .modal-body .modal-block {
  margin-top: 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.add-open-services .modal-body .modal-block .input-container .form-group, .add-open-services .modal-body .modal-block .input-container .form-group-vacation, .add-open-services .modal-body .modal-block .input-container .form-group-employeeprocess, .add-open-services .modal-body .modal-block .input-container .form-element {
  max-width: 109px;
  width: 39%;
}
.add-open-services .modal-body .modal-block .input-container .form-group:first-child, .add-open-services .modal-body .modal-block .input-container .form-group-vacation:first-child, .add-open-services .modal-body .modal-block .input-container .form-group-employeeprocess:first-child, .add-open-services .modal-body .modal-block .input-container .form-element:first-child {
  margin-right: 10px;
}
.add-open-services .modal-body .modal-block .input-container .btn-blue {
  width: max-content;
  flex: initial;
}
.add-open-services .modal-body .modal-time {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.add-open-services .modal-body .modal-time__item {
  background: var(--main-bg-light);
  border: 1px solid var(--main-border);
  border-radius: 5px;
  padding: 15px 20px;
  padding-right: 16px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc((100% - 20px) / 3);
  margin-bottom: 10px;
}
.add-open-services .modal-body .modal-time__item:nth-child(3n-1) {
  margin: 0 10px 10px;
}
.add-open-services .modal-body .modal-time__item .remove-time {
  width: 18px;
  height: 18px;
  margin-left: 7px;
  cursor: pointer;
  background-image: url(/images/icons/close.svg);
}
.add-open-services .modal-body .modal-block.modal-btn {
  margin-bottom: 0;
}
.add-open-services .modal-body .form-radio {
  height: 20px;
  display: flex;
  align-items: center;
}
.add-open-services .modal-body .form-radio label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  display: flex;
  align-items: center;
}
.add-open-services .modal-body .form-radio input[type=text] {
  position: relative;
  border: 1px solid #E1E1E1;
  opacity: 1;
  border-radius: 5px;
  outline: none;
  max-width: 91px;
  height: 30px;
  margin-left: 15px;
  padding: 5px 10px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
}

.set-holiday .modal-body {
  max-width: 370px;
}
.set-holiday .modal-body > span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin-bottom: 15px;
  display: flex;
}
.set-holiday .modal-body .form-group, .set-holiday .modal-body .form-group-vacation, .set-holiday .modal-body .form-group-employeeprocess, .set-holiday .modal-body .form-element {
  margin-bottom: 20px;
  width: 100%;
}
.set-holiday .modal-body .modal-block.modal-btn {
  margin-bottom: 0;
}
.set-holiday .modal-body .new-area__color {
  margin-bottom: 33px;
}
.set-holiday .modal-body .set-holiday_remove {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  color: #828282;
}
.set-holiday .modal-body .set-holiday_remove svg {
  margin-right: 5px;
}

.time-editing .modal-body {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.time-editing .modal-body .modal-title {
  padding: 0 40px;
}
.time-editing .modal-body .modal-title + span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  padding: 0 40px 30px;
}
.time-editing .modal-body .input-container {
  padding: 0 40px;
  justify-content: space-between;
}
.time-editing .modal-body .input-container .form-group, .time-editing .modal-body .input-container .form-group-vacation, .time-editing .modal-body .input-container .form-group-employeeprocess, .time-editing .modal-body .input-container .form-element {
  width: calc(50% - 5px);
}
.time-editing .modal-body .modal-btn {
  padding: 0 40px;
}
.time-editing .modal-body .modal-time__toggle-top {
  display: flex;
  padding: 0 40px;
  border-bottom: 1px solid var(--main-border);
  margin-bottom: 35px;
}
.time-editing .modal-body .modal-time__toggle-top li {
  padding-bottom: 7px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.time-editing .modal-body .modal-time__toggle-top li:not(:last-child) {
  margin-right: 20px;
}
.time-editing .modal-body .modal-time__toggle-top li.active {
  color: #2F80ED;
  border-color: #2F80ED;
}
.time-editing .modal-body .modal-time__toggle-content {
  padding: 0 40px;
  max-height: 220px;
  overflow: auto;
  display: none;
}
.time-editing .modal-body .modal-time__toggle-content__change {
  overflow: initial;
  display: block;
}
.time-editing .modal-body .modal-time__toggle-content__change .input-container {
  padding: 0;
}
.time-editing .modal-body .modal-time__toggle-content__change .input-container .form-group, .time-editing .modal-body .modal-time__toggle-content__change .input-container .form-group-vacation, .time-editing .modal-body .modal-time__toggle-content__change .input-container .form-group-employeeprocess, .time-editing .modal-body .modal-time__toggle-content__change .input-container .form-element {
  width: calc(50% - 5px);
}
.time-editing .modal-body .modal-time__toggle-time {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  display: flex;
  margin-bottom: 15px;
}
.time-editing .modal-body .modal-time__toggle-block {
  margin-bottom: 10px;
}
.time-editing .modal-body .modal-time__toggle-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.time-editing .modal-body .modal-time__toggle-item > div {
  display: flex;
  align-items: center;
}
.time-editing .modal-body .modal-time__toggle-item > div p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  max-width: 235px;
}
.time-editing .modal-body .modal-time__toggle-item > div p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.time-editing .modal-body .modal-time__toggle-item > div img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  display: flex;
  margin-right: 15px;
}
.time-editing .modal-body .modal-time__toggle-item > p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.time-editing .modal-body .form-checkbox {
  margin: 20px 40px 37px;
}
.time-editing .modal-body .form-checkbox label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
}

.form-daterange label {
  font-size: 12px;
  line-height: 14px;
  top: 0;
  background: var(--main-bg-light-second);
  z-index: 4;
}

div.shaddow_without_menu {
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.89);
  width: 100%;
  height: 100%;
  z-index: 10000;
  top: 0;
  left: 0;
  position: fixed;
}
div.shaddow_without_menu table {
  margin: auto;
}
div.shaddow_without_menu div {
  margin: auto;
}
div.shaddow_without_menu tbody {
  margin: auto;
}

.modal__one-button {
  width: 100% !important;
}
.modal__two-buttons {
  width: calc((100% - 20px) / 2) !important;
}

#modal_day_dienst .modal-body {
  overflow-y: scroll;
  max-height: 100%;
  tabindex: 0;
}

.sortable-element {
  justify-content: left !important;
  cursor: pointer;
}

.sortable-element a {
  margin-right: 10px;
}

.ut {
  font-weight: 600;
  font-size: 40px;
  line-height: 32px;
  color: #2F80ED;
  justify-content: center !important;
  width: 50%;
  float: left;
  text-align: center;
  border-bottom-style: none !important;
}
.ut span {
  font-size: 11px;
}
.ut p {
  margin-bottom: 0;
  margin-top: 11px;
  margin-left: 6px;
}

.next_shifts_times {
  font-size: 22px !important;
  width: 210px;
  margin-right: 0 !important;
}

.next_shifts_date {
  width: 180px;
}

.dashboard-notice {
  font-size: xx-small;
}

.updateMsgTbl {
  width: 100%;
}
.updateMsgTbl td {
  border-bottom-style: solid;
  border-bottom-color: #eeeeee;
  border-radius: 0;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
}
.updateMsgTbl td:nth-child(2) {
  text-align: center;
}
.updateMsgTbl td:nth-child(3) {
  text-align: right;
}

.load_noticer {
  display: none;
}
.load_noticer img {
  width: 80px;
  margin-right: 10px;
}

.save_noticer {
  display: none;
  margin-right: 10px;
}

.dashboard {
  display: flex;
  justify-content: space-between;
  padding: 55px 65px 0px 55px;
}
.dashboard > div {
  width: calc((100% - 15px) / 2 - 25px);
}
.dashboard > div:last-child {
  width: calc((100% - 15px) / 2 + 25px);
}
.dashboard-calendar {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid var(--main-border);
  margin-right: 27px;
}
.dashboard-calendar input {
  border: none;
  outline: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin-left: 12px;
  cursor: pointer;
  max-width: 85px;
}
.dashboard-block {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  border-radius: 20px;
  padding: 35px 40px;
}
.dashboard-block:not(:last-child) {
  margin-bottom: 15px;
}
.dashboard-block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-block__top-flex {
  display: flex;
  align-items: center;
}
.dashboard-block__top h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
}
.dashboard-block__top span {
  cursor: pointer;
  transition: 0.5s;
}
.dashboard-block__top span:nth-child(4) svg {
  transform: rotate(180deg);
}
.dashboard-block.minimize .dashboard-block__top span svg {
  transform: rotate(0deg);
}
.dashboard-activated .dashboard-block__content {
  margin-top: 20px;
  color: var(--main-text-dark);
}
.dashboard-activated .dashboard-block__content div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.dashboard-activated .dashboard-block__content div:last-child {
  /*padding-bottom: 0;*/
}
.dashboard-activated .dashboard-block__content div p {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-text-dark);
  margin-right: 30px;
}
.dashboard-activated .dashboard-block__content div p.btn-yellow {
  color: #fff;
  margin-right: 0;
}
.dashboard-activated .dashboard-block__content div:not(:last-child) {
  border-bottom: 1px solid var(--main-border);
}
.dashboard-opening .dashboard-block__content {
  display: flex;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap;
}
.dashboard-opening .dashboard-block__content > div {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 22px 14px;
  width: calc((100% - 60px) / 7);
  min-width: 83px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.dashboard-opening .dashboard-block__content > div:not(:last-child) {
  margin-right: 10px;
}
.dashboard-opening .dashboard-block__content > div.bg-border span {
  color: #828282;
}
.dashboard-opening .dashboard-block__content > div span {
  color: #FDFCFD;
}
.dashboard-opening .dashboard-block__content > div span:first-child {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}
.dashboard-opening .dashboard-block__content > div span:last-child {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
.dashboard-employees__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.dashboard-employees__item:not(:last-of-type) {
  border-bottom: 1px solid var(--main-border);
}
.dashboard-employees__item:last-child {
  padding-bottom: 0;
}
.dashboard-employees__item > div {
  display: flex;
  align-items: center;
}
.dashboard-employees__item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 40px;
  margin-right: 15px;
}
.dashboard-employees__item p, .dashboard-employees__item span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  display: flex;
  align-items: center;
}
.dashboard-employees__item .progress {
  width: 13.5vw;
  background-color: #E1E1E1;
  border-radius: 10px;
  height: 4px;
  margin-left: 10px;
}
.dashboard-employees__item .progress .persent {
  height: 100%;
  background: #2F80ED;
  border-radius: 10px;
}
.dashboard-employeeswork {
  padding: 35px 0px;
}
.dashboard-employeeswork .dashboard-block__top {
  padding: 0 40px;
}
.dashboard-employeeswork__hours {
  display: flex;
  align-items: center;
  padding: 0 50px;
  margin-top: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
}
.dashboard-employeeswork__hours p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
  margin-left: 20px;
}
.dashboard-employeeswork__hours p span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
}
.dashboard-employeeswork .dashboard-employeeswork__timeto svg {
  margin-right: 5px;
}
.dashboard-employeeswork .dashboard-employeeswork__timeto span {
  padding: 0 3px;
}
.dashboard-employeeswork .dashboard-block__content > div:first-child .dashboard-employeeswork__stat {
  position: relative;
}
.dashboard-employeeswork .dashboard-block__content > div:first-child .dashboard-employeeswork__stat:after {
  content: "";
  height: 0.5px;
  width: 63%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--main-border);
}
.dashboard-employeeswork .dashboard-employeeswork__time {
  margin-left: 17px;
  font-weight: 600;
  font-family: "MuseoSansCyrlNormal";
}
.dashboard-employeeswork .dashboard-employeeswork__time-red {
  color: #FD413C;
}
.dashboard-employeeswork .dashboard-employeeswork__time-green {
  color: #1ABA71;
}
.dashboard-employeeswork__stat {
  display: flex;
  align-items: center;
  margin: 8.5px 40px 0;
  justify-content: flex-end;
}
.dashboard-employeeswork__stat p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.dashboard-employeeswork__stat p:not(:last-child) {
  margin-right: 15px;
}
.dashboard-employeeswork__stat p span {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  padding: 0 0 0 5px;
  font-weight: 600;
}
.dashboard-employeeswork__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  padding: 30px 40px 10px;
}
.dashboard-employeeswork .dashboard-employees__item {
  padding: 15px 40px;
}
.dashboard-employeeswork .dashboard-employees__item .dashboard-employeeswork__phone svg {
  margin-right: 8px;
}
.dashboard-employeeswork .dashboard-employees__item .dashboard-employees__item-img {
  position: relative;
}
.dashboard-employeeswork .dashboard-employees__item .dashboard-employees__item-img:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border: 2px solid #FDFCFD;
  border-radius: 50%;
  top: -1px;
  right: 13px;
}
.dashboard-employeeswork .dashboard-employees__item .dashboard-employees__item-img-active:after {
  background: #1ABA71;
}
.dashboard-employeeswork .dashboard-employees__item .dashboard-employees__item-img-unactive:after {
  background: #FD413C;
}
.dashboard-employeeswork .dashboard-employees__item .dashboard-employeeswork__name {
  width: 8vw;
  margin-right: 20px;
}
.dashboard-item-symbols {
  margin-right: 20px;
}
.dashboard-trisected {
  width: calc(33.3333333333% - 10px);
  margin-bottom: 15px;
  margin-right: 10px;
}
.dashboard-custom-datebtn {
  background: 0 0 !important;
  color: var(--main-text-dark);
  width: 215px;
  height: 50px;
  background: #FDFCFD;
  border: 1px solid #2F80ED !important;
  box-shadow: 0 0 11px rgba(58, 67, 76, 0.05), 0 11px 11px rgba(58, 67, 76, 0.05);
  border-radius: 5px;
  margin-bottom: 10px;
  flex-direction: row !important;
  margin-left: 0;
  margin-top: -60px;
  float: right;
}
.dashboard-custom-datebtn input {
  background: 0 0;
  color: var(--main-text-dark);
}
.dashboard-custom-datebtn div:nth-child(1) {
  padding-left: 15px;
  padding-right: 10px;
  border: 0 !important;
  cursor: pointer;
}
.dashboard-custom-datebtn div:nth-child(2) {
  padding: 20px;
  align-self: center;
  cursor: pointer;
}
.dashboard-custom-datebtn div:nth-child(3) {
  padding-left: 10px;
  padding-right: 15px;
  cursor: pointer;
}
.dashboard-custom-datebtn p:nth-child(2) {
  padding-top: 10px;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  display: flex;
  align-items: center;
  color: #828282 !important;
  width: 70px;
}
.dashboard-administration__top {
  border-bottom: 0 !important;
  color: var(--main-text-dark);
}
.dashboard-administration__top-closed svg {
  transform: rotate(180deg);
}
.dashboard-administration-list {
  border-bottom: 0 !important;
}
.dashboard-administration-shift-takeover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.dashboard-administration-shift-takeover__header__sent p:nth-child(n) {
  margin-right: 5px !important;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__sent p:nth-child(1) {
  width: 200px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__sent p:nth-child(2) {
  width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__sent p:nth-child(3) {
  width: 150px;
  min-width: 50px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__sent p:nth-child(4) {
  width: 50px;
  min-width: 50px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__received p:nth-child(n) {
  margin-right: 5px !important;
  color: var(--main-text-dark);
  text-align: center;
}
.dashboard-administration-shift-takeover__header__received p:nth-child(1) {
  width: 90px;
  min-width: 90px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__received p:nth-child(2) {
  width: 40px;
  min-width: 40px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__received p:nth-child(3) {
  width: 100px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__received p:nth-child(4) {
  width: 150px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__received p:nth-child(5) {
  width: 65px;
  min-width: 45px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__received p:nth-child(6) {
  width: 50px;
  min-width: 45px;
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p {
  text-align: center;
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(n) {
  margin-right: 5px !important;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(1) {
  width: 70px;
  min-width: 70px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(2) {
  width: 200px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(3) {
  width: 22px;
  min-width: 22px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(4) {
  width: 200px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(5) {
  width: 45px;
  min-width: 45px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover-item {
  display: flex;
  align-items: center;
  border-top: 0 !important;
  border-bottom: 1px solid var(--main-border) !important;
  flex-direction: row !important;
  width: auto !important;
}
.dashboard-administration-shift-takeover-item__sent p:nth-child(n) {
  margin-right: 5px !important;
  color: var(--main-text-dark) !important;
}
.dashboard-administration-shift-takeover-item__sent p:nth-child(1) {
  width: 200px;
  min-width: 100px;
}
.dashboard-administration-shift-takeover-item__sent p:nth-child(2) {
  width: 100px;
}
.dashboard-administration-shift-takeover-item__sent p:nth-child(3) {
  width: 150px;
  min-width: 50px;
}
.dashboard-administration-shift-takeover-item__sent p:nth-child(4) {
  width: 50px;
  min-width: 50px;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(n) {
  margin-right: 5px !important;
  color: var(--main-text-dark) !important;
  text-align: center;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(1) {
  width: 90px;
  min-width: 90px;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(2) {
  width: 40px;
  min-width: 40px;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(3) {
  width: 100px;
  min-width: 100px;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(4) {
  width: 150px;
  min-width: 100px;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(5) {
  width: 65px;
  min-width: 45px;
}
.dashboard-administration-shift-takeover-item__received p:nth-child(6) {
  width: 50px;
  min-width: 45px;
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p {
  text-align: center;
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(n) {
  margin-right: 5px !important;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(1) {
  width: 70px;
  min-width: 70px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(2) {
  width: 200px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(3) {
  width: 22px;
  min-width: 22px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(4) {
  width: 200px;
  min-width: 100px;
  color: var(--main-text-dark);
}
.dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(5) {
  width: 45px;
  min-width: 45px;
  color: var(--main-text-dark);
}
.dashboard-administration-item {
  border-top: 0 !important;
  border-bottom: 1px solid var(--main-border) !important;
  flex-direction: row !important;
}
.dashboard-administration-item p:nth-child(2) {
  width: auto !important;
}
.dashboard-administration-item p:nth-child(n+2) {
  width: auto !important;
  display: block !important;
}
.dashboard-administration-item p:nth-child(n+2) svg {
  margin-right: 5px;
}
.dashboard-administration-item p:nth-child(n+2) span {
  /* &:first-child {
     padding: 0 !important;
   }*/
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  position: relative !important;
  top: 0 !important;
  display: flex !important;
  color: #1ABA71;
  margin-bottom: 5px;
  padding: 0 !important;
  font-weight: 600;
}
.dashboard-planned_employees_custom_selct_locations {
  width: 215px;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 10px;
  flex-direction: row !important;
  margin-top: -60px;
  float: right;
}

.btn-yellow {
  background: #FAA237;
  border-radius: 5px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  height: 50px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding: 0 20px;
  cursor: pointer;
}

.btn-red {
  background: #fa3737;
  border-radius: 5px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  height: 50px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding: 0 20px;
  cursor: pointer;
}

.bg-green {
  border: 1px solid #1ABA71;
  background: #1ABA71;
}

.bg-red {
  background: #FD413C;
  border: 1px solid #FD413C;
}

.bg-yellow {
  background: #FAA237;
  border: 1px solid #FAA237;
}

.bg-border {
  border: 1px solid #B1B1B7;
}

.ui-widget.ui-widget-content {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
.ui-widget.ui-widget-content .ui-widget-header {
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
}

.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: none;
  background: transparent;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrl";
  color: #828282;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.ui-state-default:hover {
  border: 1px solid #2F80ED;
  color: #2F80ED;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  color: #F4F3F4;
  background: #2F80ED;
}

.ui-datepicker th span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}

.ui-widget-header .ui-icon {
  width: 18px;
  height: 18px;
  background-image: url("/images/icons/chevron-left.svg");
  background-position: center;
}

.ui-datepicker-next span {
  transform: rotate(180deg);
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  background: transparent;
  border: none;
}

.dashboard-employees__item-user {
  display: flex;
  align-items: center;
}

.current-sessions {
  display: flex;
  padding-bottom: 15px;
}
.current-sessions svg {
  width: 3rem;
}
.current-sessions .text-sm {
  font-size: 1.3125rem;
  line-height: 1.875rem;
  min-width: 200px;
}
.current-sessions .text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.current-sessions .text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.current-sessions .text-xs {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.current-sessions .text-green-500 {
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}
.current-sessions .font-semibold {
  font-weight: 600;
}
.current-sessions .logout {
  padding-left: 15px;
  line-height: 3.375rem;
  text-align: right;
  width: 100%;
}

.dashboard-user > div {
  width: calc((100% - 30px) / 3 - 31px);
}
.dashboard-user > div:first-child {
  max-width: 570px;
  width: calc((100% - 30px) / 3 + 102px);
}
.dashboard-user > div:last-child {
  width: calc((100% - 30px) / 3 - 31px);
}
.dashboard-user .dashboard-block__top h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
}
.dashboard-user .dashboard-info__top {
  margin-bottom: 0;
}
.dashboard-user .dashboard-block-contact .dashboard-block__top h4 {
  padding-bottom: 15px;
}
.dashboard-user .dashboard-block-contact .form-group {
  width: 100%;
}
.dashboard-user .dashboard-block-contact .input-container {
  margin-bottom: 20px;
  justify-content: space-between;
}
.dashboard-user .dashboard-block-contact .input-container .form-group {
  width: calc((100% - 10px) / 2);
}
.dashboard-user .dashboard-standort .dashboard-block__top a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
}
.dashboard-user .dashboard-standort .dashboard-block__content {
  display: flex;
  margin-top: 15px;
  align-items: center;
}
.dashboard-user .dashboard-standort .dashboard-block__content img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.dashboard-user .dashboard-standort .dashboard-block__content div p:first-child {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.dashboard-user .dashboard-standort .dashboard-block__content div p:last-child, .dashboard-user .dashboard-standort .dashboard-block__content div p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.dashboard-user .dashboard-user__upload h4 {
  padding-bottom: 30px;
}
.dashboard-user .dashboard-user__upload .load-doc {
  background: var(--main-bg-light);
  border: 1px dashed var(--main-border);
  border-radius: 5px;
  height: 81px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.dashboard-user .dashboard-user__upload .load-doc input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.dashboard-user .dashboard-user__upload .load-doc p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.dashboard-user .dashboard-user__upload .load-doc p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  padding: 0 5px;
}
.dashboard-user .dashboard-user__upload .load-doc p svg {
  margin-right: 10px;
}
.dashboard-user .dashboard-user__upload .upload-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dashboard-user .dashboard-user__upload .upload-file p {
  padding-left: 25px;
  position: relative;
}
.dashboard-user .dashboard-user__upload .upload-file p:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("/images/icons/file.svg");
  background-position: center;
}
.dashboard-user .dashboard-user__upload .upload-file > div {
  display: flex;
  align-items: center;
}
.dashboard-user .dashboard-user__upload .upload-file > div div {
  width: 18px;
  height: 18px;
  background-image: url("/images/icons/download.svg");
  cursor: pointer;
}
.dashboard-user .dashboard-user__upload .upload-file > div div:last-child {
  margin-left: 5px;
  background-image: url("/images/icons/trash.svg");
}
.dashboard-user .dashboard-administration .dashboard-block__content .form-group {
  width: 100%;
  margin-top: 15px;
}
.dashboard-user .dashboard-administration .dashboard-block__content .form-group:last-child {
  margin-top: 20px;
}

.current_hours_tbl {
  margin: auto;
  font-size: 17px;
}
.current_hours_tbl td {
  padding: 8px;
}

.userimage {
  width: 32px;
  max-width: 32px;
  height: auto; /* add !important if height is set inline on the image */
  max-height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.userimage-big {
  width: 48px;
  max-width: 48px;
  height: auto; /* add !important if height is set inline on the image */
  max-height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.scrolling_employee_stats_list {
  margin-top: 5px;
  margin-bottom: 15px;
  overflow-x: auto;
  border-bottom-width: 0;
}
.scrolling_employee_stats_list div {
  min-width: fit-content;
  margin-bottom: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-bottom: 1px solid transparent !important;
}
.scrolling_employee_stats_list div:hover {
  border-color: #2F80ED;
  cursor: pointer;
  border-radius: 10px;
  border-bottom: 1px solid #2F80ED !important;
}

.shift-takeover-block {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.asked-employees-section, .state-section, .comment-section, .shift_section {
  margin-bottom: 1rem;
}

.section-title {
  color: black;
  font-weight: bold;
}

#shift_takeover_information_asked_employees span {
  display: block;
  color: black;
  padding-left: 1.5rem;
}

#shift_takeover_information_shift p {
  display: block;
  color: black;
  padding-left: 1.5rem;
}

.dashboard_hours_element {
  width: 100%;
  border: 0 !important;
}
.dashboard_hours_element-category_img {
  width: 35px;
  margin: auto;
}
.dashboard_hours_element-hours_txt {
  margin: auto !important;
  font-size: 26px !important;
  color: #2F80ED !important;
}
.dashboard_hours_element-hours_part {
  width: 25%;
  display: block !important;
  border: 0 !important;
}
.dashboard_hours_element-vacations_part1 {
  width: 25%;
  display: block !important;
  border: 0 !important;
}
.dashboard_hours_element-vacations_part2 {
  width: 25%;
  display: block !important;
  border: 0 !important;
}
.dashboard_hours_element-vacations_part3 {
  width: 25%;
  display: block !important;
  border: 0 !important;
}
.dashboard_hours_element-vacations_part4 {
  width: 25%;
  display: block !important;
  border: 0 !important;
}

.sick-table-backoffice {
  display: block !important;
  margin-bottom: 40px;
  padding: 5px 5px !important;
}
.sick-table-backoffice--bordered {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.sick-table-backoffice-header, .sick-table-backoffice-item {
  font-size: 9px;
  display: grid !important;
  grid-template-columns: 32px 1.7fr 1.7fr 1fr 1fr 45px 45px 50px;
  column-gap: 5px;
  align-items: center;
  padding: 0;
}
.sick-table-backoffice svg {
  width: 18px;
  height: 18px;
}
.sick-table-backoffice-header > p, .sick-table-backoffice-item > p {
  margin: 0 !important;
  padding: 8px 10px;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}
.sick-table-backoffice-header > p:first-child, .sick-table-backoffice-header > p:last-child, .sick-table-backoffice-item > p:first-child, .sick-table-backoffice-item > p:last-child {
  align-items: center;
  justify-content: center;
}
.sick-table-backoffice-header > p svg, .sick-table-backoffice-item > p svg {
  display: block;
}
.sick-table-backoffice-header {
  font-weight: 600;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}
.sick-table-backoffice-item {
  text-overflow: ellipsis;
  border-bottom: 1px solid #eee;
}
.sick-table-backoffice-item:last-child {
  border-bottom: 0;
}
.sick-table-backoffice-item:nth-of-type(odd) {
  background: #fafafa;
}
.sick-table-backoffice-item:hover {
  background: #f0f7ff;
}

.sick-table-backoffice-header > p:nth-child(2),
.sick-table-backoffice-header > p:nth-child(3),
.sick-table-backoffice-item > p:nth-child(2),
.sick-table-backoffice-item > p:nth-child(3),
.sick-table-backoffice-item > p:nth-child(4),
.sick-table-backoffice-item > p:nth-child(5) {
  white-space: normal;
  text-overflow: clip;
  word-wrap: break-word;
}

.sick-table-manager {
  display: block !important;
  margin-bottom: 40px;
  padding: 5px 5px !important;
}
.sick-table-manager--bordered {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.sick-table-manager-header, .sick-table-manager-item {
  font-size: 9px;
  display: grid !important;
  grid-template-columns: 32px 2.2fr 1fr 1fr 50px 55px;
  column-gap: 5px;
  align-items: center;
  padding: 0;
}
.sick-table-manager svg {
  width: 18px;
  height: 18px;
}
.sick-table-manager-header > p, .sick-table-manager-item > p {
  margin: 0 !important;
  padding: 8px 10px;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}
.sick-table-manager-header > p:first-child, .sick-table-manager-header > p:last-child, .sick-table-manager-item > p:first-child, .sick-table-manager-item > p:last-child {
  align-items: center;
  justify-content: center;
}
.sick-table-manager-header > p svg, .sick-table-manager-item > p svg {
  display: block;
}
.sick-table-manager-header {
  font-weight: 600;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}
.sick-table-manager-item {
  text-overflow: ellipsis;
  border-bottom: 1px solid #eee;
}
.sick-table-manager-item:last-child {
  border-bottom: 0;
}
.sick-table-manager-item:nth-of-type(odd) {
  background: #fafafa;
}
.sick-table-manager-item:hover {
  background: #f0f7ff;
}

.sick-table-manager-header > p:nth-child(2),
.sick-table-manager-header > p:nth-child(3),
.sick-table-manager-item > p:nth-child(2),
.sick-table-manager-item > p:nth-child(3),
.sick-table-manager-item > p:nth-child(4),
.sick-table-manager-item > p:nth-child(5) {
  white-space: normal;
  text-overflow: clip;
  word-wrap: break-word;
}

.p_link {
  cursor: pointer;
}

.administration {
  overflow-x: auto;
}
.administration::-webkit-scrollbar {
  display: none;
}
.administration__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 65px 16px 55px;
}
.administration__top p {
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
  line-height: 17px;
  color: #828282;
  flex-shrink: 0;
  font-weight: normal;
}
.administration__top p:nth-child(1) {
  width: 7.7vw;
  min-width: 200px;
}
.administration__top p:nth-child(2) {
  width: 5.7vw;
  min-width: 100px;
}
.administration__top p:nth-child(3) {
  width: 3.2vw;
  min-width: 70px;
}
.administration__top p:nth-child(4) {
  width: 3.8vw;
  min-width: 80px;
}
.administration__top p:nth-child(5) {
  width: 3.8vw;
  min-width: 80px;
}
.administration__top p:nth-child(6) {
  width: 5.6vw;
  min-width: 120px;
}
.administration__top p:nth-child(7) {
  width: 8.1vw;
  min-width: 170px;
}
.administration__top p:nth-child(8) {
  width: 3.4vw;
  min-width: 85px;
}
.administration__top p:nth-child(9) {
  width: 4vw;
  min-width: 85px;
}
.administration__top p:nth-child(10) {
  width: 4.4vw;
  min-width: 95px;
}
.administration__top p:nth-child(11) {
  width: 3vw;
  min-width: 65px;
  justify-content: flex-end;
}
.administration__top p svg {
  margin-left: 5px;
}
.administration-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px 0;
}
.administration-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 65px 10px 55px;
  border-top: 1px solid var(--main-border);
  min-width: 100%;
}
.administration-item p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  flex-shrink: 0;
}
.administration-item p span:not(.settings-drop) {
  display: flex;
}
.administration-item p:nth-child(1) {
  width: 7.7vw;
  min-width: 200px;
}
.administration-item p:nth-child(1) img {
  margin-right: 10px;
}
.administration-item p:nth-child(2) {
  width: 5.7vw;
  min-width: 100px;
  cursor: pointer;
}
.administration-item p:nth-child(3) {
  width: 3.2vw;
  min-width: 70px;
}
.administration-item p:nth-child(3) img {
  position: relative;
}
.administration-item p:nth-child(3) img:nth-child(2) {
  left: -15px;
}
.administration-item p:nth-child(3) img:nth-child(3) {
  left: -30px;
}
.administration-item p:nth-child(4) {
  width: 3.8vw;
  min-width: 80px;
}
.administration-item p:nth-child(5) {
  width: 3.8vw;
  min-width: 80px;
}
.administration-item p:nth-child(6) {
  width: 5.6vw;
  min-width: 120px;
}
.administration-item p:nth-child(7) {
  width: 8.1vw;
  min-width: 170px;
}
.administration-item p:nth-child(8) {
  width: 3.4vw;
  min-width: 85px;
}
.administration-item p:nth-child(9) {
  width: 4vw;
  min-width: 85px;
}
.administration-item p:nth-child(10) {
  width: 4.4vw;
  min-width: 95px;
}
.administration-item p:nth-child(11) {
  width: 3vw;
  justify-content: flex-end;
  cursor: pointer;
  position: relative;
  min-width: 65px;
  justify-content: flex-end;
}
.administration-item p:nth-child(11):hover > svg {
  background: #FDFCFD;
  box-shadow: 0px 0px 11px rgba(58, 67, 76, 0.05), 0px 11px 11px rgba(58, 67, 76, 0.05);
  border-radius: 5px;
}
.administration-item p img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.administration.vacation .administration__top p:nth-child(1),
.administration.vacation .administration-item p:nth-child(1) {
  width: 9.5vw;
}
.administration.vacation .administration__top p:nth-child(2),
.administration.vacation .administration-item p:nth-child(2) {
  width: 4vw;
}
.administration.vacation .administration__top p:nth-child(3),
.administration.vacation .administration-item p:nth-child(3) {
  width: 5vw;
  min-width: 105px;
}
.administration.vacation .administration__top p:nth-child(4),
.administration.vacation .administration-item p:nth-child(4) {
  width: 3.8vw;
}
.administration.vacation .administration__top p:nth-child(5),
.administration.vacation .administration-item p:nth-child(5) {
  width: 11vw;
}
.administration.vacation .administration__top p:nth-child(6),
.administration.vacation .administration-item p:nth-child(6) {
  width: 3.5vw;
  min-width: 85px;
}
.administration.vacation .administration__top p:nth-child(7),
.administration.vacation .administration-item p:nth-child(7) {
  width: 3.5vw;
  min-width: 85px;
}
.administration.vacation .administration__top p:nth-child(8),
.administration.vacation .administration-item p:nth-child(8) {
  min-width: 145px;
  width: 6.6vw;
}
.administration.vacation .administration__top p:nth-child(9),
.administration.vacation .administration-item p:nth-child(9) {
  width: 9.6vw;
  min-width: 225px;
}
.administration.vacation .administration__top p:nth-child(10),
.administration.vacation .administration-item p:nth-child(10) {
  width: 8.4vw;
  min-width: 185px;
}
.administration.vacation .administration__top p svg,
.administration.vacation .administration-item p svg {
  margin-left: 5px;
}
.administration.vacation .administration__top__state,
.administration.vacation .administration-item__state {
  min-width: auto;
}
.administration .administration-item p:nth-child(7).value-minus {
  color: #FD413C;
}
.administration .administration-item p__state {
  min-width: auto;
}
.administration .administration-item p.type {
  padding-left: 24px;
  position: relative;
}
.administration .administration-item p.type:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.administration .administration-item p.type.vacation:after {
  background-image: url("/images/vac.svg");
}
.administration .administration-item p.type.ill:after {
  background-image: url("/images/ill.svg");
}
.administration .administration-item p:last-of-type {
  position: relative;
}
.administration .administration-item p:last-of-type > span:first-child {
  border-radius: 10px;
  padding: 10px 14px 10px 30px;
  position: relative;
  cursor: pointer;
  width: 110px;
  display: flex;
  justify-content: space-between;
}
.administration .administration-item p:last-of-type > span:first-child svg {
  margin-left: 7px;
}
.administration .administration-item p:last-of-type > span:first-child:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
}
.administration .administration-item p:last-of-type > span:last-child {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 48px;
  width: 100%;
  display: none;
  z-index: 3;
  min-width: max-content;
}
.administration .administration-item p:last-of-type > span:last-child span {
  display: flex;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  padding: 10px 14px;
  cursor: pointer;
  padding-left: 28px;
  position: relative;
}
.administration .administration-item p:last-of-type > span:last-child span:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
}
.administration .administration-item p:last-of-type > span:last-child span.circle-yellow:after {
  background: #FAA237;
}
.administration .administration-item p:last-of-type > span:last-child span.circle-green:after {
  background: #00A358;
}
.administration .administration-item p:last-of-type > span:last-child span.circle-grey:after {
  background: #4F4F4F;
}
.administration .administration-item p:last-of-type > span:last-child span.circle-red:after {
  background: #FD413C;
}
.administration .administration-item p:last-of-type > span:last-child span:hover {
  background-color: rgba(26, 186, 113, 0.05);
}
.administration .administration-item p:last-of-type.processing > span:first-child {
  background-color: rgba(225, 225, 225, 0.2);
}
.administration .administration-item p:last-of-type.processing > span:first-child:after {
  background-color: #4F4F4F;
}
.administration .administration-item p:last-of-type.declined > span:first-child {
  background-color: rgba(253, 65, 60, 0.2);
}
.administration .administration-item p:last-of-type.declined > span:first-child:after {
  background-color: #FD413C;
}
.administration .administration-item p:last-of-type.approved > span:first-child {
  background-color: rgba(26, 186, 113, 0.2);
}
.administration .administration-item p:last-of-type.approved > span:first-child:after {
  background-color: #1ABA71;
}
.administration .administration-item p:last-of-type.questionable > span:first-child {
  background-color: rgba(250, 162, 55, 0.2);
}
.administration .administration-item p:last-of-type.questionable > span:first-child:after {
  background-color: #FAA237;
}
.administration .administration-item p:last-of-type.manager_approved > span:first-child {
  background-color: rgba(0, 123, 255, 0.2);
}
.administration .administration-item p:last-of-type.manager_approved > span:first-child:after {
  background-color: #0056B3;
}
.administration .administration-item p:last-of-type.requested > span:first-child {
  background-color: lightgrey;
}
.administration .administration-item p:last-of-type.requested > span:first-child:after {
  background-color: #808080;
}

.pagination {
  display: flex;
  align-items: center;
}
.pagination ul {
  display: flex;
  margin: 0px 10px;
  border: 1px solid var(--main-border);
  border-radius: 5px;
}
.pagination ul li {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13.0943px;
  line-height: 16px;
  color: #4F4F4F;
}
.pagination ul li.current {
  background: #2f80ed;
  color: #fff;
}
.pagination ul li:not(:last-child) {
  border-right: 1px solid var(--main-border);
}
.pagination div {
  border: 1px solid var(--main-border);
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

.row-per-page {
  display: flex;
  align-items: center;
}
.row-per-page > p {
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  font-weight: normal;
  margin-right: 10px;
}
.row-per-page span {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  cursor: pointer;
}
.row-per-page__drop {
  display: none;
}

.new-employee .modal-body {
  max-width: 600px;
}
.new-employee form > .new-employee__info:first-child {
  max-height: 70vh;
  overflow: auto;
}
.new-employee__info:first-child {
  margin-top: 0;
}
.new-employee__text {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin-bottom: 15px;
}
.new-employee__img-block {
  display: flex;
  align-items: center;
}
.new-employee__img-block p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #B1B1B7;
}
.new-employee .form-load {
  position: relative;
  margin-bottom: 15px;
}
.new-employee .form-load .btn-blue {
  width: max-content;
}
.new-employee .form-load input {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.new-employee__img-img {
  width: 114px;
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px dashed var(--main-border);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}
.new-employee__img-img.load {
  border: none;
}
.new-employee__img-img.load img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.new-employee__img-img.load span {
  display: flex;
}
.new-employee__img-img span {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #F4F3F4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #E1E1E1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.new-employee__info {
  margin-top: 40px;
}
.new-employee__info .form-group {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.new-employee__info .form-group svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.new-employee__info .input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-employee__info .input-container .form-group {
  width: calc((100% - 10px) / 2);
}
.new-employee .upload-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.new-employee .upload-file:not(:last-child) {
  border-bottom: 1px solid var(--main-border);
}
.new-employee .remove-file {
  width: 18px;
  height: 18px;
  background-image: url("/images/icons/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.new-employee .load-doc {
  width: calc(100% - 20px);
  margin-top: 15px;
  background: white;
  border: 1px dashed #E1E1E1;
  border-radius: 5px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-employee .load-doc label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: white;
  font-weight: normal;
}
.new-employee .load-doc p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin: 0;
}
.new-employee .load-doc p svg {
  margin-right: 15px;
}
.new-employee .load-doc p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  padding-left: 5px;
}
.new-employee .load-doc input {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}

.ui-widget.ui-widget-content {
  z-index: 99999 !important;
}

.form-multiselect {
  width: 100%;
  z-index: 7;
}

.combo, .styledSelect {
  outline: none;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: auto;
  min-height: 50px;
  padding: 15px 26.5px 15px 17.5px;
  width: 100%;
  z-index: 3;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.combo img, .styledSelect img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.combo .input-wrapper.multiselect-inline .combo-input, .styledSelect .input-wrapper.multiselect-inline .combo-input {
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 5px;
  height: 100%;
  padding: 0 20px;
  width: 100%;
  opacity: 0;
  color: transparent;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
}

.styledSelect {
  padding: 9px 26.5px 9px 17.5px;
  z-index: 5;
  cursor: pointer;
}
.styledSelect img {
  object-fit: cover;
}

.new-employee .form-group.styled label {
  z-index: 6;
}

.form-multiselect.min-label .combo-label {
  font-size: 12px;
  line-height: 14px;
  top: 0px;
  background: var(--main-bg-light-second);
  z-index: 4;
}
.form-multiselect.min-label .combo::after {
  transform: translate(0, -65%) rotate(225deg);
}

.combo::after,
.styledSelect:after {
  border-bottom: 1.5px solid var(--main-text-dark);
  border-right: 1.5px solid var(--main-text-dark);
  content: "";
  display: block;
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -65%) rotate(45deg);
  width: 7px;
  z-index: -1;
}

.input-wrapper {
  border-radius: 4px;
}

select.combo-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.combo-label {
  display: block;
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 0.25em;
}

.combo-menu, .options {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  left: 0;
  position: absolute;
  top: 110%;
  width: 100%;
  z-index: 100;
}
.combo-menu li, .options li {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding: 10px 20px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.combo-menu li:hover, .options li:hover {
  background: var(--main-bg-light);
}
.combo-menu li img, .options li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 30px;
  object-fit: cover;
}
.combo-menu-chosen_element, .options-chosen_element {
  background: var(--main-bg-light);
  border: 1px solid rgb(47, 128, 237);
}

select {
  display: none;
}

.open .combo-menu {
  display: block;
}

.open .form-group {
  z-index: 8;
}

.combo-option {
  padding: 10px 12px 12px;
  cursor: pointer;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}

.combo-option:hover {
  background: var(--main-bg-light);
}

.combo-option.option-selected {
  padding-right: 30px;
  position: relative;
}

.combo-option.option-selected {
  background: var(--main-bg-light);
}

/* multiselect list of selected options */
.selected-options {
  list-style-type: none;
  margin: 0;
  max-width: 400px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.selected-options li {
  margin: 0 1.25px 2.5px;
}
.selected-options li button {
  background: var(--main-bg-light);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}

.remove-option::after {
  transform: translate(0, -50%) rotate(-45deg);
}

.multiselect-inline .selected-options {
  flex: 0 1 auto;
}

.multiselect-inline .combo-input:focus {
  box-shadow: none;
  outline: none;
}

.settings-drop {
  background: #FDFCFD;
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  right: 0;
  position: absolute;
  top: 40px;
  width: max-content;
  z-index: 100;
}
.settings-drop span {
  display: flex;
  padding: 16px 18px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  color: #4F4F4F;
}
.settings-drop span svg {
  margin-right: 10px;
  background: transparent;
}
.settings-drop span:hover {
  background: var(--main-bg-light);
}
.settings-drop span:hover svg {
  background: transparent;
}

.administration-new-registrations .administration__top p:nth-child(5) {
  min-width: 120px;
}
.administration-new-registrations .administration__top p:nth-child(6) {
  min-width: 175px;
}
.administration-new-registrations .administration__top p:nth-child(8) {
  min-width: 245px;
}
.administration-new-registrations .administration__top p:last-child {
  justify-content: flex-end;
}
.administration-new-registrations .administration__top p:nth-child(2) {
  padding: 0 10px 0 0;
}
.administration-new-registrations .administration-item p:last-child {
  justify-content: flex-end;
}
.administration-new-registrations .administration-item p:nth-child(5) {
  min-width: 120px;
}
.administration-new-registrations .administration-item p:nth-child(8) {
  min-width: 245px;
  display: flex;
  justify-content: space-between;
}
.administration-new-registrations .administration-item p:nth-child(8) span {
  position: relative;
}
.administration-new-registrations .administration-item p:nth-child(8) span:hover span {
  display: block;
}
.administration-new-registrations .administration-item p:nth-child(8) span img {
  cursor: pointer;
  width: max-content;
  object-fit: contain;
}
.administration-new-registrations .administration-item p:nth-child(8) span span {
  position: absolute;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  background-color: var(--main-text-dark);
  border-radius: 5px;
  color: var(--main-bg-light-second);
  white-space: nowrap;
  display: none;
  padding: 3px 7px;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
}
.administration-new-registrations .administration-item p:nth-child(8) span span:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--main-text-dark);
}
.administration-new-registrations .administration-item div {
  padding-right: 15px;
}
.administration-new-registrations .administration-item div:nth-child(6) {
  min-width: 175px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
}
.administration-new-registrations .administration-item div:nth-child(6) span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.administration-new-registrations .administration-item div:nth-child(6) .progress {
  width: 125px;
  height: 4px;
  margin-left: 18px;
  border-radius: 10px;
  background-color: var(--main-border);
}
.administration-new-registrations .administration-item div:nth-child(6) .progress-bar {
  height: 100%;
  border-radius: 100px;
  background-color: #2F80ED;
}

.form-group.styled label {
  z-index: 6;
}

.dashboard-additional h4 {
  margin-bottom: 15px;
}
.dashboard-additional .form-group {
  width: 100%;
  margin-bottom: 20px;
}
.dashboard-additional textarea {
  resize: vertical;
  outline: none;
  font-family: "MuseoSansCyrl";
  border: 1px solid var(--main-text-light);
  border-radius: 5px;
  padding: 10px 20px;
  min-height: 88px;
  width: 100%;
  z-index: 3;
  background: transparent;
  height: 88px;
  position: relative;
}
.dashboard-additional .input-container {
  justify-content: space-between;
}
.dashboard-additional .input-container .form-group {
  width: calc((100% - 10px) / 2);
}

.form-textarea textarea {
  outline: none;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  padding: 12px 10px;
  border-radius: 5px;
}
.form-textarea:after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 7px;
  width: 8px;
  height: 8px;
  background-image: url("/images/icons/union.svg");
}
.form-textarea label {
  transform: none;
  top: 20px;
}
.form-textarea.styled label {
  top: 0;
  transform: translateY(-50%);
}

.form-calendar {
  position: relative;
}
.form-calendar:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/images/icons/calendar.svg");
  right: 20px;
}

.dashboard-block__toggle {
  position: relative;
  cursor: pointer;
}
.dashboard-block__toggle p {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.dashboard-block__toggle-drop {
  background: #FDFCFD;
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  right: 0;
  position: absolute;
  top: 110%;
  width: max-content;
  z-index: 100;
}
.dashboard-block__toggle-drop p {
  display: flex;
  padding: 16px 18px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  color: #4F4F4F;
}
.dashboard-block__toggle-drop p svg {
  margin-right: 10px;
  background: transparent;
}
.dashboard-block__toggle-drop p:hover {
  background: var(--main-bg-light);
}
.dashboard-block__toggle-drop p:hover svg {
  background: transparent;
}

.dashboard-registered-hours {
  height: 341px;
  padding: 35px 0;
  overflow: hidden;
}
.dashboard-registered-hours .dashboard-block__top {
  padding: 0 40px;
}
.dashboard-registered-hours #RegisteredHours, .dashboard-registered-hours #RegisteredDays {
  width: 100%;
  left: -13px;
  top: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.apexcharts-xaxis-tick {
  display: none;
}

.apexcharts-xaxis {
  /*transform: translateY(-35px) translateX(30px);*/
}

.apexcharts-tooltip {
  background: var(--main-text-dark) !important;
  border: none !important;
  overflow: visible !important;
}
.apexcharts-tooltip .apexcharts-tooltip-text {
  color: var(--main-bg-light-second);
}
.apexcharts-tooltip .apexcharts-tooltip-title,
.apexcharts-tooltip .apexcharts-tooltip-marker {
  display: none;
}
.apexcharts-tooltip .apexcharts-tooltip-text-value, .apexcharts-tooltip .apexcharts-tooltip-text-z-value {
  margin-left: 0;
}
.apexcharts-tooltip .apexcharts-tooltip-series-group.apexcharts-active, .apexcharts-tooltip .apexcharts-tooltip-series-group:last-child {
  padding-bottom: 0;
}
.apexcharts-tooltip .apexcharts-tooltip-y-group {
  padding: 6px 0;
}

.dashboard-registered-hours__avegate {
  padding: 0 40px;
  margin-top: 1px;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #1ABA71;
}

.dashboard-registered-days .dashboard-registered-hours__avegate {
  color: #BB6BD9;
}

.dashboard-block__container {
  display: flex;
  justify-content: space-between;
}
.dashboard-block__container > div {
  width: 100%;
}
.dashboard-block__container > div .dashboard-block__top h4 {
  font-size: 14px;
  line-height: 17px;
}
.dashboard-block__container > div .dashboard-block__top a {
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
}

.dashboard-block.dashboard-days {
  margin-bottom: 0;
}

#BonusHours,
#BonusDays {
  position: relative;
  /*left: -31px;*/
}

.dashboard-days__info {
  margin: 15px 0;
}
.dashboard-days__info p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  position: relative;
  padding-left: 17px;
}
.dashboard-days__info p:not(:last-child) {
  margin-bottom: 6px;
}
.dashboard-days__info p:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.dashboard-days__info p.dashboard-days__info-red:after {
  background: #FD413C;
}
.dashboard-days__info p.dashboard-days__info-blue:after {
  background: #2F80ED;
}
.dashboard-days__info p.dashboard-days__info-purple:after {
  background: #9B51E0;
}
.dashboard-days__info p.dashboard-days__info-yellow:after {
  background: #FAA237;
}
.dashboard-days__info span {
  padding: 0 5px;
}

.administration.stamp-times .administration__top p:nth-child(2),
.administration.stamp-times .administration-item p:nth-child(2) {
  width: 2.7vw;
  min-width: 66px;
}
.administration.stamp-times .administration__top p:nth-child(3),
.administration.stamp-times .administration-item p:nth-child(3) {
  width: 4.2vw;
  min-width: 82px;
}
.administration.stamp-times .administration__top p:nth-child(4),
.administration.stamp-times .administration-item p:nth-child(4) {
  width: 4.8vw;
  min-width: 90px;
}
.administration.stamp-times .administration__top p:nth-child(6),
.administration.stamp-times .administration-item p:nth-child(6) {
  width: 1.6vw;
  min-width: 38px;
}
.administration.stamp-times .administration__top p:nth-child(7) img,
.administration.stamp-times .administration-item p:nth-child(7) img {
  margin-right: 10px;
}
.administration.stamp-times .administration__top p:nth-child(8),
.administration.stamp-times .administration-item p:nth-child(8) {
  width: 6.4vw;
  min-width: 110px;
}
.administration.stamp-times .administration__top p:last-child,
.administration.stamp-times .administration-item p:last-child {
  justify-content: flex-end;
}
.administration.stamp-times .administration__top p:last-child > span svg,
.administration.stamp-times .administration-item p:last-child > span svg {
  width: 16px;
}
.administration.stamp-times .administration__top p:last-child > span:first-child,
.administration.stamp-times .administration-item p:last-child > span:first-child {
  justify-content: flex-end;
  padding: 0;
}
.administration.stamp-times .administration__top p:last-child > span:last-child,
.administration.stamp-times .administration-item p:last-child > span:last-child {
  top: 26px;
}
.administration.stamp-times .administration__top p:last-child > span:last-child span,
.administration.stamp-times .administration-item p:last-child > span:last-child span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 17px;
  color: #4F4F4F;
}
.administration.stamp-times .administration__top p:last-child > span:last-child span:first-child,
.administration.stamp-times .administration-item p:last-child > span:last-child span:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.administration.stamp-times .administration__top p:last-child > span:last-child span:last-child,
.administration.stamp-times .administration-item p:last-child > span:last-child span:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.administration.stamp-times .administration__top p:last-child > span:last-child span:hover,
.administration.stamp-times .administration-item p:last-child > span:last-child span:hover {
  background: var(--main-border);
}
.administration.stamp-times .administration__top p:last-child > span:last-child span svg,
.administration.stamp-times .administration-item p:last-child > span:last-child span svg {
  margin-right: 14px;
}

.location {
  padding: 20px 65px 0px 55px;
  display: flex;
  flex-wrap: wrap;
}
.location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  width: calc((100% - 20px) / 3);
  cursor: pointer;
  margin-bottom: 10px;
  margin-right: 5px;
}
.location-item:hover {
  border-color: #2F80ED;
}
.location-item div {
  display: flex;
}
.location-item div img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 20px;
}
.location-item div p {
  display: flex;
  flex-direction: column;
}
.location-item div p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.location-item div p > span:first-child {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #4F4F4F;
}

.dashboard-location > div {
  width: calc((100% - 15px) / 2 - 80px);
}
.dashboard-location > div:last-child {
  width: calc((100% - 15px) / 2 + 80px);
}
.dashboard-location .dashboard-block__top h4 {
  color: var(--main-text-dark);
}
.dashboard-location .dashboard-block__radio {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  margin-top: 30px;
}
.dashboard-location .dashboard-block__radio .form-radio {
  margin-bottom: 0;
  margin-left: 10px;
}
.dashboard-location .dashboard-block__radio .form-radio label {
  color: var(--main-text-grey);
}
.dashboard-location .dashboard-block__radio .form-radio input:checked + label {
  color: var(--main-text-dark);
}

.dashboard-info .input-container {
  margin-top: 15px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dashboard-info .input-container .form-group {
  width: 59%;
}
.dashboard-info .input-container .form-group:last-child {
  width: 40%;
}
.dashboard-info .form-group {
  width: 100%;
}
.dashboard-info__top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
}
.dashboard-info .dashboard-location__img {
  width: 115px;
  height: 115px;
  position: relative;
  flex-shrink: 0;
  margin-right: 20px;
}
.dashboard-info .dashboard-location__img img {
  border-radius: 50%;
  object-fit: cover;
}
.dashboard-info .dashboard-location__img-edit {
  width: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 30px;
  border-radius: 50%;
  background: var(--main-bg-light);
  border: 1px solid var(--main-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dashboard-info .dashboard-location__img-edit input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.dashboard-info .dashboard-location__img + div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dashboard-info .dashboard-location__img + div p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.dashboard-info .dashboard-location__about {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  /*margin-bottom: 10px;*/
}
.dashboard-info .dashboard-location__about .settings-more {
  display: flex;
  cursor: pointer;
  position: relative;
}
.dashboard-info .dashboard-location__about h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: var(--main-text-dark);
}

.dashboard-link .dashboard-block__content {
  margin-top: 10px;
}
.dashboard-link p {
  display: flex;
  align-items: center;
}
.dashboard-link p:not(:last-child) {
  margin-bottom: 15px;
}
.dashboard-link p svg {
  margin-left: 10px;
  cursor: pointer;
}
.dashboard-link p span {
  white-space: nowrap;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--main-text-grey);
}
.dashboard-link p span:first-child {
  margin-right: 10px;
}
.dashboard-link p a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
}

input[type=file],
input[type=file]::-webkit-file-upload-button { /* chromes and blink button */
  cursor: pointer;
}

.dashboard-employeesnew .dashboard-block__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.dashboard-employeesnew .dashboard-block__content .form-group {
  width: 38%;
}
.dashboard-employeesnew .dashboard-block__content .form-group:last-child {
  width: 61%;
}
.dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file {
  position: relative;
  border: 1px solid var(--main-text-light);
  border-radius: 5px;
  height: 50px;
}
.dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file .upload-file {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  position: relative;
  height: 100%;
  padding-left: 50px;
  display: flex;
  align-items: center;
}
.dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file .upload-file.loaded:after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("/images/icons/paperclip.svg");
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  position: absolute;
}
.dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}
.dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file span {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.dashboard-areas__btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  display: flex;
  align-items: center;
}
.dashboard-areas__btn svg {
  background: #2F80ED;
  border-radius: 5px;
  padding: 2px;
  margin-left: 10px;
  cursor: pointer;
}
.dashboard-areas__top {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-areas__top p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.dashboard-areas__top p:first-child {
  width: 4.4vw;
}
.dashboard-areas__top p:nth-child(2) {
  width: 6.2vw;
}
.dashboard-areas__top p:nth-child(3) {
  width: 4vw;
  text-align: center;
}
.dashboard-areas__top p:nth-child(4) {
  width: 35px;
}
.dashboard-areas__top p:nth-child(5) {
  width: 35px;
}
.dashboard-areas__top p:nth-child(6) {
  width: 4vw;
  text-align: center;
}
.dashboard-areas__top p:nth-child(7) {
  width: 3.5vw;
  text-align: center;
}
.dashboard-areas__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--main-border);
  padding: 20px 0;
}
.dashboard-areas__item p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.dashboard-areas__item p:first-child {
  width: 4.4vw;
}
.dashboard-areas__item p:nth-child(2) {
  width: 6.2vw;
}
.dashboard-areas__item p:nth-child(3) {
  width: 4vw;
  text-align: center;
}
.dashboard-areas__item p:nth-child(4) {
  display: flex;
  width: 35px;
  justify-content: center;
}
.dashboard-areas__item p:nth-child(5) {
  width: 35px;
  margin: 0;
  height: 20px;
}
.dashboard-areas__item p:nth-child(5) label {
  padding: 0;
}
.dashboard-areas__item p:nth-child(6) {
  width: 4vw;
  text-align: center;
}
.dashboard-areas__item p:nth-child(7) {
  width: 3.5vw;
  text-align: center;
}
.dashboard-areas__item span {
  cursor: pointer;
}
.dashboard-areas__item .color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
}
.dashboard-areas__item .color-yellow {
  background: #FAA237;
}
.dashboard-areas__item .color-green {
  background: #1ABA71;
}

.drag-element {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main-bg-light);
  border-radius: 5px;
  width: max-content;
  padding: 8px 18px;
  cursor: pointer;
  margin-bottom: 10px;
}
.drag-element > div {
  display: flex;
  align-items: center;
}
.drag-element > div p {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.drag-element > div p span {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-grey);
}
.drag-element > div p span:first-child {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.drag-element > div svg:last-child {
  margin-left: 5px;
}

.dashboard-fields h6 {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  margin: 15px 0;
}
.dashboard-fields .drag-container__general {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dashboard-fields .drag-container__general > div {
  width: calc((100% - 20px) / 3);
}
.dashboard-fields .drag-container__andere > div {
  width: 100%;
}
.dashboard-fields .drag-container__administratives {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dashboard-fields .drag-container__administratives > div {
  width: calc((100% - 10px) / 2);
}
.dashboard-fields .drag-container__administratives > div:nth-child(2n+1):last-child {
  width: 100%;
}

.gu-mirror {
  margin: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s ease-in-out;
}

.gu-mirror {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

.gu-hide {
  display: none !important;
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.gu-transit {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}

.dashboard-access .dashboard-block__content {
  margin-top: 15px;
}
.dashboard-access .dashboard-block__content .form-group {
  width: 100%;
  margin-bottom: 20px;
}
.dashboard-access .dashboard-block__content .form-group.styled label {
  z-index: 6;
}

.modal.new-area .modal-body {
  max-width: 352px;
}
.modal.new-area .modal-body .modal-title {
  padding-bottom: 30px;
  font-weight: 500;
}
.modal.new-area .modal-body .form-group {
  width: 100%;
  margin-bottom: 20px;
}
.modal.new-area .modal-body > span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  padding-bottom: 15px;
  display: flex;
}

.upload-file p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}

.new-area__color {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.color-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
}
.color-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.color-item input:checked + label {
  border-color: #2F80ED;
}
.color-item label {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.color-item label span {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.bold .fc-event-title {
  font-weight: 1000;
  color: var(--main-text-dark);
}

.vacation-calendar {
  margin: 50px 0 16px 55px;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
}
.vacation-calendar #calendar {
  width: 80%;
}
.vacation-calendar #newWeekcalendar {
  width: 80%;
}
.vacation-calendar #calendarBy {
  width: 62%;
}
.vacation-calendar #calendarBy .fc-toolbar-chunk .fc-today-button {
  display: block;
}
.vacation-calendar #calendarBy .fc-toolbar-chunk .fc-button-group {
  margin-left: 0;
}
.vacation-calendar #calendarBy .fc-bg-event {
  /*background-image: url(/images/icons/calendar-lines-red.svg);*/
}
.vacation-calendar #calendarBy .fc-daygrid-day-top {
  padding-bottom: 25px;
}
.vacation-calendar #calendarBy .fc-daygrid-event {
  justify-content: center;
  margin-top: 1px;
  overflow: initial;
  margin-bottom: 0;
  position: relative;
}
.vacation-calendar #calendarBy .fc-daygrid-event .item-time {
  position: absolute;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
  top: -30px;
}

.newplan-calendar {
  margin: 50px 0 16px 55px;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
}
.newplan-calendar #calendar {
  width: 80%;
}
.newplan-calendar #newWeekcalendar {
  width: 80%;
}
.newplan-calendar #calendarBy {
  width: 62%;
}
.newplan-calendar #calendarBy .fc-toolbar-chunk .fc-today-button {
  display: block;
}
.newplan-calendar #calendarBy .fc-toolbar-chunk .fc-button-group {
  margin-left: 0;
}
.newplan-calendar #calendarBy .fc-bg-event {
  background-image: url(/images/icons/calendar-lines-red.svg);
}
.newplan-calendar #calendarBy .fc-daygrid-day-top {
  padding-bottom: 25px;
}
.newplan-calendar #calendarBy .fc-daygrid-event {
  justify-content: center;
  margin-top: 1px;
  overflow: initial;
  margin-bottom: 0;
  position: relative;
}
.newplan-calendar #calendarBy .fc-daygrid-event .item-time {
  position: absolute;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
  top: -30px;
}

.hover-start {
  padding: 10px;
  margin: 0;
  text-align: center;
  position: absolute;
  background-color: #2F80ED;
  color: #ffffff;
  z-index: 1000;
  opacity: 0.9;
  border-radius: 3px;
}
.hover-start-comment-headline {
  font-size: 75%;
  padding-bottom: 10px;
}
.hover-start-check_type-headline {
  font-size: 75%;
  padding-bottom: 10px;
}

.hover-end {
  padding: 10px;
  margin: 0;
  text-align: center;
  position: absolute;
  background-color: #127e00;
  color: #ffffff;
  z-index: 1000;
  opacity: 0.8;
  border-radius: 3px;
}
.hover-end-comment-headline {
  font-size: 75%;
  padding-bottom: 10px;
}
.hover-end-check_type-headline {
  font-size: 75%;
  padding-bottom: 10px;
}

.checkin-comment {
  background-color: #127e00;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 1px;
  bottom: -10px;
  border-bottom-right-radius: 3px;
}

.checkin-check_type {
  background-color: #00157e;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-bottom-right-radius: 3px;
}

.checkin-surcharge {
  background-color: #ee0c03;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 1px;
  top: 1px;
  border-bottom-right-radius: 3px;
}

.calendar-information {
  background-color: transparent;
  background-image: none !important;
}
.calendar-information div {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0 !important;
}

.calendar-information-weektippy {
  background-color: transparent;
  background-image: none !important;
  width: 100%;
  height: 100%;
}

.week_tippy_separator {
  font-size: 9px;
}

.week_tippy_ist {
  font-size: 12px;
}

.week_tippy_soll {
  font-size: 8px;
}

.calendar-information-backinfo {
  background-color: transparent;
  background-image: none !important;
}
.calendar-information-backinfo div {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0 !important;
  padding-bottom: 18px;
  /*font-size: 17px !important;*/
  font-size: 1vh !important;
}
.calendar-information-backinfo p {
  position: relative;
  z-index: 4;
  padding: 4px;
  text-align: center;
  margin-top: 35px;
}

.calendar-information-backinfo-missing-stamp {
  background-color: transparent;
  background-image: none !important;
}
.calendar-information-backinfo-missing-stamp div {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0 !important;
  padding-bottom: 8px;
  /*font-size: 17px !important;*/
  font-size: 0.8vh !important;
}
.calendar-information-backinfo-missing-stamp p {
  position: relative;
  z-index: 4;
  padding: 4px;
  text-align: center;
  margin-top: 35px;
}

.ribbon {
  --r: .4em; /* control the ribbon shape (the radius) */
  --c: #fae3b0;
  position: absolute;
  bottom: 5px;
  line-height: 1.8;
  padding: calc(2 * var(--r)) 0.5em 0;
  border-radius: 0 var(--r) var(--r) 0;
  background: radial-gradient(100% 50% at right, var(--c) 98%, rgba(0, 0, 0, 0) 101%) 0 100%/0.5lh calc(100% - 2 * var(--r)), radial-gradient(100% 50% at left, rgba(0, 0, 0, 0.3333333333) 98%, rgba(0, 0, 0, 0) 101%) 100% 0/var(--r) calc(2 * var(--r)), conic-gradient(at calc(100% - var(--r)) calc(2 * var(--r)), var(--c) 75%, rgba(0, 0, 0, 0) 0) 100% 0/calc(101% - 0.5em) 100%;
  background-repeat: no-repeat;
  width: 40px;
  right: -3px;
}

.calendar-information-notexisting {
  background-color: #dddddd;
  background-image: none !important;
  opacity: 0.5;
}
.calendar-information-notexisting div {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0 !important;
  padding-bottom: 10px;
  /*font-size: 17px !important;*/
  font-size: 1.3vh !important;
}
.calendar-information-notexisting p {
  position: relative;
  z-index: 4;
  padding: 4px;
  text-align: center;
  margin-top: 35px;
}

.calendar-information-ft {
  background-color: transparent;
}
.calendar-information-ft div {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0 !important;
}

.settings-vacation {
  position: absolute;
  right: 0;
}

.calendar-stats {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  border-radius: 20px;
  padding: 20px 0 5px 0;
  height: max-content;
  width: 24.5vw;
  margin-top: 65px;
  margin-left: 65px;
  position: relative;
}
.calendar-stats__top {
  padding: 0 30px;
  border-bottom: 1px solid var(--main-border);
}
.calendar-stats__top ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.calendar-stats__top ul li {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
.calendar-stats__top ul li:not(:last-child) {
  margin-right: 18px;
}
.calendar-stats__top ul li.active {
  color: #2F80ED;
  border-color: #2F80ED;
}
.calendar-stats #monthlyStatistics,
.calendar-stats #vacationStatistics,
.calendar-stats #serviceStatistics,
.calendar-stats #illStatistics {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  margin-right: 14px;
}
.calendar-stats .dp_time_p {
  float: left;
}
.calendar-stats .ut {
  font-weight: 600;
  font-size: 40px;
  line-height: 32px;
  color: #2F80ED;
  margin-top: 45px;
  padding: 0 30px;
  width: 50%;
  float: left;
  text-align: center;
}
.calendar-stats .ut span {
  font-size: 11px;
}
.calendar-stats__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #4F4F4F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.calendar-stats__title span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.calendar-stats .settings-page__right {
  background: transparent;
  flex: 1;
  border: none;
  border-radius: 0;
  margin-left: 0;
  min-width: initial;
  padding: 0;
}
.calendar-stats .settings-page__right.monthly-cancellation-all {
  display: block;
}
.calendar-stats-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.calendar-stats-desc p, .calendar-stats-desc span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  /*color: #4F4F4F;*/
}
.calendar-stats-desc p svg, .calendar-stats-desc span svg {
  margin-right: 10px;
}
.calendar-stats-desc p:not(:last-child) {
  margin-right: 25px;
}
.calendar-stats-desc-computation_graph {
  margin-left: 20px;
  margin-right: 20px;
  width: 100%;
  margin-bottom: 0;
}
.calendar-stats-desc-computation_top {
  margin-top: 10px;
  margin-bottom: 0;
}
.calendar-stats-desc-computation_tags {
  padding: 10px 30px 10px;
  border-top: 1px solid var(--main-border);
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-stats-desc-computation_description_average {
  font-weight: 600;
  font-size: 40px;
  line-height: 32px;
  color: #2F80ED;
  margin-top: 45px;
}
.calendar-stats-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  bottom: 10px;
  position: absolute;
}
.calendar-stats-bottom p, .calendar-stats-bottom span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
}
.calendar-stats-bottom p svg, .calendar-stats-bottom span svg {
  margin-right: 10px;
}
.calendar-stats-bottom p:not(:last-child) {
  margin-right: 25px;
}
.calendar-stats-btncontainer {
  margin-top: 30px;
}
.calendar-stats-btnslist {
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-top: 10px;*/
}
.calendar-stats-btnslist p, .calendar-stats-btnslist span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
}
.calendar-stats-btnslist p svg, .calendar-stats-btnslist span svg {
  margin-right: 10px;
}
.calendar-stats-btnslist p:not(:last-child) {
  margin-right: 25px;
}

.calendar-user {
  width: 25%;
  margin-top: 71px;
  border-top: 1px solid var(--main-border);
  padding: 25px 65px 0px 30px;
}
.calendar-user__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
}
.calendar-user__top p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.calendar-user__calendar {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
}
.calendar-user__calendar svg {
  margin-right: 6px;
}
.calendar-user__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-user__item:not(:last-child) {
  margin-bottom: 20px;
}
.calendar-user__item div {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.calendar-user__item div img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 15px;
}
.calendar-user__item div p, .calendar-user__item div span:first-child {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  font-weight: normal;
}
.calendar-user__item div span:last-child {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  font-weight: normal;
}

/* classes attached to <body> */
.fc-not-allowed,
.fc-not-allowed .fc-event { /* override events' custom cursors */
  cursor: not-allowed;
}

.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fc {
  /* layout of immediate children */
  display: flex;
  flex-direction: column;
  font-size: 1em;
}

.fc table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em; /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  vertical-align: top;
  padding: 0;
}

.fc a[data-navlink] {
  cursor: pointer;
}

.fc a[data-navlink]:hover {
  text-decoration: underline;
}

.fc-direction-ltr {
  direction: ltr;
  text-align: left;
}

.fc-direction-rtl {
  direction: rtl;
  text-align: right;
}

.fc-theme-standard td,
.fc-theme-standard th {
  border: 1px solid #ddd;
  border: 1px solid var(--main-border);
}

/* for FF, which doesn't expand a 100% div within a table cell. use absolute positioning */
/* inner-wrappers are responsible for being absolute */
/* TODO: best place for this? */
.fc-liquid-hack td,
.fc-liquid-hack th {
  position: relative;
}

@font-face {
  font-family: "fcicons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.fc-icon {
  /* added for fc */
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "fcicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fc-icon-chevron-left:before {
  content: "\e900";
}

.fc-icon-chevron-right:before {
  content: "\e901";
}

.fc-icon-chevrons-left:before {
  content: "\e902";
}

.fc-icon-chevrons-right:before {
  content: "\e903";
}

.fc-icon-minus-square:before {
  content: "\e904";
}

.fc-icon-plus-square:before {
  content: "\e905";
}

.fc-icon-x:before {
  content: "\e906";
}

/*
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css

These styles only apply when the standard-theme is activated.
When it's NOT activated, the fc-button classes won't even be in the DOM.
*/
.fc {
  /* reset */
}

.fc .fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--main-text-dark);
}

.fc .fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

.fc .fc-button {
  -webkit-appearance: button;
}

.fc .fc-button:not(:disabled) {
  cursor: pointer;
}

.fc .fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.fc {
  /* theme */
}

.fc .fc-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}

.fc .fc-button:hover {
  text-decoration: none;
}

.fc .fc-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.fc .fc-button:disabled {
  opacity: 0.65;
}

.fc {
  /* "primary" coloring */
}

.fc .fc-button-primary:disabled { /* not DRY */
  color: #fff;
  color: var(--fc-button-text-color, #fff);
  background-color: #2C3E50;
  background-color: var(--fc-button-bg-color, #2C3E50);
  border-color: #2C3E50;
  border-color: var(--fc-button-border-color, #2C3E50); /* overrides :hover */
  background-color: transparent;
  border-color: transparent;
  color: transparent;
}
.fc .fc-button-primary:disabled span {
  display: none;
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  color: var(--fc-button-text-color, #fff);
  background-color: #1a252f;
  background-color: var(--fc-button-active-bg-color, #1a252f);
  border-color: #151e27;
  border-color: var(--fc-button-active-border-color, #151e27);
}

.fc .fc-button-primary:not(:disabled):active:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

.fc {
  /* icons within buttons */
}

.fc .fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em; /* bump up the size (but don't make it bigger than line-height of button, which is 1.5em also) */
}

.fc .fc-button-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.fc .fc-button-group > .fc-button {
  position: relative;
  flex: 1 1 auto;
}

.fc .fc-button-group > .fc-button:hover {
  z-index: 1;
}

.fc .fc-button-group > .fc-button:focus,
.fc .fc-button-group > .fc-button:active,
.fc .fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}

.fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {
  margin-right: -1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc .fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}

.fc .fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}

.fc .fc-toolbar-title {
  font-size: 1.75em;
  margin: 0;
}

.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75em; /* space between */
}

.fc-direction-rtl .fc-toolbar > * > :not(:first-child) {
  margin-right: 0.75em; /* space between */
}

.fc-direction-rtl .fc-toolbar-ltr { /* when the toolbar-chunk positioning system is explicitly left-to-right */
  flex-direction: row-reverse;
}

.fc .fc-scroller {
  -webkit-overflow-scrolling: touch;
  position: relative; /* for abs-positioned elements within */
}

.fc .fc-scroller-liquid {
  height: 100%;
}

.fc .fc-scroller-liquid-absolute {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.fc .fc-scroller-harness {
  position: relative;
  overflow: hidden;
  direction: ltr;
  /* hack for chrome computing the scroller's right/left wrong for rtl. undone below... */
  /* TODO: demonstrate in codepen */
}

.fc .fc-scroller-harness-liquid {
  height: 100%;
}

.fc-direction-rtl .fc-scroller-harness > .fc-scroller { /* undo above hack */
  direction: rtl;
}

.fc-theme-standard .fc-scrollgrid {
  border: 1px solid #ddd;
  border: 1px solid var(--main-border); /* bootstrap does this. match */
}

.fc .fc-scrollgrid,
.fc .fc-scrollgrid table { /* all tables (self included) */
  width: 100%; /* because tables don't normally do this */
  table-layout: fixed;
}

.fc .fc-scrollgrid table { /* inner tables */
  border-top-style: hidden;
  border-left-style: hidden;
  border-right-style: hidden;
}

.fc .fc-scrollgrid {
  border-collapse: separate;
  border-right-width: 0;
  border-bottom-width: 0;
}

.fc .fc-scrollgrid-liquid {
  height: 100%;
}

.fc .fc-scrollgrid-section { /* a <tr> */
  height: 1px;
}

.fc .fc-scrollgrid-section > td {
  height: 1px; /* needs a height so inner div within grow. better than 0, for firefox */
}

.fc .fc-scrollgrid-section table {
  height: 1px;
  /* for most browsers, if a height isn't set on the table, can't do liquid-height within cells */
  /* serves as a min-height. harmless */
}

.fc .fc-scrollgrid-section-liquid {
  height: auto;
}

.fc .fc-scrollgrid-section-liquid > td {
  height: 100%; /* better than `auto`, for firefox */
}

.fc .fc-scrollgrid-section > * {
  border-top-width: 0;
  border-left-width: 0;
}

.fc .fc-scrollgrid-section-header > *,
.fc .fc-scrollgrid-section-footer > * {
  border-bottom-width: 0;
}

.fc .fc-scrollgrid-section-body table,
.fc .fc-scrollgrid-section-footer table {
  border-bottom-style: hidden; /* head keeps its bottom border tho */
}

.fc {
  /* stickiness */
}

.fc .fc-scrollgrid-section-sticky > * {
  position: -webkit-sticky;
  position: sticky;
  z-index: 2; /* TODO: var */
  /* TODO: box-shadow when sticking */
}

.fc .fc-scrollgrid-section-header.fc-scrollgrid-section-sticky > * {
  top: 0; /* because border-sharing causes a gap at the top */
  /* TODO: give safari -1. has bug */
}

.fc .fc-scrollgrid-section-footer.fc-scrollgrid-section-sticky > * {
  bottom: 0; /* known bug: bottom-stickiness doesn't work in safari */
}

.fc .fc-scrollgrid-sticky-shim { /* for horizontal scrollbar */
  height: 1px; /* needs height to create scrollbars */
  margin-bottom: -1px;
}

.fc-sticky { /* no .fc wrap because used as child of body */
  position: -webkit-sticky;
  position: sticky;
}

.fc .fc-view-harness {
  flex-grow: 1; /* because this harness is WITHIN the .fc's flexbox */
  position: relative;
}

.fc {
  /* when the harness controls the height, make the view liquid */
}

.fc .fc-view-harness-active > .fc-view {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fc .fc-col-header-cell-cushion {
  display: inline-block; /* x-browser for when sticky (when multi-tier header) */
  padding: 2px 4px;
}

.fc .fc-bg-event,
.fc .fc-non-business,
.fc .fc-highlight {
  /* will always have a harness with position:relative/absolute, so absolutely expand */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc .fc-bg-event {
  background-image: url("/images/icons/lock.svg");
}

.fc .fc-bg-event .fc-event-title {
  margin: 0.5em;
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.75em);
  font-style: italic;
  color: var(--main-text-dark);
}

.fc .fc-highlight {
  background: rgba(188, 232, 241, 0.3);
  background: var(--fc-highlight-color, rgba(188, 232, 241, 0.3));
  border-style: solid;
  border-color: #2F80ED;
}

.fc .fc-cell-shaded,
.fc .fc-day-disabled {
  background: rgba(208, 208, 208, 0.3);
  background: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
}

/* link resets */
/* ---------------------------------------------------------------------------------------------------- */
a.fc-event,
a.fc-event:hover {
  text-decoration: none;
}

/* cursor */
.fc-event[href],
.fc-event.fc-event-draggable {
  cursor: pointer;
}

/* event text content */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event .fc-event-main {
  position: relative;
  z-index: 2;
}

/* dragging */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event-dragging:not(.fc-event-selected) { /* MOUSE */
  opacity: 0.75;
}

.fc-event-dragging.fc-event-selected { /* TOUCH */
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* resizing */
/* ---------------------------------------------------------------------------------------------------- */
/* (subclasses should hone positioning for touch and non-touch) */
.fc-event .fc-event-resizer {
  display: none;
  position: absolute;
  z-index: 4;
}

.fc-event:hover,
.fc-event-selected { /* TOUCH */ }

.fc-event:hover .fc-event-resizer, .fc-event-selected .fc-event-resizer {
  display: block;
}

.fc-event-selected .fc-event-resizer {
  border-radius: 4px;
  border-radius: calc(var(--fc-event-resizer-dot-total-width, 8px) / 2);
  border-width: 1px;
  border-width: var(--fc-event-resizer-dot-border-width, 1px);
  width: 8px;
  width: var(--fc-event-resizer-dot-total-width, 8px);
  height: 8px;
  height: var(--fc-event-resizer-dot-total-width, 8px);
  border-style: solid;
  border-color: inherit;
  background: #fff;
  background: var(--fc-page-bg-color, #fff);
}

.fc-event-selected .fc-event-resizer:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
}

/* selecting (always TOUCH) */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event-selected {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-event-selected {
  /* dimmer effect */
}

.fc-event-selected:after {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  background: var(--fc-event-selected-overlay-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  z-index: 1;
  /* assume there's a border on all sides. overcome it. */
  /* sometimes there's NOT a border, in which case the dimmer will go over */
  /* an adjacent border, which looks fine. */
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}

/*
A HORIZONTAL event
*/
.fc-h-event { /* allowed to be top-level */
  display: block;
  border: 1px solid #3788d8;
  border: 1px solid var(--fc-event-border-color, #3788d8);
  background-color: #3788d8;
  background-color: var(--fc-event-bg-color, #3788d8);
}

.fc-h-event .fc-event-main {
  color: #fff;
  color: var(--fc-event-text-color, #fff);
}

.fc-h-event .fc-event-main-frame {
  display: flex; /* for make fc-event-title-container expand */
}

.fc-h-event .fc-event-time {
  max-width: 100%; /* clip overflow on this element */
  overflow: hidden;
}

.fc-h-event .fc-event-title-container { /* serves as a container for the sticky cushion */
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0; /* important for allowing to shrink all the way */
}

.fc-h-event .fc-event-title {
  display: inline-block; /* need this to be sticky cross-browser */
  vertical-align: top; /* for not messing up line-height */
  left: 0; /* for sticky */
  right: 0; /* for sticky */
  max-width: 100%; /* clip overflow on this element */
  overflow: hidden;
}

.fc-h-event.fc-event-selected:before {
  /* expand hit area */
  top: -10px;
  bottom: -10px;
}

/* adjust border and border-radius (if there is any) for non-start/end */
.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start),
.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-width: 0;
}

.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end),
.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
}

/* resizers */
.fc-h-event:not(.fc-event-selected) .fc-event-resizer {
  top: 0;
  bottom: 0;
  width: 8px;
  width: var(--fc-event-resizer-thickness, 8px);
}

.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start,
.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end {
  cursor: w-resize;
  left: -4px;
  left: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}

.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end,
.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start {
  cursor: e-resize;
  right: -4px;
  right: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}

/* resizers for TOUCH */
.fc-h-event.fc-event-selected .fc-event-resizer {
  top: 50%;
  margin-top: -4px;
  margin-top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}

.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start,
.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end {
  left: -4px;
  left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}

.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end,
.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start {
  right: -4px;
  right: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}

:root {
  --fc-daygrid-event-dot-width: 8px;
}

.fc .fc-popover {
  position: fixed;
  top: 0; /* for when not positioned yet */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc .fc-popover-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px;
}

.fc .fc-popover-title {
  margin: 0 2px;
}

.fc .fc-popover-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}

.fc-theme-standard .fc-popover {
  border: 1px solid #ddd;
  border: 1px solid var(--main-border);
  background: #fff;
  background: var(--fc-page-bg-color, #fff);
}

.fc-theme-standard .fc-popover-header {
  background: rgba(208, 208, 208, 0.3);
  background: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
}

/* help things clear margins of inner content */
.fc-daygrid-day-frame,
.fc-daygrid-day-events,
.fc-daygrid-event-harness { /* for event top/bottom margins */ }

.fc-daygrid-day-frame:before, .fc-daygrid-day-events:before, .fc-daygrid-event-harness:before {
  content: "";
  clear: both;
  display: table;
}

.fc-daygrid-day-frame:after, .fc-daygrid-day-events:after, .fc-daygrid-event-harness:after {
  content: "";
  clear: both;
  display: table;
}

.fc .fc-daygrid-body { /* a <div> that wraps the table */
  position: relative;
  z-index: 1; /* container inner z-index's because <tr>s can't do it */
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
  background: #2F80ED;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc .fc-daygrid-day-frame {
  position: relative;
  min-height: 100%; /* seems to work better than `height` because sets height after rows/cells naturally do it */
}

.fc-toolbar-chunk {
  display: flex;
  align-items: center;
}
.fc-toolbar-chunk .fc-toolbar-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--main-text-dark);
  line-height: 22px;
  min-width: 133px;
  text-align: center;
}
.fc-toolbar-chunk .fc-button-group button:last-child {
  display: none;
}
.fc-toolbar-chunk > button.fc-button-primary {
  border: 1px solid var(--main-border);
  color: var(--main-text-dark);
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  height: 50px;
  padding: 0 20px;
}

.fc-icon-chevron-left:before,
.fc-icon-chevron-right:before {
  color: var(--main-text-dark);
}

.fc-h-event .fc-event-title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  padding: 5px 10px;
}

.fc .fc-daygrid-event {
  border: none;
  border-left: 4px solid;
  min-height: 29px;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  overflow: hidden;
}

.fc .fc-daygrid-day-top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  padding-top: 15px;
}

.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 0.3;
}

.fc {
  /* day number (within cell top) */
}

.fc .fc-daygrid-day-number {
  position: relative;
  z-index: 4;
  padding: 4px;
}

.fc {
  /* event container */
}

.fc .fc-daygrid-day-events {
  margin-top: 1px; /* needs to be margin, not padding, so that available cell height can be computed */
}

.fc {
  /* positioning for balanced vs natural */
}

.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
  position: absolute;
  left: 0;
  right: 0;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  position: relative; /* for containing abs positioned event harnesses */
  min-height: 2em; /* in addition to being a min-height during natural height, equalizes the heights a little bit */
}

.fc .fc-daygrid-body-natural { /* can coexist with -unbalanced */ }

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 1em;
}

.fc {
  /* event harness */
}

.fc .fc-daygrid-event-harness {
  position: relative;
}

.fc .fc-daygrid-event-harness-abs {
  position: absolute;
  top: 0; /* fallback coords for when cannot yet be computed */
  left: 0; /* */
  right: 0; /* */
}

.fc .fc-daygrid-bg-harness {
  position: absolute;
  top: 0;
  bottom: 0;
}

.fc {
  /* bg content */
}

.fc .fc-daygrid-day-bg .fc-non-business {
  z-index: 1;
}

.fc .fc-daygrid-day-bg .fc-bg-event {
  z-index: 2;
}

.fc .fc-daygrid-day-bg .fc-highlight {
  z-index: 0;
}

.fc {
  /* events */
}

.fc .fc-daygrid-event {
  z-index: 6;
  margin-top: 1px;
}

.fc .fc-daygrid-event.fc-event-mirror {
  z-index: 7;
}

.fc {
  /* cell bottom (within day-events) */
}

.fc .fc-daygrid-day-bottom {
  font-size: 0.85em;
  margin: 2px 3px 0;
}

.fc .fc-daygrid-more-link {
  position: relative;
  z-index: 4;
  cursor: pointer;
}

.fc {
  /* week number (within frame) */
}

.fc .fc-daygrid-week-number {
  position: absolute;
  z-index: 5;
  top: 0;
  padding: 2px;
  min-width: 1.5em;
  text-align: center;
  background-color: rgba(208, 208, 208, 0.3);
  background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  color: #808080;
  color: var(--fc-neutral-text-color, #808080);
}

.fc-col-header .fc-col-header-cell-cushion {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
  padding: 15px 0;
}

.fc .fc-more-popover {
  z-index: 8;
}

.fc .fc-more-popover .fc-popover-body {
  min-width: 220px;
  padding: 10px;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-start,
.fc-direction-rtl .fc-daygrid-event.fc-event-end {
  margin-left: 2px;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
  margin-right: 2px;
}

.fc-direction-ltr .fc-daygrid-week-number {
  left: 0;
  border-radius: 0 0 3px 0;
}

.fc-direction-rtl .fc-daygrid-week-number {
  right: 0;
  border-radius: 0 0 0 3px;
}

.fc-liquid-hack .fc-daygrid-day-frame {
  position: static; /* will cause inner absolute stuff to expand to <td> */
}

.fc-daygrid-event { /* make root-level, because will be dragged-and-dropped outside of a component root */
  position: relative; /* for z-indexes assigned later */
  white-space: nowrap;
  border-radius: 3px; /* dot event needs this to when selected */
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
}

/* --- the rectangle ("block") style of event --- */
.fc-daygrid-block-event .fc-event-time {
  font-weight: bold;
}

.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
  padding: 1px;
}

/* --- the dot style of event --- */
.fc-daygrid-dot-event {
  display: flex;
  align-items: center;
  padding: 2px 0;
}

.fc-daygrid-dot-event .fc-event-title {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0; /* important for allowing to shrink all the way */
  overflow: hidden;
  font-weight: bold;
}

.fc-daygrid-dot-event:hover,
.fc-daygrid-dot-event.fc-event-mirror {
  background: rgba(0, 0, 0, 0.1);
}

.fc-daygrid-dot-event.fc-event-selected:before {
  /* expand hit area */
  top: -10px;
  bottom: -10px;
}

.fc-daygrid-event-dot { /* the actual dot */
  margin: 0 4px;
  box-sizing: content-box;
  width: 0;
  height: 0;
  border: 4px solid #3788d8;
  border: calc(var(--fc-daygrid-event-dot-width, 8px) / 2) solid var(--fc-event-border-color, #3788d8);
  border-radius: 4px;
  border-radius: calc(var(--fc-daygrid-event-dot-width, 8px) / 2);
}

/* --- spacing between time and title --- */
.fc-direction-ltr .fc-daygrid-event .fc-event-time {
  margin-right: 3px;
}

.fc-direction-rtl .fc-daygrid-event .fc-event-time {
  margin-left: 3px;
}

/*
A VERTICAL event
*/
.fc-v-event { /* allowed to be top-level */
  display: block;
  border: 1px solid #3788d8;
  border: 1px solid var(--fc-event-border-color, #3788d8);
  background-color: #3788d8;
  background-color: var(--fc-event-bg-color, #3788d8);
}

.fc-v-event .fc-event-main {
  color: #fff;
  color: var(--fc-event-text-color, #fff);
  height: 100%;
}

.fc-v-event .fc-event-main-frame {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fc-v-event .fc-event-time {
  flex-grow: 0;
  flex-shrink: 0;
  max-height: 100%;
  overflow: hidden;
}

.fc-v-event .fc-event-title-container { /* a container for the sticky cushion */
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0; /* important for allowing to shrink all the way */
}

.fc-v-event .fc-event-title { /* will have fc-sticky on it */
  top: 0;
  bottom: 0;
  max-height: 100%; /* clip overflow */
  overflow: hidden;
}

.fc-v-event:not(.fc-event-start) {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event:not(.fc-event-end) {
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-v-event.fc-event-selected:before {
  /* expand hit area */
  left: -10px;
  right: -10px;
}

.fc-v-event {
  /* resizer (mouse AND touch) */
}

.fc-v-event .fc-event-resizer-start {
  cursor: n-resize;
}

.fc-v-event .fc-event-resizer-end {
  cursor: s-resize;
}

.fc-v-event {
  /* resizer for MOUSE */
}

.fc-v-event:not(.fc-event-selected) .fc-event-resizer {
  height: 8px;
  height: var(--fc-event-resizer-thickness, 8px);
  left: 0;
  right: 0;
}

.fc-v-event:not(.fc-event-selected) .fc-event-resizer-start {
  top: -4px;
  top: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}

.fc-v-event:not(.fc-event-selected) .fc-event-resizer-end {
  bottom: -4px;
  bottom: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}

.fc-v-event {
  /* resizer for TOUCH (when event is "selected") */
}

.fc-v-event.fc-event-selected .fc-event-resizer {
  left: 50%;
  margin-left: -4px;
  margin-left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}

.fc-v-event.fc-event-selected .fc-event-resizer-start {
  top: -4px;
  top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}

.fc-v-event.fc-event-selected .fc-event-resizer-end {
  bottom: -4px;
  bottom: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}

.fc .fc-timegrid .fc-daygrid-body { /* the all-day daygrid within the timegrid view */
  z-index: 2; /* put above the timegrid-body so that more-popover is above everything. TODO: better solution */
}

.fc .fc-timegrid-divider {
  padding: 0 0 2px; /* browsers get confused when you set height. use padding instead */
}

.fc .fc-timegrid-body {
  position: relative;
  z-index: 1; /* scope the z-indexes of slots and cols */
  min-height: 100%; /* fill height always, even when slat table doesn't grow */
}

.fc .fc-timegrid-axis-chunk { /* for advanced ScrollGrid */
  position: relative;
}

.fc .fc-timegrid-axis-chunk > table {
  position: relative;
  z-index: 1; /* above the now-indicator-container */
}

.fc .fc-timegrid-slots {
  position: relative;
  z-index: 1;
}

.fc .fc-timegrid-slot { /* a <td> */
  height: 1.5em;
  border-bottom: 0;
}

.fc .fc-timegrid-slot:empty:before {
  content: " "; /* make sure there's at least an empty space to create height for height syncing */
}

.fc .fc-timegrid-slot-minor {
  border-top-style: dotted;
}

.fc .fc-timegrid-slot-label-cushion {
  display: inline-block;
  white-space: nowrap;
}

.fc .fc-timegrid-slot-label {
  vertical-align: middle; /* vertical align the slots */
}

.fc {
  /* slots AND axis cells (top-left corner of view including the "all-day" text) */
}

.fc .fc-timegrid-axis-cushion,
.fc .fc-timegrid-slot-label-cushion {
  padding: 0 4px;
}

.fc {
  /* axis cells (top-left corner of view including the "all-day" text) */
  /* vertical align is more complicated, uses flexbox */
}

.fc .fc-timegrid-axis-frame-liquid {
  height: 100%; /* will need liquid-hack in FF */
}

.fc .fc-timegrid-axis-frame {
  overflow: hidden;
  display: flex;
  align-items: center; /* vertical align */
  justify-content: flex-end; /* horizontal align. matches text-align below */
}

.fc .fc-timegrid-axis-cushion {
  max-width: 60px; /* limits the width of the "all-day" text */
  flex-shrink: 0; /* allows text to expand how it normally would, regardless of constrained width */
}

.fc-direction-ltr .fc-timegrid-slot-label-frame {
  text-align: right;
}

.fc-direction-rtl .fc-timegrid-slot-label-frame {
  text-align: left;
}

.fc-liquid-hack .fc-timegrid-axis-frame-liquid {
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fc .fc-timegrid-col.fc-day-today {
  background-color: rgba(255, 220, 40, 0.15);
  background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
}

.fc .fc-timegrid-col-frame {
  min-height: 100%; /* liquid-hack is below */
  position: relative;
}

.fc-liquid-hack .fc-timegrid-col-frame {
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fc-media-screen .fc-timegrid-cols {
  position: absolute; /* no z-index. children will decide and go above slots */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-media-screen .fc-timegrid-cols > table {
  height: 100%;
}

.fc-media-screen .fc-timegrid-col-bg,
.fc-media-screen .fc-timegrid-col-events,
.fc-media-screen .fc-timegrid-now-indicator-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-media-screen .fc-timegrid-event-harness {
  position: absolute; /* top/left/right/bottom will all be set by JS */
}

.fc {
  /* bg */
}

.fc .fc-timegrid-col-bg {
  z-index: 2; /* TODO: kill */
}

.fc .fc-timegrid-col-bg .fc-non-business {
  z-index: 1;
}

.fc .fc-timegrid-col-bg .fc-bg-event {
  z-index: 2;
}

.fc .fc-timegrid-col-bg .fc-highlight {
  z-index: 0;
}

.fc .fc-timegrid-bg-harness {
  position: absolute; /* top/bottom will be set by JS */
  left: 0;
  right: 0;
}

.fc {
  /* fg events */
  /* (the mirror segs are put into a separate container with same classname, */
  /* and they must be after the normal seg container to appear at a higher z-index) */
}

.fc .fc-timegrid-col-events {
  z-index: 3;
  /* child event segs have z-indexes that are scoped within this div */
}

.fc {
  /* now indicator */
}

.fc .fc-timegrid-now-indicator-container {
  bottom: 0;
  overflow: hidden; /* don't let overflow of lines/arrows cause unnecessary scrolling */
  /* z-index is set on the individual elements */
}

.fc-direction-ltr .fc-timegrid-col-events {
  margin: 0 2.5% 0 2px;
}

.fc-direction-rtl .fc-timegrid-col-events {
  margin: 0 2px 0 2.5%;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event,
.fc-timegrid-event.fc-event-mirror {
  box-shadow: 0px 0px 0px 1px #fff;
  box-shadow: 0px 0px 0px 1px var(--fc-page-bg-color, #fff);
}

.fc-timegrid-event { /* events need to be root */
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
  border-radius: 3px;
}

.fc-timegrid-event .fc-event-main {
  padding: 1px 1px 0;
}

.fc-timegrid-event .fc-event-time {
  white-space: nowrap;
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
  margin-bottom: 1px;
}

.fc-timegrid-event-condensed .fc-event-main-frame {
  flex-direction: row;
  overflow: hidden;
}

.fc-timegrid-event-condensed .fc-event-time:after {
  content: " - "; /* dash surrounded by non-breaking spaces */
}

.fc-timegrid-event-condensed .fc-event-title {
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
}

.fc-media-screen .fc-timegrid-event {
  position: absolute; /* absolute WITHIN the harness */
  top: 0;
  bottom: 1px; /* stay away from bottom slot line */
  left: 0;
  right: 0;
}

.fc {
  /* line */
}

.fc .fc-timegrid-now-indicator-line {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  border-style: solid;
  border-color: red;
  border-color: var(--fc-now-indicator-color, red);
  border-width: 1px 0 0;
}

.fc {
  /* arrow */
}

.fc .fc-timegrid-now-indicator-arrow {
  position: absolute;
  z-index: 4;
  margin-top: -5px; /* vertically center on top coordinate */
  border-style: solid;
  border-color: red;
  border-color: var(--fc-now-indicator-color, red);
}

.fc-direction-ltr .fc-timegrid-now-indicator-arrow {
  left: 0;
  /* triangle pointing right. TODO: mixin */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-direction-rtl .fc-timegrid-now-indicator-arrow {
  right: 0;
  /* triangle pointing left. TODO: mixin */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

:root {
  --fc-list-event-dot-width: 10px;
  --fc-list-event-hover-bg-color: #f5f5f5;
}

.fc-theme-standard .fc-list {
  border: 1px solid #ddd;
  border: 1px solid var(--main-border);
}

.fc {
  /* message when no events */
}

.fc .fc-list-empty {
  background-color: rgba(208, 208, 208, 0.3);
  background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* vertically aligns fc-list-empty-inner */
}

.fc .fc-list-empty-cushion {
  margin: 5em 0;
}

.fc {
  /* table within the scroller */
  /* ---------------------------------------------------------------------------------------------------- */
}

.fc .fc-list-table {
  width: 100%;
  border-style: hidden; /* kill outer border on theme */
}

.fc .fc-list-table tr > * {
  border-left: 0;
  border-right: 0;
}

.fc .fc-list-sticky .fc-list-day > * { /* the cells */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  background: var(--fc-page-bg-color, #fff); /* for when headers are styled to be transparent and sticky */
}

.fc .fc-list-table th {
  padding: 0; /* uses an inner-wrapper instead... */
}

.fc .fc-list-table td,
.fc .fc-list-day-cushion {
  padding: 8px 14px;
}

.fc {
  /* date heading rows */
  /* ---------------------------------------------------------------------------------------------------- */
}

.fc .fc-list-day-cushion:after {
  content: "";
  clear: both;
  display: table; /* clear floating */
}

.fc-theme-standard .fc-list-day-cushion {
  background-color: rgba(208, 208, 208, 0.3);
  background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
}

.fc-direction-ltr .fc-list-day-text,
.fc-direction-rtl .fc-list-day-side-text {
  float: left;
}

.fc-direction-ltr .fc-list-day-side-text,
.fc-direction-rtl .fc-list-day-text {
  float: right;
}

/* make the dot closer to the event title */
.fc-direction-ltr .fc-list-table .fc-list-event-graphic {
  padding-right: 0;
}

.fc-direction-rtl .fc-list-table .fc-list-event-graphic {
  padding-left: 0;
}

.fc .fc-list-event.fc-event-forced-url {
  cursor: pointer; /* whole row will seem clickable */
}

.fc .fc-list-event:hover td {
  background-color: #f5f5f5;
  background-color: var(--fc-list-event-hover-bg-color, #f5f5f5);
}

.fc {
  /* shrink certain cols */
}

.fc .fc-list-event-graphic,
.fc .fc-list-event-time {
  white-space: nowrap;
  width: 1px;
}

.fc .fc-list-event-dot {
  display: inline-block;
  box-sizing: content-box;
  width: 0;
  height: 0;
  border: 5px solid #3788d8;
  border: calc(var(--fc-list-event-dot-width, 10px) / 2) solid var(--fc-event-border-color, #3788d8);
  border-radius: 5px;
  border-radius: calc(var(--fc-list-event-dot-width, 10px) / 2);
}

.fc {
  /* reset <a> styling */
}

.fc .fc-list-event-title a {
  color: inherit;
  text-decoration: none;
}

.fc {
  /* underline link when hovering over any part of row */
}

.fc .fc-list-event.fc-event-forced-url:hover a {
  text-decoration: underline;
}

.fc-theme-bootstrap a:not([href]) {
  color: inherit; /* natural color for navlinks */
}

.vacation-calendar {
  display: flex;
  /*height: 100%;*/
  /*height: calc(100% - 200px);*/
}

.newplan-calendar {
  display: flex;
  /*height: 100%;*/
  /*height: calc(100% - 200px);*/
}

.new-vacation .form-daterange svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.new-vacation .modal-body {
  max-width: 375px;
}
.new-vacation .modal-body form > span {
  margin-top: 25px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin-bottom: 16px;
  display: flex;
}
.new-vacation .modal-body .form-group {
  width: 100%;
}
.new-vacation .modal-body .form-group.styled label {
  z-index: 6;
}
.new-vacation__checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.new-vacation__checkbox > div {
  position: relative;
  width: calc((100% - 10px) / 2);
}
.new-vacation__checkbox > div input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.new-vacation__checkbox > div input:checked + label {
  border-color: #2F80ED;
  color: #2F80ED;
}
.new-vacation__checkbox > div label {
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}

.fc .fc-button-primary:not(:disabled):active:focus, .fc .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: none;
}

.fc .fc-button-primary:not(:disabled):active, .fc .fc-button-primary:not(:disabled).fc-button-active {
  border: var(--main-border);
  background: #6fadff;
}

.vacation-calendar img {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 10px;
  object-fit: cover;
}

.newplan-calendar img {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 10px;
  object-fit: cover;
}

.settings-vacation .settings-block .settings-open:nth-child(2):hover span {
  color: #2F80ED;
}
.settings-vacation .settings-block .settings-open:nth-child(2):hover svg path {
  stroke: transparent;
  fill: #2F80ED;
}

.fc-event-title {
  white-space: break-spaces;
  word-wrap: break-word;
}

/* Special CSS for whole week now indicator */
.fc-media-screen .fc-timegrid-now-indicator-container {
  position: unset;
}

.fc .fc-timegrid-now-indicator-line {
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: red;
  background-color: red;
}

.fc-resourceTimeGridDay-view .fc-timegrid-now-indicator-arrow {
  position: absolute;
  border: none;
  left: unset;
  right: -6px;
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
}

.fc-timeGridWeek-view .fc-timegrid-now-indicator-arrow {
  display: none;
}

.fc-timeGridWeek-view .fc-timegrid-now-indicator-line::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
}

.fc-timegrid-now-indicator-container {
  overflow: visible !important;
}
.fc-timegrid-now-indicator-container .fc-timegrid-now-indicator-line {
  width: calc(500% + 4px) !important;
}

.fc-day-tue .fc-timegrid-now-indicator-line {
  transform: translateX(-20%);
}

.fc-day-wed .fc-timegrid-now-indicator-line {
  transform: translateX(-40%);
}

.fc-day-thu .fc-timegrid-now-indicator-line {
  transform: translateX(-60%);
}

.fc-day-fri .fc-timegrid-now-indicator-line {
  transform: translateX(-80%);
}

/* Special CSS for whole week now indicator - end */
.calculation-grid {
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 8px 0px;
  display: grid;
  grid-auto-rows: min-content;
  position: relative;
  border-bottom: 1px solid var(--main-border);
  grid-template-columns: 25% repeat(3, 1fr);
  /*
    display: grid;
    grid-auto-rows: min-content;
    position: relative;
    border-bottom: 1px solid var(--main-border);
    grid-template-columns: 25% repeat(3, 1fr);*/
}

.calculation-grid-element {
  font-style: normal;
  font-size: 14px;
  line-height: 140%;
  pointer-events: none;
  border: 1px solid transparent;
  font-weight: 400;
  color: var(--main-text-dar);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 0;
  position: relative;
  cursor: pointer;
}

.calculation-grid-description-row {
  justify-content: center;
  width: 100%;
  padding: 5px;
  text-align: center;
  font-size: 19px;
}

.line-break {
  width: 100%;
}

.calculation-grid-element-notice {
  color: #F40600;
}

.calculation-grid-element-bold {
  font-weight: 600;
}

.calculation-grid-selected {
  border: 3px solid #2F80ED;
}

.calculation-grid-description-row6px {
  margin-bottom: 6px;
}

.dayHourShiftDetails {
  font-size: 12px;
}

.blue-border {
  border-color: #2F80ED;
  border-style: solid;
  border-width: 1px;
}

.calendar-holiday {
  background-color: #ebc8d3;
  background-image: url("/images/icons/lock.svg");
}
.calendar-note-textarea {
  resize: none;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid lightgrey;
  width: 100%;
}
.calendar-note-textarea:focus {
  border: 2px solid #2F80ED;
  outline: none;
}

/*html {
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}*/
.loader_in_div {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
}

.daterangepicker {
  z-index: 99999 !important;
  background: transparent !important;
  border: none !important;
}
.daterangepicker .drp-calendar {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin: 0 5px !important;
  padding: 0 !important;
  max-width: 340px !important;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  font-weight: 600;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #828282;
  font-family: "MuseoSansCyrl";
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  display: inline-block;
  margin: 0 4px;
  padding: 5px 7px;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  border-color: #828282 !important;
  border-width: 0 1.5px 1.5px 0 !important;
}

.daterangepicker td.in-range {
  background: #F4F3F4 !important;
  color: #828282 !important;
}

.daterangepicker td.active {
  background: #2F80ED !important;
  color: #F4F3F4 !important;
  border-radius: 50% !important;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  border: 1px solid #2F80ED !important;
  background: transparent !important;
  border-radius: 30px !important;
  color: #2F80ED !important;
}

.daterangepicker .drp-buttons {
  border-top: none !important;
}
.daterangepicker .drp-buttons .btn {
  background: #F4F3F4;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.daterangepicker .drp-buttons .drp-selected {
  display: none;
}

.daterangepicker .calendar-table {
  border: none;
  border-radius: 10px;
  background-color: transparent;
}

.modal-roster-change .form-checkbox, .modal-roster-change .form-radio {
  margin-right: 0;
}
.modal-roster-change .form-checkbox label:after, .modal-roster-change .form-checkbox label:before, .modal-roster-change .form-radio label:after, .modal-roster-change .form-radio label:before {
  content: unset;
}
.modal-roster-change .form-radio label {
  padding-left: 0;
}

.ui-widget.ui-widget-content .ui-widget-header {
  min-height: 30px;
}

.select-pure__select {
  align-items: center;
  background: var(--main-bg-light-second);
  border-radius: 4px;
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  color: var(--main-text-dark);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: left;
  min-height: 50px;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
  width: 100%;
}

.select-pure__options {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  display: none;
  left: 0;
  max-height: 221px;
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 5;
}

.select-pure__select--opened .select-pure__options {
  display: block;
}

.select-pure__option {
  border-bottom: 1px solid var(--main-border);
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: var(--main-text-dark);
  padding: 10px 18px;
}
.select-pure__option img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.select-pure__selected-label img:first-child {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 0px;
}

.select-pure__option--disabled {
  color: #e4e4e4;
}

.select-pure__option--selected {
  background: var(--main-bg-light-second);
  cursor: initial;
  pointer-events: none;
}

.select-pure__option--hidden {
  display: none;
}

.select-pure__selected-label {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  padding: 0 6px;
  display: flex;
  align-items: center;
}

.select-pure__label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.select-pure__selected-label:last-of-type {
  margin-right: 0;
}

.select-pure__selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}

.select-pure__selected-label img[data-value] {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  margin-left: 7px;
  width: 14px;
}

.select-pure__selected-label i:hover {
  color: #e4e4e4;
}

.select-pure__autocomplete {
  background: #f9f9f8;
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 100%;
}

.select-pure__placeholder--hidden {
  display: none;
}

/* Class for marked area at helper */
.additionalLayerHelperClass {
  box-shadow: rgba(47, 128, 237, 0.8) 0 0 1px 2px, rgba(33, 33, 33, 0.7) 0 0 0 5000px !important;
}

/* Class for helpter tooltip (prompt) */
.additionalTooltipHelperClass {
  margin: 15px;
}

.apphelp-bullets {
  background-color: #2F80ED !important;
}

.introjs-bullets ul li a.active {
  background-color: #2F80ED !important;
}

.introjs-bullets ul li a {
  width: 8px !important;
  height: 8px;
}
.introjs-tooltip {
  background-color: #FDFCFD;
  border-radius: 16px;
  max-width: 500px;
}
.introjs-button {
  background-color: #fdfcfd;
  border-radius: 0.5em;
  border-color: #B1B1B7;
}
.introjs-img {
  margin-left: -20px;
  margin-right: -20px;
  width: 300px;
  margin-bottom: 15px;
}
.introjs-showElement {
  z-index: 0 !important;
}

.settings-page {
  padding: 55px 65px 0 55px;
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
}
.settings-page::-webkit-scrollbar {
  display: none;
}
.settings-page__left {
  background: var(--main-bg-light);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  width: 20.5%;
}
.settings-page__left p {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  cursor: pointer;
}
.settings-page__left p:not(:last-child) {
  border-bottom: 1px solid var(--main-border);
}
.settings-page__left p.active {
  color: #2F80ED;
}
.settings-page__right {
  background: var(--main-bg-light-second);
  min-width: 760px;
  min-height: 250px;
  flex: 1;
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  margin-left: 10px;
  padding: 40px 0 20px;
  display: none;
  overflow-x: auto;
}
.settings-page__right::-webkit-scrollbar {
  display: none;
}
.settings-page__right.settings-page-item1 {
  display: block;
}
.settings-page__right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.settings-page__right-create {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  display: flex;
  cursor: pointer;
  align-items: center;
}
.settings-page__right-create svg {
  background-color: #2F80ED;
  border-radius: 5px;
  padding: 2px;
  margin-left: 10px;
}
.settings-page__right-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
}
.settings-page__right-title > span {
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
}
.settings-page__right-title > span:hover span {
  display: block;
}
.settings-page__right-title > span span {
  position: absolute;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-bg-light-second);
  background: var(--main-text-dark);
  padding: 3px 6px;
  width: max-content;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
  display: none;
}
.settings-page__right-title > span span:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--main-text-dark);
}
.settings-page-block {
  margin-top: 25px;
}
.settings-page-block .settings-page-item1__top {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 15px;
}
.settings-page-block .settings-page-item1__top p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.settings-page-block .settings-page-item1__top p:nth-child(1) {
  width: 2.85vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(2) {
  width: 2.3vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(3) {
  width: 2.85vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(4) {
  width: 3.95vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(5) {
  width: 2.6vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(6) {
  width: 2.95vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(7) {
  width: 3.25vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(8) {
  width: 12vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__top p:nth-child(9) {
  width: 3.1vw;
  min-width: 75px;
  display: flex;
  justify-content: flex-end;
}
.settings-page-block .settings-page-item1__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid var(--main-border);
}
.settings-page-block .settings-page-item1__item p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.settings-page-block .settings-page-item1__item p:nth-child(1) {
  width: 2.85vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(2) {
  width: 2.3vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(3) {
  width: 2.85vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(4) {
  width: 3.95vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(5) {
  width: 2.6vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(6) {
  width: 2.95vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(7) {
  width: 3.25vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item1__item p:nth-child(9) {
  width: 3.1vw;
  min-width: 75px;
  display: flex;
  justify-content: flex-end;
}
.settings-page-block .settings-page-item1__item p:nth-child(9) svg {
  cursor: pointer;
}
.settings-page-block .settings-page-item1__item p:nth-child(9) svg:last-child {
  margin-left: 7px;
}
.settings-page-block .settings-page-item1__item div:nth-child(8) {
  width: 12vw;
  min-width: 75px;
}
.settings-page-block .settings-page-item8__top {
  display: flex;
  justify-content: flex-start;
  padding: 0 40px;
  margin-bottom: 15px;
}
.settings-page-block .settings-page-item8__top p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
}
.settings-page-block .settings-page-item8__top p:not(:last-child) {
  margin-right: 60px;
}
.settings-page-block .settings-page-item8__top p:nth-child(1) {
  width: 7.5vw;
}
.settings-page-block .settings-page-item8__top p:nth-child(2) {
  width: 2.3vw;
}
.settings-page-block .settings-page-item8__top p:nth-child(4) {
  width: 12vw;
}
.settings-page-block .settings-page-item8__top p:last-child {
  margin-left: auto;
  width: 3.1vw;
  display: flex;
  justify-content: flex-end;
}
.settings-page-block .settings-page-item8__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 40px;
  border-top: 1px solid var(--main-border);
}
.settings-page-block .settings-page-item8__item p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.settings-page-block .settings-page-item8__item p:not(:last-child) {
  margin-right: 60px;
}
.settings-page-block .settings-page-item8__item p:nth-child(1) {
  width: 7.5vw;
}
.settings-page-block .settings-page-item8__item p:nth-child(2) {
  width: 2.3vw;
}
.settings-page-block .settings-page-item8__item p:last-child {
  width: 3.1vw;
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
}
.settings-page-block .settings-page-item8__item p:last-child svg {
  cursor: pointer;
}
.settings-page-block .settings-page-item8__item p:last-child svg:last-child {
  margin-left: 7px;
}
.settings-page-block .settings-page-item8__item div:nth-child(3) {
  width: 12vw;
}

.date_select-lbl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.switch-lbl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.switch input {
  height: 20px;
  width: 36px;
  position: absolute;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.switch input:checked + label {
  border-color: #2F80ED;
}
.switch input:checked + label:after {
  background: #2F80ED;
  left: auto;
  transform: translateY(-50%) translateX(20px);
}
.switch label {
  border: 1px solid #828282;
  border-radius: 100px;
  height: 20px;
  width: 36px;
  display: flex;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.switch label:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #828282;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(5px);
  transition: 0.5s;
}

.usertablediv {
  width: 100%; /* because tables don't normally do this */
}
.usertablediv table {
  width: 100%; /* because tables don't normally do this */
  table-layout: fixed;
}
.usertablediv table td:nth-child(1) {
  text-align: left;
}
.usertablediv table td:nth-child(2) {
  text-align: right;
}
.usertablediv table td:nth-child(3) {
  text-align: right;
}
.usertablediv table td:nth-child(4) {
  text-align: right;
}
.usertablediv table td {
  /*border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: #ddd;*/
}

.profile-blue-btn span {
  font-family: "MuseoSansCyrl", serif;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-bg-light);
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 50px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.5s ease-out;
  position: relative;
}
.profile-blue-btn svg {
  margin-right: 7px;
}

.employee {
  padding: 50px 60px 0px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.employee-saldos {
  max-width: 370px;
  min-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  left: 1475px;
  top: 227px;
  border: 1px solid #E1E1E1;
  box-sizing: border-box;
  border-radius: 20px;
  margin-right: 50px;
  background-color: transparent;
  color: var(--main-text-dark);
}
.employee-item {
  cursor: pointer;
  width: 244px;
  margin: 0 5px 10px;
  padding: 30px 30px 15px;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 260px;
}
.employee-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.employee-item-loading {
  width: fit-content !important;
  height: 26px !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  margin-top: 40px;
}
.employee-item:hover {
  border-color: #2F80ED;
}
.employee-item__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 5px;
  color: var(--main-text-dark);
}
.employee-item__title-hidden {
  overflow: hidden;
  min-height: 17px;
  max-width: 200px;
  text-overflow: ellipsis;
}
.employee-item__subtitle {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  margin-bottom: 5px;
}
.employee-item__error {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px !important;
  height: 24px !important;
}
.employee-item > div {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.employee-item > div.employee-item-desc {
  margin-top: 15px;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.employee-item > div.employee-item-desc p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-dark);
  margin-bottom: 9px;
  width: 50%;
}
.employee-item > div.employee-item-desc p span {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-dark);
  padding-bottom: 0;
}
.employee-item > div.employee-item-desc p svg {
  margin-right: 5px;
}
.employee-item > div span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  padding-bottom: 6px;
}
.employee-item__progress {
  background: var(--main-border);
  height: 4px;
  border-radius: 100px;
  margin-top: 6px;
  position: relative;
  width: 100%;
}
.employee-item__progress .progress {
  position: absolute;
  height: 100%;
  border-radius: 100px;
}
.employee_account-more_information img {
  border-radius: 100%;
  width: 36px;
  height: 36px;
  margin-right: 5%;
}
.employee_account_administration-item__actions {
  height: 50px;
  justify-content: center !important;
}
.employee_account_administration-item__actions-dropdown {
  top: 35px !important;
}

.employee-dashboard-block {
  border: 0;
  border-bottom: 1px solid var(--main-border);
  border-radius: 0;
}
.employee-dashboard-block__content div {
  border-bottom: 0 !important;
}
.employee-dashboard-block__content label {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 0;
}

.staff-more_information h2 {
  margin-bottom: 20px !important;
}
.staff-more_information p {
  margin-bottom: 5px;
}

.overview.overview-monthly-closing .overview-calender {
  grid-template-columns: 17.4vw repeat(9, 1fr) 60px;
}
.overview.overview-monthly-closing .overview-calender p svg path {
  stroke: #828282;
}
.overview.overview-monthly-closing .overview-calender p span {
  color: #828282;
}
.overview.overview-monthly-closing .overview-calender-prev {
  left: calc(17.4vw - 20px);
}
.overview.overview-monthly-closing .overview-item {
  min-height: 70px;
  grid-auto-rows: initial;
  grid-template-columns: 17.4vw repeat(9, 1fr) 60px;
}
.overview.overview-monthly-closing .overview-item .overview-item__block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.overview.overview-monthly-closing .overview-item .overview-item__block:first-child {
  justify-content: flex-start;
}
.overview.overview-monthly-closing .overview-item .overview-item__block:first-child span {
  margin: 0;
  padding: 0;
}
.overview.overview-monthly-closing .overview-item .overview-item__block:not(:first-child) {
  position: relative;
}
.overview.overview-monthly-closing .overview-item .overview-item__block:not(:first-child):hover span:last-child:not(.circle) {
  opacity: 1;
}
.overview.overview-monthly-closing .overview-item .overview-item__block:not(:first-child) span:last-child:not(.circle) {
  background: var(--main-text-dark);
  padding: 6px;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  position: absolute;
  text-align: center;
  color: var(--main-bg-light-second);
  position: absolute;
  width: 330px;
  border-radius: 5px;
  bottom: 53px;
  z-index: 3;
  opacity: 0;
  transition: 0.5s;
}
.overview.overview-monthly-closing .overview-item .overview-item__block:not(:first-child) span:last-child:not(.circle):after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--main-text-dark);
}
.overview.overview-monthly-closing .overview-item .circle {
  width: 10px;
  min-width: initial;
  height: 10px;
  border-radius: 50%;
  padding: 0;
}
.overview.overview-monthly-closing .overview-item .circle-yellow {
  background: #FAA237;
}
.overview.overview-monthly-closing .overview-item .circle-green {
  background: #00A358;
}
.overview.overview-monthly-closing .overview-item .circle-grey {
  background: #B1B1B7;
}

.administration.history .administration__top p:nth-child(6) {
  width: 28vw;
}
.administration.history .administration-item p:nth-child(6) {
  width: 28vw;
}
.administration.history .administration-item p:nth-child(6):hover span:last-child {
  display: block;
}
.administration.history .administration-item p:nth-child(6) span {
  padding-left: 0;
}
.administration.history .administration-item p:nth-child(6) span:last-child {
  background: var(--main-text-dark) !important;
  border: none !important;
  overflow: visible !important;
  color: var(--main-bg-light-second);
  max-width: 475px;
  min-width: initial;
  top: auto;
  bottom: 40px;
  transform: none;
  left: 0;
  padding: 13px 6px 19px;
}
.administration.history .administration-item p:nth-child(6) span:last-child:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--main-text-dark);
}

.news {
  padding: 0px 65px 0 55px;
}
.news-top {
  display: flex;
  align-items: center;
}
.news-top a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  padding-top: 5px;
  border-bottom: 2px solid transparent;
}
.news-top li {
  margin-right: 20px;
}
.news-top li.active a {
  border-bottom-color: #2F80ED;
  color: #2F80ED;
}
.news-messenger {
  display: flex;
  height: 695px;
  margin-top: 15px;
}
.news-messenger .messenger-chats {
  height: 100%;
  overflow: auto;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  border-radius: 20px;
  width: 18vw;
}
.news-messenger .messenger-chats__item {
  display: flex;
  padding: 20px 15px 20px 10px;
}
.news-messenger .messenger-chats__item.active {
  background-color: #2F80ED;
}
.news-messenger .messenger-chats__item.active .messenger-chats__item-user-name,
.news-messenger .messenger-chats__item.active .messenger-chats__item-time,
.news-messenger .messenger-chats__item.active .messenger-chats__item-message {
  color: #FDFCFD;
}
.news-messenger .messenger-chats__item.active .messenger-chats__item-count {
  background-color: #FDFCFD;
  color: #2F80ED;
}
.news-messenger .messenger-chats__item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-messenger .messenger-chats__item:not(:first-child) {
  border-top: 1px solid var(--main-border);
}
.news-messenger .messenger-chats__item-user-img {
  margin-right: 10px;
  position: relative;
}
.news-messenger .messenger-chats__item-user-img__online:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--main-bg-light-second);
  background: #1ABA71;
  position: absolute;
  right: -5px;
  top: -2px;
}
.news-messenger .messenger-chats__item-user-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.news-messenger .messenger-chats__item-user-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.news-messenger .messenger-chats__item-time {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-grey);
}
.news-messenger .messenger-chats__item-message {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-grey);
  width: 83%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-messenger .messenger-chats__item-count {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #FDFCFD;
  background-color: #2F80ED;
  border-radius: 50%;
  padding: 1px 5px;
}
.news-messenger .messenger-chats__item-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-messenger .messenger-chats__item-info > div:first-child {
  margin-bottom: 7px;
}
.news-messenger .chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 50px;
}
.news-messenger .chat__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  border-radius: 20px;
  padding: 20px 30px;
  position: relative;
}
.news-messenger .chat__top > div:last-child {
  cursor: pointer;
  background: var(--main-bg-light-second);
  box-shadow: 0px 0px 11px rgba(58, 67, 76, 0.05), 0px 11px 11px rgba(58, 67, 76, 0.05);
  border-radius: 5px;
  position: relative;
}
.news-messenger .chat__top .chat-settings {
  position: absolute;
  right: 0;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  display: none;
  top: 40px;
}
.news-messenger .chat__top .chat-settings p {
  display: flex;
  align-items: center;
  padding: 20px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  white-space: nowrap;
  cursor: pointer;
}
.news-messenger .chat__top .chat-settings p:hover {
  background: #F4F3F4;
}
.news-messenger .chat__top .chat-settings p:first-child {
  border-radius: 10px 10px 0px 0px;
}
.news-messenger .chat__top .chat-settings p:last-child {
  border-radius: 0px 0px 10px 10px;
}
.news-messenger .chat__top .chat-settings p svg {
  margin-right: 10px;
}
.news-messenger .chat__top > div {
  display: flex;
}
.news-messenger .chat__top > div > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-messenger .chat .chat-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 20px;
  max-height: 535px;
  overflow: auto;
  padding-bottom: 35px;
}
.news-messenger .chat .chat-info.chat-info-group .chat-left {
  margin-left: 50px;
  position: relative;
}
.news-messenger .chat .chat-info.chat-info-group .chat-left img {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: -50px;
  bottom: 0;
}
.news-messenger .chat .chat-time {
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-grey);
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  border-radius: 10px;
  padding: 8px 27px;
  width: max-content;
  margin: 0 auto;
}
.news-messenger .chat .chat-time:first-child + div {
  margin-top: auto;
}
.news-messenger .chat .chat-left {
  background: #FDFCFD;
  max-width: 475px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 20px 25px 13px 16px;
  justify-self: left;
  border: 1px solid var(--main-border);
}
.news-messenger .chat .chat-left span {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  width: 100%;
  text-align: right;
}
.news-messenger .chat .chat-right {
  background: #2F80ED;
  max-width: 475px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 20px 25px 13px 16px;
  margin-left: auto;
  border: 1px solid var(--main-border);
  cursor: pointer;
  position: relative;
  min-width: 405px;
}
.news-messenger .chat .chat-right.chat-file:after {
  content: "";
  background: #2F80ED;
  border: 1px solid #FDFCFD;
  font-size: 14px;
  line-height: 17px;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 23px;
  top: 50%;
  background-image: url("/images/icons/file-white.svg");
  background-repeat: no-repeat;
  background-position: 54% 43%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.news-messenger .chat .chat-right.chat-file > span {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
}
.news-messenger .chat .chat-right.chat-file > span:first-child {
  margin-bottom: 7px;
}
.news-messenger .chat .chat-right.chat-file > span.chat-file__bottom {
  display: flex;
  flex-direction: column;
}
.news-messenger .chat .chat-right.chat-file > span.chat-file__bottom .message-time {
  width: 100%;
  position: relative;
  top: -10px;
  padding-right: 25px;
}
.news-messenger .chat .chat-right.chat-file > span.chat-file__bottom .message-time:after, .news-messenger .chat .chat-right.chat-file > span.chat-file__bottom .message-time:before {
  content: "";
  width: 11px;
  height: 10.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-repeat: repeat-x;
  background-image: url(/images/icons/send.svg);
}
.news-messenger .chat .chat-right.chat-file > span.chat-file__bottom .message-time:before {
  right: 8px;
}
.news-messenger .chat .chat-right.chat-file > span span {
  width: max-content;
}
.news-messenger .chat .chat-right p:last-child {
  background: #1462CA;
  border: 2px solid #FDFCFD;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD;
  padding: 6px 11px;
  position: absolute;
  left: -18px;
  top: -17px;
  border-radius: 50%;
}
.news-messenger .chat .chat-right.active {
  background: #1462CA;
}
.news-messenger .chat .chat-right.deactivate {
  background: var(--main-text-dark);
  margin-top: 30px;
}
.news-messenger .chat .chat-right span {
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD;
  width: 100%;
  text-align: right;
}
.news-messenger .chat .chat-right.sended span {
  position: relative;
  padding-right: 25px;
}
.news-messenger .chat .chat-right.sended span.remove-message-text {
  position: absolute;
  top: -22px;
  left: 17px;
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #828282;
}
.news-messenger .chat .chat-right.sended span.remove-message-text:before, .news-messenger .chat .chat-right.sended span.remove-message-text:after {
  content: unset !important;
}
.news-messenger .chat .chat-right.sended span:after {
  content: "";
  width: 11px;
  height: 10.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-repeat: repeat-x;
  background-image: url("/images/icons/send.svg");
}
.news-messenger .chat .chat-right.sended span:before {
  content: "";
  width: 11px;
  height: 10.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  background-repeat: repeat-x;
  background-image: url("/images/icons/send.svg");
}
.news-messenger .chat__bottom {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  border-radius: 20px;
  padding: 20px 30px;
}
.news-messenger .chat__bottom-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-messenger .chat__bottom-select {
  display: flex;
  position: relative;
  align-items: center;
}
.news-messenger .chat__bottom-select-close {
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
.news-messenger .chat__bottom-select .chat__bottom-count {
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD;
  background: #1462CA;
  border: 2px solid #FDFCFD;
  padding: 6px 11px;
  border-radius: 50%;
}
.news-messenger .chat__bottom-select .btn-blue-dark {
  background: #1462CA;
  margin-left: 30px;
}
.news-messenger .chat__bottom .form-file {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  overflow: hidden;
}
.news-messenger .chat__bottom .form-file label {
  display: flex;
}
.news-messenger .chat__bottom .form-file svg {
  width: max-content;
}
.news-messenger .chat__bottom .form-file input {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  opacity: 0;
}
.news-messenger .chat__bottom textarea {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  border-left: 1px solid var(--main-text-light);
  margin-left: 15px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-family: "MuseoSansCyrl";
  height: 24px;
  padding-left: 5px;
  padding-top: 4px;
}
.news-messenger .chat__bottom textarea::placeholder {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-light);
}
.news-messenger .chat__bottom .send-message {
  width: 35px;
  height: 35px;
  background-color: #2F80ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-messenger .chat__bottom .send-message svg {
  width: max-content;
}
.news .is-typing {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #2F80ED;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  height: 2px;
  border: 0px solid transparent;
  background-clip: padding-box;
  -webkit-border-radius: 5px;
  background-color: #B1B1B7;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

.multi-select-contact .select-pure__label {
  position: relative;
  top: 60px;
  left: -11px;
}
.multi-select-contact .select-pure__label .select-pure__selected-label {
  background: #F4F3F4;
  border-radius: 5px;
  padding: 10px 8px;
  margin-right: 10px;
}

.new-communication .form-multiselect {
  margin-bottom: 40px;
  z-index: initial;
}
.new-communication .form-multiselect label {
  transform: none;
  background: var(--main-bg-light-second);
  padding: 0 5px;
  font-size: 12px;
  top: -7px;
  line-height: 14px;
}
.new-communication .form-multiselect-contact {
  padding-bottom: 50px;
}
.new-communication .multi-select-contact .select-pure__select {
  height: 50px;
}

.group-user {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.group-user svg {
  width: max-content;
  height: max-content;
  margin-right: 6px;
}

.faq {
  padding: 40px 65px 0 55px;
  display: flex;
  align-items: flex-start;
}
.faq .drop-settings {
  left: auto;
  right: 0;
  max-width: 215px;
  padding: 0;
}
.faq .drop-settings p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  padding: 20px 16px;
  margin-bottom: 0;
}
.faq .drop-settings p:first-child {
  border-radius: 10px 10px 0px 0px;
}
.faq .drop-settings p:last-child {
  border-radius: 0px 0px 10px 10px;
}
.faq .drop-settings p:hover {
  background: #F4F3F4;
}
.faq .drop-settings p svg {
  margin-right: 10px;
}
.faq__left {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  width: 20.5%;
  min-width: 180px;
}
.faq__left p {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-grey);
  cursor: pointer;
}
.faq__left p:not(:last-child) {
  border-bottom: 1px solid var(--main-border);
}
.faq__left p.active {
  color: #2F80ED;
}
.faq .settings-page__right {
  padding: 40px;
  min-width: 500px;
}
.faq__title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #828282;
}
.faq__title .settings-open {
  position: relative;
  cursor: pointer;
}
.faq__title .settings-open:hover > svg {
  background: var(--main-bg-light-second);
  box-shadow: 0px 0px 11px rgba(58, 67, 76, 0.05), 0px 11px 11px rgba(58, 67, 76, 0.05);
  border-radius: 5px;
}
.faq__title .settings-open > svg {
  padding: 3px;
}
.faq-item {
  margin-bottom: 20px;
  position: relative;
}
.faq-item .settings-open {
  display: none;
  margin: 0 0 0 15px;
}
.faq-item .settings-open > svg {
  width: 18px;
  height: 18px;
}
.faq-item .settings-open .drop-settings {
  top: 26px;
  right: auto;
  left: 0;
}
.faq-item .settings-open .drop-settings p {
  display: flex;
  align-items: center;
}
.faq-item__title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  cursor: pointer;
}
.faq-item__title svg {
  margin-right: 11px;
}
.faq-item__content {
  display: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  padding-top: 13px;
  padding-left: 30px;
}
.faq-item.active .settings-open {
  display: flex;
}
.faq-item.active .faq-item__title {
  color: #1462CA;
}
.faq-item.active .faq-item__title > svg:first-child {
  transform: rotate(180deg);
}
.faq-item.active .faq-item__title > svg:first-child path {
  stroke: #1462CA;
}

.shiftplan_mobile {
  display: none;
}

.overview.plan {
  position: relative;
}
.overview.plan .overview-celebrate-item {
  background-color: rgba(187, 107, 217, 0.6);
  color: #FDFCFD;
}
.overview.plan .overview-celebrate-item.hover, .overview.plan .overview-celebrate-item.hover-item {
  background-color: rgba(187, 107, 217, 0.6);
  border-color: #FDFCFD;
}
.overview.plan .overview-celebrate-item.hover:after, .overview.plan .overview-celebrate-item.hover-item:after {
  background-image: url("/images/icons/plus-white.svg");
}
.overview.plan .overview-item-edited span span {
  width: max-content;
  padding-left: 8px;
}
.overview.plan .overview-item:nth-child(n+3) {
  grid-auto-rows: 70px;
}
.overview.plan .overview-item:nth-child(n+3) p:first-child {
  padding-top: 0;
  padding-bottom: 0;
}
.overview.plan .overview-item:nth-child(n+3) p:first-child span:last-child {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-shrink: 0;
  border-left: 1px solid var(--main-border);
}
.overview.plan .overview-item:nth-child(n+3) p:first-child span:nth-child(3) {
  white-space: nowrap;
  width: 73px;
  display: flex;
  margin-right: 20px;
}
.overview.plan .overview-item:nth-child(n+3) .item:before {
  content: unset;
}
.overview.plan .overview-last p:first-child {
  background-color: rgba(244, 6, 0, 0.05);
}
.overview.plan .overview-last p:first-child span:first-child {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  padding-right: 20px;
}
.overview.plan .item-green {
  background-color: rgb(26, 186, 113);
  color: #F4F3F4;
}
.overview.plan .item-grey {
  background-color: rgb(225, 225, 225);
  color: #202125;
}
.overview.plan .plan-top {
  display: flex;
  align-items: center;
  position: absolute;
  top: -32px;
  left: 24.25vw;
  border: 1px solid var(--main-border);
  height: 33px;
  border-radius: 5px 5px 0px 0px;
}
.overview.plan .plan-top p {
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  height: 100%;
  margin: 0;
}
.overview.plan .plan-top p svg {
  cursor: pointer;
}
.overview.plan .plan-top p svg:not(:last-child) {
  margin-right: 11px;
}
.overview.plan .plan-top-blue p {
  color: #2F80ED;
  cursor: pointer;
  opacity: 0.4;
}

.plan_first_row, .plan_first_row_emp {
  position: relative !important;
}

.plan_second_row, .plan_second_row_emp {
  position: relative !important;
}

.state_3 {
  border: 1px solid #2F80ED;
  border-bottom: 1px solid var(--main-bg-light);
  border-radius: 5px 5px 0 0;
  opacity: 1 !important;
}

.state_0 {
  border: 1px solid #fd413c;
  border-bottom: 1px solid var(--main-bg-light);
  border-radius: 5px 5px 0 0;
  opacity: 1 !important;
}

.state_2 {
  border: 1px solid #faa237;
  border-bottom: 1px solid var(--main-bg-light);
  border-radius: 5px 5px 0 0;
  opacity: 1 !important;
}

.state_4 {
  border: 1px solid #5c5c5c;
  border-bottom: 1px solid var(--main-bg-light);
  border-radius: 5px 5px 0 0;
  opacity: 1 !important;
}

.text-red {
  color: #FD413C;
}

.text-green {
  color: #1ABA71;
}

.edit_template {
  display: inline-block;
  margin-left: 10px;
  color: #B1B1B7;
}

.edit_mode_str {
  display: inline-block;
  margin-left: 5px;
  font-size: 15px;
  color: #B1B1B7;
}

.shift_today {
  border-left-style: solid;
  border-right-style: solid;
  border-left-width: thick;
  border-right-width: thick;
}

.today_circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff !important;
  text-align: center;
  background: #2F80ED;
  margin: auto;
}

.radioBtn-without-icon .form-checkbox, .radioBtn-without-icon .form-radio {
  margin-right: 0;
  margin-bottom: 0px;
}
.radioBtn-without-icon .form-checkbox label, .radioBtn-without-icon .form-radio label {
  background-color: #fff;
  border-radius: 5px;
}
.radioBtn-without-icon .form-checkbox label:after, .radioBtn-without-icon .form-checkbox label:before, .radioBtn-without-icon .form-radio label:after, .radioBtn-without-icon .form-radio label:before {
  content: unset;
}
.radioBtn-without-icon .form-radio label {
  padding-left: 0;
}

.plan-workareas-color {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
}
.plan-workareas-select-item {
  display: flow !important;
}
.plan-workareas-legend {
  border-bottom: 1px solid var(--main-border);
  width: fit-content;
  cursor: pointer;
  pointer-events: none;
}
.plan-workareas-legend p {
  display: inline;
  margin-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  border-right: 1px solid var(--main-border);
}
.plan-workareas-legend p:first-child {
  border-left: 1px solid var(--main-border);
  margin-left: 0;
  padding-left: 10px;
}
.plan-workareas-legend p :not(:last-child) {
  margin-right: 10px;
}
.plan-modal-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
}
.plan-modal-title-container svg {
  vertical-align: middle; /* Ensure the SVG is vertically aligned with the text */
  margin-bottom: 20px;
  cursor: pointer;
}
.plan-modal-title {
  margin-bottom: 20px;
}

/* *** Animation of Gen DP *** */
.blink {
  stroke: black;
  animation: blinkAnimation 2s infinite;
}

@keyframes blinkAnimation {
  0%, 100% {
    stroke: black;
  }
  50% {
    stroke: #0080ff;
  }
}
line:nth-child(3) {
  animation-delay: 0s;
}

line:nth-child(4) {
  animation-delay: 1s;
}

#animatedText {
  font-size: 24px;
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* *** ******************* *** */
.shift-mobile {
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
}
.shift-mobile-settings-item {
  font-family: MuseoSansCyrlBold;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  padding: 0 13px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.5s ease-out;
  position: relative;
}
.shift-mobile-navigation {
  top: -55px;
  right: 6px;
  display: flex;
  justify-content: center;
  position: absolute;
}
.shift-mobile-navigation-left {
  margin-right: 30px;
}
.shift-mobile-dayrow {
  margin-bottom: 4px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
.shift-mobile-dayrow-daycell {
  padding: 10px;
  /*background-color: #A3D0FF;*/
  min-width: 120px;
  width: 120px;
}
.shift-mobile-dayrow-daycell-day {
  font-size: 30px;
}
.shift-mobile-dayrow-shiftcell {
  min-width: 220px;
  width: calc(100% - 120px);
  display: flex;
  padding: 5px;
}
.shift-mobile-dayrow-shiftcell-design {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  border-radius: 10px;
}
.shift-mobile-dayrow-shiftcell-design-workarea {
  width: 25px;
  margin: auto;
}
.shift-mobile-dayrow-shiftcell-design-timelist {
  width: calc(100% - 25px);
  margin: auto;
}
.shift-mobile-dayrow-shiftcell-design-timelist-time {
  font-size: 18px;
}
.shift-mobile-elements {
  margin: 10px;
  overflow: auto;
}
.shift-mobile-elements-line {
  border-top: solid 1px lightgrey;
  margin: 5px;
}
.shift-mobile-img {
  border-radius: 100%;
  width: 24px;
  height: 24px;
  margin-right: 2%;
  float: left;
}
.shift-mobile-shift {
  margin-top: 5px;
  margin-bottom: 5px;
}
.shift-mobile-employee-name {
  /*width: 80px;*/
  float: left;
}
.shift-mobile-minimize span:first-of-type {
  float: left !important;
}
.shift-mobile-minimize span:first-of-type svg:first-of-type {
  transform: rotate(180deg);
}

@media screen and (max-width: 1800px) {
  .dashboard-user .dashboard-right:nth-child(2) {
    margin: 0 10px;
  }
  .dashboard-user .dashboard-block__container {
    flex-direction: column;
  }
  .dashboard-user .dashboard-block__container > div {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1700px) {
  .employee_account_administration-item__category {
    display: none !important;
  }
}
@media screen and (max-width: 1600px) {
  .settings-page {
    padding: 20px 30px 0;
  }
  .settings-page__left {
    width: 30%;
    min-width: 280px;
  }
  .faq {
    padding-left: 30px;
    padding-right: 30px;
  }
  .dashboard.dashboard-user > div {
    width: calc((100% - 20px) / 3);
  }
  .menu {
    padding: 52px 20px 0px 30px;
    width: 240px;
  }
  .menu__top-items {
    right: -20px;
  }
  .board {
    padding: 52px 0px 60px 240px;
  }
  .overview-calender-next {
    right: 10px;
  }
  .header,
  .board-copy {
    padding: 0 5px;
    margin-top: 5px;
  }
  .settings {
    padding-left: 30px;
    padding-right: 30px;
  }
  .calendar-user {
    padding-right: 30px;
  }
  .dashboard-employeeswork .dashboard-block__content > div:first-child .dashboard-employeeswork__stat:after {
    content: unset;
  }
  .dashboard-employeeswork .dashboard-employees__item > div {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .dashboard-employeeswork .dashboard-employees__item > div .dashboard-employeeswork__name {
    width: 15vw;
  }
  .dashboard-employeeswork .dashboard-employees__item > div:last-child {
    align-items: flex-end;
  }
  .dashboard-employees .dashboard-employees__item > div:last-child {
    flex-direction: column;
    align-items: flex-end;
  }
  .dashboard-employees .dashboard-employees__item > div:last-child .progress {
    margin-top: 10px;
  }
  .dashboard-employeeswork__hours {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-employeeswork__hours p {
    margin-left: 0;
    margin-top: 5px;
  }
  .dashboard,
  .location,
  .administration__top {
    padding: 30px 30px 0px 30px;
  }
  .administration-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .administration__top {
    padding-bottom: 15px;
  }
  .settings-block .settings-search {
    width: 20vw;
  }
  .vacation-calendar {
    margin-left: 30px;
  }
  .vacation-calendar .calendar-user {
    width: 40%;
  }
}
@media screen and (max-width: 1400px) {
  .dashboard.dashboard-user {
    flex-direction: column;
  }
  .dashboard.dashboard-user > div {
    width: 100%;
    max-width: initial;
  }
  .dashboard.dashboard-user > div.dashboard-right:nth-child(2) {
    margin: 10px 0;
  }
  .dashboard-activated .dashboard-block__content div {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-activated .dashboard-block__content div .btn-yellow {
    margin-top: 10px;
  }
  .dashboard-administration-shift-takeover__header__received p:nth-child(4) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover__header__received p:nth-child(3) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover__header__received p:nth-child(5) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dashboard-administration-shift-takeover__header__employee_manager_requests {
    flex-direction: row !important;
  }
  .dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(3) {
    display: none;
  }
  .dashboard-administration-shift-takeover-item__received p:nth-child(4) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover-item__received p:nth-child(3) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(3) {
    display: none;
  }
  .dashboard-administration-shift-takeover__header__sent {
    flex-direction: row !important;
  }
  .dashboard-administration-shift-takeover__header__received {
    flex-direction: row !important;
  }
  .dashboard-block__top h4 {
    font-size: 16px;
  }
  .dashboard-block__top-flex {
    align-items: flex-end;
    flex-direction: column-reverse;
  }
  .dashboard-block__top-flex .dashboard-calendar {
    margin-right: 0;
  }
  .location-item {
    width: calc((100% - 10px) / 2);
  }
  .dashboard-trisected {
    width: calc(50% - 10px);
  }
  .staff_administration-item__first_day {
    display: none !important;
  }
  .staff_administration-item__mail {
    margin-right: 100px;
  }
  .vacation_administration-item__created {
    display: none !important;
  }
  .employee_account_administration-item__creator {
    display: none !important;
  }
}
@media screen and (max-width: 1300px) {
  .overview-calender,
  .overview-item {
    grid-template-columns: 24.4vw repeat(5, 1fr) 30px;
  }
  .overview-calender p:nth-child(n+7),
  .overview-item p:nth-child(n+7) {
    display: none;
  }
  .overview-calender p:first-child,
  .overview-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .overview.overview-monthly-closing .overview-calender,
  .overview.overview-monthly-closing .overview-item {
    grid-template-columns: 20vw repeat(8, 1fr) 30px;
  }
  .overview.overview-monthly-closing .overview-calender p:nth-child(n+7),
  .overview.overview-monthly-closing .overview-item p:nth-child(n+7) {
    display: flex;
  }
  .overview.overview-monthly-closing .overview-calender p:nth-child(n+9),
  .overview.overview-monthly-closing .overview-item p:nth-child(n+9) {
    display: none;
  }
  .override-1 {
    grid-template-columns: 24.4vw repeat(5, 1fr) 30px;
  }
  .override-1 p:nth-child(n+7) {
    display: flex;
  }
  .override-1 p:nth-child(n+8) {
    display: none;
  }
  .override-1 p:nth-child(2) {
    display: none;
  }
  .override-1 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-2 {
    grid-template-columns: 24.4vw repeat(5, 1fr) 30px;
  }
  .override-2 p:nth-child(n+7) {
    display: flex;
  }
  .override-2 p:nth-child(n+9) {
    display: none;
  }
  .override-2 p:nth-child(2) {
    display: none;
  }
  .override-2 p:nth-child(3) {
    display: none;
  }
  .override-2 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .drop-settings {
    left: 0 !important;
    right: auto !important;
  }
  .vacation-calendar.monthly-cancellation #calendarBy {
    width: 100%;
  }
  .vacation-calendar.monthly-cancellation .calendar-stats {
    width: 100%;
    margin-left: 0;
  }
  .employee {
    padding-left: 30px;
    padding-right: 30px;
  }
  .overview-calender-prev {
    left: 280px;
  }
  .settings {
    flex-direction: column;
    align-items: flex-start;
  }
  .settings-block {
    margin-top: 20px;
  }
  .dashboard {
    flex-direction: column;
  }
  .dashboard > div {
    width: 100%;
  }
  .dashboard > div:last-child {
    width: 100%;
    margin-top: 10px;
  }
  .vacation-calendar {
    flex-direction: column;
    padding-right: 30px;
    margin-top: 0;
  }
  .vacation-calendar #calendar {
    width: 100%;
  }
  .vacation-calendar #calendar .fc-day {
    min-width: 80px;
  }
  .vacation-calendar .calendar-user {
    width: 100%;
    margin-top: 0;
    border-top: 0;
    padding-left: 0;
  }
  .settings-vacation {
    position: static;
  }
  .calendar-user {
    padding-right: 0;
  }
  .employee_account_administration-item__comment {
    display: none !important;
  }
  .dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(3) {
    display: block;
  }
  .dashboard-administration-shift-takeover__header__employee_manager_requests {
    flex-direction: row !important;
  }
  .dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(3) {
    display: block;
  }
  .dashboard-administration-shift-takeover__header__received p:nth-child(4) {
    width: 150px;
    min-width: 150px;
  }
  .dashboard-administration-shift-takeover__header__received p:nth-child(3) {
    width: 100px;
    min-width: 100px;
  }
  .dashboard-administration-shift-takeover-item__received p:nth-child(4) {
    width: 150px;
    min-width: 150px;
  }
  .dashboard-administration-shift-takeover-item__received p:nth-child(3) {
    width: 100px;
    min-width: 100px;
  }
}
@media screen and (max-width: 1150px) {
  .staff_administration-item__created {
    display: none !important;
  }
}
@media screen and (max-width: 1100px) {
  .staff_administration-item__note {
    display: none !important;
  }
  .staff_administration-item__mail {
    display: none !important;
  }
  .staff_administration-item__phone {
    margin-right: 100px;
  }
  .vacation_administration-item__note {
    display: none !important;
  }
  .monthView-settings {
    margin-top: 20px;
  }
}
@media screen and (max-width: 992px) {
  .board.min {
    padding-top: 0;
  }
  .menu__displaymode {
    display: none;
  }
  .menu {
    overflow-y: auto;
    overflow-x: hidden;
    left: -300px;
    padding-top: 10px;
    z-index: 99;
    transition: all 0.5s ease-out;
  }
  .menu-btn {
    display: block;
  }
  .menu.show {
    transform: translateX(300px);
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  .menu::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  .menu {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .board {
    padding: 52px 0px 60px 0px;
  }
  .news {
    padding: 30px;
  }
  .news .news-messenger .messenger-chats {
    width: 40vw;
  }
  .overview-item:nth-child(n+3) p:first-child span:nth-child(3) {
    margin-right: 10px;
  }
  .board {
    padding-top: 0;
  }
  .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-bg-dark);
    padding: 10px 30px;
  }
  .header {
    margin-top: 30px;
  }
  .header .header-bar {
    display: none;
  }
  .modal-body {
    width: 95%;
    overflow: scroll;
    max-height: 100%;
  }
}
@media screen and (max-width: 800px) {
  .vacation_administration-item__saldo {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    flex-direction: column;
  }
  .faq .faq__left {
    width: 100%;
    margin-bottom: 10px;
  }
  .faq .faq__title {
    font-size: 24px;
    line-height: 28px;
  }
  .faq .settings-page__right {
    padding: 20px;
    width: 100%;
    margin-left: 0;
    min-width: initial;
  }
  .header-link .header__title {
    flex-direction: column;
    align-items: flex-start;
  }
  .overview.daystamp-view .overview-calender p:first-child {
    padding-left: 30px;
  }
  .overview.daystamp-view {
    padding-right: 0;
  }
  .overview.daystamp-view .daystamp-view__sum {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
    width: 100%;
  }
  .overview.overview-monthly-closing .overview-calender-prev {
    left: 200px;
  }
  .overview.overview-monthly-closing .overview-calender,
  .overview.overview-monthly-closing .overview-item {
    grid-template-columns: 240px repeat(5, 1fr) 20px;
  }
  .overview.overview-monthly-closing .overview-calender p,
  .overview.overview-monthly-closing .overview-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .overview.overview-monthly-closing .overview-calender p:first-child p span,
  .overview.overview-monthly-closing .overview-item p:first-child p span {
    font-size: 16px;
    line-height: 20px;
  }
  .overview.overview-monthly-closing .overview-calender p.overview-item__block:nth-child(n+6),
  .overview.overview-monthly-closing .overview-item p.overview-item__block:nth-child(n+6) {
    display: none;
  }
  .news .news-messenger {
    overflow-x: scroll;
  }
  .news .news-messenger::-webkit-scrollbar {
    display: none;
  }
  .news .news-messenger .messenger-chats {
    min-width: 300px;
  }
  .dashboard-fields .drag-container__general > div {
    width: calc((100% - 10px) / 2);
  }
  .dashboard-areas__top p {
    font-size: 12px;
  }
  .dashboard-areas__top p:nth-child(3) {
    width: 70px;
  }
  .dashboard-areas__top p:nth-child(6) {
    width: 60px;
  }
  .dashboard-areas__top p:nth-child(7) {
    width: 45px;
  }
  .dashboard-areas__item p:nth-child(3) {
    width: 70px;
  }
  .dashboard-areas__item p:nth-child(6) {
    width: 60px;
  }
  .dashboard-areas__item p:nth-child(7) {
    width: 45px;
  }
  .settings {
    padding: 20px 30px 0;
  }
  .settings .form-checkbox {
    margin-right: 10px;
  }
  .settings .form-checkbox label {
    font-size: 14px;
  }
  .settings-block {
    flex-wrap: wrap;
  }
  .settings-block > div {
    margin-bottom: 10px;
  }
  .settings-block > div span {
    font-size: 0;
  }
  .settings-block > div span svg {
    margin: 0;
  }
  .overview-calender-block__top h4,
  .dashboard-block__top h4 {
    width: 75%;
  }
  .overview-calender-block__top span,
  .dashboard-block__top span {
    display: flex;
  }
  .dashboard-employeeswork .dashboard-employees__item {
    padding: 15px 20px;
  }
  .dashboard-employeeswork__title {
    padding: 30px 20px 10px;
  }
  .dashboard-block {
    padding: 20px;
  }
  .dashboard-block.dashboard-employeeswork {
    padding-right: 0;
    padding-left: 0;
  }
  .dashboard-employeeswork__hours,
  .dashboard-employeeswork .dashboard-block__top {
    padding: 0 20px;
  }
  .location-item {
    width: 100%;
    padding: 30px 20px;
  }
  .dashboard-trisected {
    width: 100%;
  }
  .dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file .upload-file {
    padding-left: 40px;
  }
  .dashboard-employeesnew .dashboard-block__content .dashboard-employeesnew-file .upload-file p {
    max-width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dashboard-link p {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .dashboard-link p span {
    max-width: 100%;
  }
  .dashboard-link p span:nth-child(2) {
    margin-top: 10px;
  }
  .dashboard-link p span:last-child {
    position: absolute;
    right: 0;
    margin-top: 0;
  }
  .dashboard-areas__item p:nth-child(2),
  .dashboard-areas__top p:nth-child(2) {
    width: 40px;
  }
  .dashboard-areas__item p:nth-child(5),
  .dashboard-areas__top p:nth-child(5) {
    width: 20px;
  }
  .dashboard-areas__top p:first-child,
  .dashboard-areas__item p:first-child {
    width: 40px;
  }
  .pagination ul li:not(:first-child):not(:last-child):not(:nth-last-child(-n+2)) {
    display: none;
  }
  .fc-toolbar-chunk .fc-toolbar-title,
  .fc-col-header .fc-col-header-cell-cushion {
    font-size: 14px;
    line-height: 120%;
  }
}
@media screen and (max-width: 700px) {
  .log_administration-item__category {
    display: none !important;
  }
}
@media screen and (max-width: 650px) {
  .dashboard-administration-shift-takeover__header__received p:nth-child(4) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover__header__received p:nth-child(3) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover-item__received p:nth-child(4) {
    width: 50px;
    min-width: 50px;
  }
  .dashboard-administration-shift-takeover-item__received p:nth-child(3) {
    width: 50px;
    min-width: 50px;
  }
}
@media screen and (max-width: 600px) {
  .administration__top p:first-child {
    min-width: 150px;
  }
  .administration__top p:nth-child(5) {
    margin-left: 10px;
  }
  .administration-item p:first-child {
    min-width: 150px;
  }
  .administration-item p:nth-child(2) span {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .dashboard-location .dashboard-info .input-container .form-group {
    width: 100%;
  }
  .dashboard-location .dashboard-info .input-container .form-group:not(:last-child) {
    margin-bottom: 20px;
  }
  .input-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .input-container > div {
    width: 100%;
    margin-left: 0;
  }
  .employee-item {
    width: 100%;
  }
  .overview-item__hours {
    display: none;
  }
  .overview-item__work_areas {
    display: none;
  }
  .overview.overview-monthly-closing .overview-calender-prev {
    left: 200px;
  }
  .overview.overview-monthly-closing .overview-calender,
  .overview.overview-monthly-closing .overview-item {
    grid-template-columns: 240px repeat(3, 1fr) 40px;
  }
  .overview.overview-monthly-closing .overview-calender p.overview-item__block:nth-child(n+5),
  .overview.overview-monthly-closing .overview-item p.overview-item__block:nth-child(n+5) {
    display: none;
  }
  .dashboard-block.dashboard-block-contact .input-container {
    flex-direction: column;
  }
  .dashboard-block.dashboard-block-contact .input-container .form-group {
    width: 100%;
  }
  .dashboard-block.dashboard-block-contact .input-container .form-group:not(:last-child) {
    margin-bottom: 20px;
  }
  .dashboard-info .dashboard-location__about h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .dashboard-info .dashboard-location__img {
    width: 80px;
    height: 80px;
  }
  .dashboard-registered-hours .dashboard-block__top {
    padding: 0;
  }
  .new-employee .modal-body {
    padding: 20px;
  }
  .fc .fc-daygrid-event {
    flex-direction: column;
    padding: 5px 2px;
    align-items: flex-start;
  }
  .fc-h-event .fc-event-title {
    font-size: 10px;
    line-height: 120%;
  }
  .header__title {
    font-size: 24px;
  }
  .form-group.settings-search {
    width: 100%;
  }
  .administration-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .administration-bottom .pagination {
    margin-top: 15px;
  }
  .dashboard-areas__top p:nth-child(3),
  .dashboard-areas__item p:nth-child(3) {
    width: 58px;
  }
  .dashboard-areas__top p {
    font-size: 10px;
    line-height: 12px;
  }
  .dashboard-employeesnew .dashboard-block__content {
    flex-wrap: wrap;
  }
  .dashboard-employeesnew .dashboard-block__content .form-group {
    width: 100%;
  }
  .dashboard-employeesnew .dashboard-block__content .form-group:last-child {
    width: 100%;
    margin-top: 10px;
  }
  .dashboard-fields .drag-container__general > div,
  .dashboard-fields .drag-container__administratives > div {
    width: 100%;
  }
  .dashboard-location .dashboard-info {
    position: relative;
  }
  .dashboard-location .dashboard-info .dashboard-info__top {
    padding-right: 20px;
  }
  .dashboard-location .dashboard-info .settings-more {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .dashboard-location .dashboard-block__radio {
    flex-wrap: wrap;
  }
  .dashboard-location .dashboard-block__radio .form-radio {
    width: 110px;
    flex-shrink: 0;
    margin: 15px 0px 0px 0;
  }
  .dashboard-employees__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-employees__item > div {
    width: 100%;
  }
  .dashboard-employees__item > div .progress {
    width: 100%;
  }
  .dashboard-employees__item .progress {
    width: 40vw;
  }
  .overview-calender,
  .overview-item {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .overview-calender p:nth-child(n+3),
  .overview-item p:nth-child(n+3) {
    display: none;
  }
  .override-1 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-1 p:nth-child(n+3) {
    display: flex;
  }
  .override-1 p:nth-child(n+4) {
    display: none;
  }
  .override-1 p:nth-child(2) {
    display: none;
  }
  .override-1 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-2 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-2 p:nth-child(n+3) {
    display: flex;
  }
  .override-2 p:nth-child(n+5) {
    display: none;
  }
  .override-2 p:nth-child(2) {
    display: none;
  }
  .override-2 p:nth-child(3) {
    display: none;
  }
  .override-2 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-3 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-3 p:nth-child(n+3) {
    display: flex;
  }
  .override-3 p:nth-child(n+6) {
    display: none;
  }
  .override-3 p:nth-child(2) {
    display: none;
  }
  .override-3 p:nth-child(3) {
    display: none;
  }
  .override-3 p:nth-child(4) {
    display: none;
  }
  .override-3 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-4 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-4 p:nth-child(n+3) {
    display: flex;
  }
  .override-4 p:nth-child(n+7) {
    display: none;
  }
  .override-4 p:nth-child(2) {
    display: none;
  }
  .override-4 p:nth-child(3) {
    display: none;
  }
  .override-4 p:nth-child(4) {
    display: none;
  }
  .override-4 p:nth-child(5) {
    display: none;
  }
  .override-4 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-5 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-5 p:nth-child(n+3) {
    display: flex;
  }
  .override-5 p:nth-child(n+8) {
    display: none;
  }
  .override-5 p:nth-child(2) {
    display: none;
  }
  .override-5 p:nth-child(3) {
    display: none;
  }
  .override-5 p:nth-child(4) {
    display: none;
  }
  .override-5 p:nth-child(5) {
    display: none;
  }
  .override-5 p:nth-child(6) {
    display: none;
  }
  .override-5 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-6 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-6 p:nth-child(n+3) {
    display: flex;
  }
  .override-6 p:nth-child(n+9) {
    display: none;
  }
  .override-6 p:nth-child(2) {
    display: none;
  }
  .override-6 p:nth-child(3) {
    display: none;
  }
  .override-6 p:nth-child(4) {
    display: none;
  }
  .override-6 p:nth-child(5) {
    display: none;
  }
  .override-6 p:nth-child(6) {
    display: none;
  }
  .override-6 p:nth-child(7) {
    display: none;
  }
  .override-6 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .overview-calender-prev {
    left: 200px;
  }
  .overview-item:nth-child(n+3) p:first-child span:nth-child(2) {
    width: auto;
  }
  .overview-calender p:first-child, .overview-item p:first-child,
  .board-copy {
    padding-right: 10px;
    padding-left: 1px !important;
  }
  .header-mobile {
    padding: 10px 15px;
  }
  .overview-calender p {
    font-size: 14px;
  }
  .overview-calender p:first-child span {
    font-size: 14px;
  }
  .header-user p, .header-user p span {
    font-size: 0;
  }
  .header-user {
    margin-left: 5px;
  }
  .header-notif {
    display: flex;
    align-items: flex-end;
    height: 24px;
  }
  .header-lang, .header-loc {
    display: none;
  }
  .menu-sett {
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .menu-sett .header-lang, .menu-sett .header-loc {
    display: block;
    margin: auto;
  }
  .dashboard-employeeswork .dashboard-block__top {
    flex-direction: column;
    position: relative;
    align-items: flex-start;
  }
  .dashboard-employeeswork .dashboard-block__top .dashboard-block__top-flex .dashboard-calendar {
    margin-top: 15px;
  }
  .dashboard-employeeswork .dashboard-block__top .dashboard-block__top-flex span {
    position: absolute;
    top: 0px;
    right: 20px;
  }
}
@media screen and (max-width: 556px) {
  .week_states {
    width: 150px !important;
  }
  .overview {
    margin-top: 90px !important;
  }
  .staff_administration-item__week_hours {
    display: none !important;
  }
  .staff_administration-item__phone {
    margin-right: 50px;
  }
}
@media screen and (max-width: 520px) {
  .dashboard-administration-shift-takeover-item__employee_manager_requests p:nth-child(3) {
    display: none;
  }
  .dashboard-administration-shift-takeover__header__employee_manager_requests {
    flex-direction: row !important;
  }
  .dashboard-administration-shift-takeover__header__employee_manager_requests p:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .feedback_trigger.fm_clean.right-top, .feedback_trigger.fm_clean.right-bottom {
    margin-right: 340px;
  }
  .feedback_content.fm_clean.right-top, .feedback_content.fm_clean.right-bottom {
    width: 340px;
  }
  .feedback_message {
    width: 300px;
  }
  .overview.overview-monthly-closing {
    overflow: hidden;
  }
  .overview.overview-monthly-closing .overview-calender-prev {
    left: 200px;
  }
  .overview.overview-monthly-closing .overview-calender,
  .overview.overview-monthly-closing .overview-item {
    grid-template-columns: 240px repeat(1, 1fr) 40px;
  }
  .overview.overview-monthly-closing .overview-calender p:nth-child(n+3),
  .overview.overview-monthly-closing .overview-item p:nth-child(n+3) {
    display: none;
  }
  .overview.overview-monthly-closing .overview-calender p.overview-item__block:nth-child(n+3),
  .overview.overview-monthly-closing .overview-item p.overview-item__block:nth-child(n+3) {
    display: none;
  }
  .dashboard-employeeswork .dashboard-employees__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-employeeswork .dashboard-employees__item > div {
    width: 100%;
  }
  .dashboard-employeeswork .dashboard-employees__item > div:last-child {
    align-items: flex-start;
  }
  .dashboard-employeeswork .dashboard-employees__item > div .dashboard-employeeswork__time {
    margin-left: 0;
  }
  .dashboard-employeeswork .dashboard-employees__item > div .dashboard-employeeswork__name {
    width: max-content;
  }
  .dashboard-employees__item p, .dashboard-employees__item span {
    margin: 3px 0;
  }
  .modal-body {
    max-height: 90%;
    overflow: auto;
  }
  .modal-title {
    font-size: 20px;
  }
  .modal-wrap .modal-block .form-group {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
  .dashboard-opening .dashboard-block__content > div {
    width: calc((100% - 10px) / 2);
  }
  .dashboard-opening .dashboard-block__content > div:nth-child(2n) {
    margin-right: 0;
  }
}
.process_state_image {
  display: inline-block;
  width: 17px !important;
  height: 17px !important;
}

.change_img_to_red {
  filter: invert(34%) sepia(80%) saturate(7301%) hue-rotate(353deg) brightness(89%) contrast(131%);
}

.change_img_to_yellow {
  filter: invert(66%) sepia(99%) saturate(257%) hue-rotate(8deg) brightness(88%) contrast(89%);
}

.change_img_to_grey {
  filter: invert(87%) sepia(1%) saturate(0%) hue-rotate(220deg) brightness(88%) contrast(87%);
}

.change_img_to_green {
  filter: invert(45%) sepia(36%) saturate(1042%) hue-rotate(72deg) brightness(93%) contrast(90%);
}

.new_employee_add_btn {
  margin: 10px;
}

.process-closed_box {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: xxx-large;
  /*z-index: 300;*/
  transform: rotate(-30deg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: -30px;
  font-family: "Comic Sans MS", serif;
  opacity: 0.4;
}
.process-result {
  border-top-style: solid;
  border-bottom-style: double;
}
.process-dashboard {
  display: flex;
  justify-content: space-around;
  padding: 55px 65px 0 55px;
}
.process-dashboard > div {
  width: calc((100% - 200px) / 2);
}
.process .select {
  width: calc(100% - 20px);
  padding: 0;
}
.process .styledSelect {
  padding: 11px 26.5px 9px 17.5px;
  z-index: 5;
  cursor: pointer;
}
.process .styledSelect img {
  object-fit: cover;
}
.process .styledSelect p {
  margin: 0;
}
.process table {
  margin: 0;
  padding: 0;
}
.process table td {
  width: 50%;
}
.process .load-doc, .process .uploaded_files-feedback, .process .uploaded_files {
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 15px;
  background: transparent;
  border: 1px solid var(--main-border);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process .load-doc label, .process .uploaded_files-feedback label, .process .uploaded_files label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--main-bg-light-second);
  font-weight: normal;
  color: var(--main-text-grey);
}
.process .load-doc:hover, .process .uploaded_files-feedback:hover, .process .uploaded_files:hover {
  border-color: #2F80ED;
}
.process .load-doc p, .process .uploaded_files-feedback p, .process .uploaded_files p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin: 0;
}
.process .load-doc p svg, .process .uploaded_files-feedback p svg, .process .uploaded_files p svg {
  margin-right: 15px;
}
.process .load-doc p span, .process .uploaded_files-feedback p span, .process .uploaded_files p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  padding-left: 5px;
}
.process .load-doc input, .process .uploaded_files-feedback input, .process .uploaded_files input {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.process .load-doc-feedback label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--main-bg-light-second);
  font-weight: normal;
  color: var(--main-text-grey);
}
.process .load-doc-feedback:hover {
  border-color: #2F80ED;
}
.process .load-doc-feedback p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  margin: 0;
}
.process .load-doc-feedback p svg {
  margin-right: 15px;
}
.process .load-doc-feedback p span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2F80ED;
  padding-left: 5px;
}
.process .load-doc-feedback input {
  position: absolute;
  left: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  width: inherit;
  height: inherit;
}
.process .uploaded_files {
  height: 30px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-top: 0 !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  /*border-top: none;*/
  cursor: pointer;
  margin-bottom: 10px;
}
.process .uploaded_files-feedback {
  height: 30px;
  width: 70px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 15px;
  z-index: 3 !important;
  margin-left: 20px;
  right: -80px;
}
.process .missing {
  background-color: var(--main-text-file-error);
}
.process .exist {
  background-color: var(--main-text-file-success);
  pointer-events: all !important;
}
.process-block {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 20px;
}
.process-block_mew_sick_leave {
  width: 100%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 20px;
}
.process-left {
  min-width: 700px !important;
  max-width: 700px;
  padding-bottom: 60px;
}
.process-left_new_sick_leave {
  min-width: 700px !important;
  padding-bottom: 60px;
}
.process-right {
  min-width: 700px;
  width: 1000px;
}
.process-wage-dash {
  display: flex;
  justify-content: space-around;
  padding: 55px 65px 0 55px;
}
.process-wage-dash > div {
  width: calc((100% - 20px) / 2);
}
.process-actual_result {
  width: 130px !important;
  text-align: right;
  margin: auto;
}

@media screen and (max-width: 1800px) {
  .process-dashboard {
    flex-direction: column;
  }
}
.resetPWItems {
  display: none;
}

.addWeekInfo {
  /* padding-left: 55px; */
  position: relative;
  width: 364px;
  /* height: 20px; */
  left: 70px;
  top: -50px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: #828282;
}

.addWeek__settingsblock {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
}

.templates {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 370px);
  height: calc(100% - 200px) !important;
}
.templates-item {
  cursor: pointer;
  width: calc(100% - 30px - 30px);
  margin: 0 5px 10px;
  /* padding: 30px 30px 30px; */
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 32px 40px;
  height: 100px;
  /*cursor: pointer;
  width: 244px;
  margin: 0 5px 10px;
  padding: 30px 30px 15px;
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;*/
}
.templates-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.templates-item:hover {
  border-color: #2F80ED;
}
.templates-item__title {
  position: relative;
  /*width: 163px;*/
  /*left: calc(50% - 163px / 2);*/
  /* top: 0%; */
  /* bottom: 59.26%; */
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-dark);
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0px 0 12px;
}
.templates-item __hours {
  position: relative;
  width: 126px;
  left: calc(50% - 63px - 18.5px);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #828282;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.templates-item__subtitle {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  margin-bottom: 5px;
}
.templates-item__error {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px !important;
  height: 24px !important;
}
.templates-item .eye {
  float: right;
  pointer-events: auto; /* allow interactions */
}
.templates-item .edit {
  float: right;
  margin-right: 5px;
  z-index: 1000;
  pointer-events: auto; /* allow interactions */
}
.templates-item > div {
  flex-direction: row;
  justify-content: flex-end;
  padding: 0px;
  position: relative;
  order: 1;
  flex-grow: 1;
  width: 100%;
  align-items: center;
  display: flex;
}
.templates-item > div.employee-item-desc {
  margin-top: 15px;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.templates-item > div.employee-item-desc p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-dark);
  margin-bottom: 9px;
  width: 50%;
}
.templates-item > div.employee-item-desc p span {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-dark);
  padding-bottom: 0;
}
.templates-item > div.employee-item-desc p svg {
  margin-right: 5px;
}
.templates-item > div span {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  padding-bottom: 6px;
}
.templates-item__progress {
  background: var(--main-border);
  height: 4px;
  border-radius: 100px;
  margin-top: 6px;
  position: relative;
  width: 100%;
}
.templates-item__progress .progress {
  position: absolute;
  height: 100%;
  border-radius: 100px;
}
.templates-item__symbols {
  display: block !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0px !important;
  position: relative !important;
  width: 495.5px !important;
  justify-content: left !important;
  /* height: 54px; */
  /* left: 40px; */
  /* top: 32px; */
  /* flex: none; */
  order: 0 !important;
  flex-grow: 1 !important;
  /* margin: 0px 24px;*/
}
.templates-item__symbols .drag_drop {
  float: left;
}
.templates-item__symbols .drag_drop svg circle {
  fill: var(--main-text-dark);
}
.templates-item__symbols .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  position: relative;
  /*width: 163px;*/
  height: 54px;
  left: 24px;
  top: 0px;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-bottom: 10px;
}
.templates-item__drag-container__templates {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.templates-item__drag-container__templates > div {
  width: calc((100% - 10px) / 2);
}
.templates-item__drag-container__templates > div:nth-child(2n+1):last-child {
  width: 100%;
}
.templates-item__clicked {
  border-color: #2F80ED;
}
.templates-item__readable {
  background: #a3a3c2;
}
.templates-item__not_addable {
  user-select: none; /* Prevent text selection */
  pointer-events: none; /* Prevent interactions */
  opacity: 0.5; /* (Optional) Make it look inactive */
}
.templates-item__drag-element {
  display: flex;
}
.templates-item__drag-element > div {
  display: flex;
  align-items: center;
}
.templates-item__drag-element > div p {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.templates-item__drag-element > div p span {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--main-text-grey);
}
.templates-item__drag-element > div p span:first-child {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
}
.templates-item__drag-element > div svg:last-child {
  margin-left: 5px;
  color: var(--main-text-dark);
}

.transparent {
  background-color: #aaa;
}

.tblItem {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  /* position: static; */
  width: 300px;
  /* height: 319px; */
  left: 40px;
  top: 40px;
  flex: none;
  flex-grow: 0;
  margin: 24px 0;
}
.tblItem__1 {
  order: 1;
}
.tblItem__2 {
  order: 2;
}
.tblItem__heading {
  position: relative;
  width: 52px;
  left: 0;
  top: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: var(--main-text-dark);
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 16px 0px;
}
.tblItem__tblheader {
  width: 53px;
  height: 20px;
  left: 12px;
  top: -2px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--main-text-dark) !important;
  pointer-events: none;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 0;
  position: relative;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  min-width: 30px;
  pointer-events: auto; /* allow interactions */
  /* Rounded sliders */
}
.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

.lbl_default {
  margin-right: 10px;
  color: #2196F3;
}

.alert_div {
  opacity: 1 !important;
  left: calc(50% - 200px) !important;
  top: calc(50% - 200px) !important;
  width: 380px !important;
  border-radius: 2px !important;
  color: #ffffff !important;
  padding-top: 15px !important;
  padding-left: 15px !important;
  z-index: 1000 !important;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  background-color: #FFFFFF !important;
  max-height: 765px;
  height: auto !important;
  top: calc(30% - 200px) !important;
}

.btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  height: 50px;
  width: 146px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
.btn-green {
  background: #1ABA71;
  color: #fff;
}
.btn-grey {
  background: #cccccc;
  color: #fff;
}
.btn-red {
  background: #FD413C;
  color: #fff;
}
.btn-red-error {
  width: 300px;
  align-self: stretch;
}

#alert_div_title {
  width: 300px;
  left: 0;
  top: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 36px;
  color: #4F4F4F;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  height: auto;
}

#alert_div_text {
  width: 300px;
  left: 0;
  top: 52px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #828282;
  order: 1;
  flex-grow: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  height: auto;
}
#alert_div_text a {
  width: 300px;
  height: 40px;
  left: 0;
  top: 52px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #828282;
  order: 1;
  flex-grow: 0;
  margin-top: 16px;
  margin-bottom: 16px;
}

#alert_div_buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px;
  left: 40px;
  top: 166px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  height: auto !important;
}

#alert_div_img {
  width: 380px;
  left: calc(50% - 200px) !important;
  top: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin-left: -15px;
  margin-top: -15px;
  height: auto;
}

.spn__disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
  background: lightgrey !important;
}

.tippy-element {
  cursor: help;
  pointer-events: all;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
  background: lightgrey !important;
}

.styledSelectText {
  margin: 0 !important;
  color: var(--main-text-dark) !important;
}

.not-clickable {
  pointer-events: none !important;
}

.no-background-color {
  background-color: transparent !important;
}

.copyInput {
  position: absolute;
  cursor: pointer;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  z-index: 4;
}
.copyInput.active svg:first-child {
  display: none;
}
.copyInput.active svg:last-child {
  display: block;
}
.copyInput svg:last-child {
  display: none;
}

.showSave {
  position: absolute;
  cursor: pointer;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  z-index: 4;
}
.showSave.active svg:first-child {
  display: none;
}
.showSave.active svg:last-child {
  display: block;
}
.showSave svg:last-child {
  display: none;
}

.copyField {
  padding-right: 45px !important;
}

.success_text {
  color: #5bb75b;
  text-align: center;
}

.splitFour {
  width: 25% !important;
}

select:focus {
  border: 1px solid #2F80ED;
}

.styledSelect:focus {
  border: 1px solid #2F80ED;
}

.filter-save_filter {
  margin-top: 20px;
  border-top: 1px solid var(--main-border);
}
.filter-save_filter p {
  margin-top: 15px;
}

.vacation_count {
  display: flex;
  align-items: center;
}

.pl,
.pl__worm {
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.pl {
  animation-name: bump;
  animation-timing-function: linear;
  width: 8em;
  height: 8em;
}

.pl__ring {
  stroke: hsla(var(--hue), 10%, 10%, 0.1);
  transition: stroke 0.3s;
}

.pl__worm {
  animation-name: worm;
  animation-timing-function: cubic-bezier(0.42, 0.17, 0.75, 0.83);
}

/* Animations */
@keyframes bump {
  from, 42%, 46%, 51%, 55%, 59%, 63%, 67%, 71%, 74%, 78%, 81%, 85%, 88%, 92%, to {
    transform: translate(0, 0);
  }
  44% {
    transform: translate(1.33%, 6.75%);
  }
  53% {
    transform: translate(-16.67%, -0.54%);
  }
  61% {
    transform: translate(3.66%, -2.46%);
  }
  69% {
    transform: translate(-0.59%, 15.27%);
  }
  76% {
    transform: translate(-1.92%, -4.68%);
  }
  83% {
    transform: translate(9.38%, 0.96%);
  }
  90% {
    transform: translate(-4.55%, 1.98%);
  }
}
@keyframes worm {
  from {
    stroke-dashoffset: 10;
  }
  25% {
    stroke-dashoffset: 295;
  }
  to {
    stroke-dashoffset: 1165;
  }
}
video {
  width: 100%;
  border-radius: 5px;
  border: 1px solid black;
  margin: 15px;
}

.recording-buttons {
  margin-left: 20px;
}

.feedback-me-blue-border {
  border: 1px solid #2f80ed;
}
.feedback_content {
  color: var(--main-text-dark);
  background: var(--main-bg-light-second) !important;
}
.feedback_message {
  color: var(--main-text-dark);
  background: 0 0;
}

.btn-white-feedback {
  color: var(--main-text-dark);
  background: 0 0;
}

.plan_man-calender {
  /* div {
     &:nth-child(n +12 ) { // hide starting at x-2th user (because 1+2 are employees, 3-x are x-2 users) (repeat_nr + fixed columns (2) + 1 to write!)
       display: none;
     }

     &:first-child {
       padding-right: 20px;
       padding-left: 30px;
     }
   }*/
}
.plan_man-calender-prev {
  left: 305px !important;
}
.plan_man-calender-next {
  right: 36px !important;
}
.plan_man-calender p:first-child {
  justify-content: flex-start;
  padding-left: 60px;
}
.plan_man-calender p:first-child span {
  color: #2F80ED;
  font-size: 18px;
  line-height: 22px;
  font-family: "MuseoSansCyrlBold";
  padding-left: 12px;
}
.plan_man-calender p:nth-child(2) {
  justify-content: flex-start;
  padding-left: 60px;
}
.plan_man-calender p:nth-child(2) span {
  color: #2F80ED;
  font-size: 18px;
  line-height: 22px;
  font-family: "MuseoSansCyrlBold";
  padding-left: 12px;
}
.plan_man-item {
  /*   grid-template-columns: 120px 210px repeat(9,1fr) 60px !important; // means first-cell: 9.7vw, repeat 7 times all (FR means flex), 60px last column
     p {
       &:nth-child(n +12 ) { // hide starting at x-2th user (because 1+2 are employees, 3-x are x-2 users) (repeat_nr + fixed columns (2) + 1 to write!)
         display: none;
       }

       &:first-child {
         padding-right: 20px;
         padding-left: 30px;
       }
     }*/
}
.plan_man-item__block {
  /*width: 247px !important;*/
}
.plan_man-item__block span {
  flex: 1 1;
}
.plan_man-open-shifts {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  font-weight: 600 !important;
}
.plan_man-open-shifts span {
  font-weight: 600 !important;
}
.plan_man-open-shift {
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 17px;
  position: relative;
  cursor: pointer;
  padding: 8px 5px;
  border-radius: 5px;
  color: var(--main-text-dark) !important;
  min-width: 44px;
  text-align: center;
  margin: 2.5px;
}
.plan_man-balance-title {
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 140% !important;
  color: #4F4F4F !important;
}
.plan_man-balance-red {
  color: #FD413C !important;
}
.plan_man-balance-green {
  color: #1ABA71 !important;
}
.plan_man-employees {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-text-grey);
  border-right: 1px solid var(--main-border);
  padding: 25px 0;
}
.plan_man-employees-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  width: 78px;
  height: 37px;
  flex: none;
  flex-grow: 0;
}
.plan_man-employees-info-name {
  width: 78px;
  height: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #4F4F4F;
  flex: none;
  flex-grow: 0;
  overflow: hidden;
}
.plan_man-employees-info-hours {
  height: 17px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--main-text-dark) !important;
  flex: none;
  flex-grow: 0;
}
.plan_man-employees-info-hours-txt {
  width: 12px;
  display: block;
  float: left;
}
.plan_man-employee-title {
  justify-content: center !important;
  border-right: none !important;
  padding-left: 60px !important;
  width: 200px !important;
}
.plan_man-employee-info {
  flex-direction: row !important;
  align-items: center !important;
  padding: 0 !important;
}
.plan_man-employee-info img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0px 4px 20px rgba(0, 60, 255, 0.06));
  border-radius: 50%;
  flex: none;
  flex-grow: 0;
  margin-right: 10px;
}
.plan_man-week-element {
  flex-direction: column !important;
  padding-left: 0 !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.plan_man-week-day {
  height: 22px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 22px !important;
  color: var(--main-text-dark) !important;
  flex: none !important;
  flex-grow: 0 !important;
  padding: 0 !important;
}
.plan_man-week-date {
  width: 74px !important;
  height: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 140% !important;
  color: var(--main-text-dark) !important;
  flex: none !important;
  flex-grow: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.plan_man-week-event {
  overflow: hidden;
  max-height: 40px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.plan_man-shiftplan {
  /* margin-bottom: 50px; */
  border-top: 1px solid #2f80ed;
}

.emp_row {
  margin-top: 50px;
}

.data_management-drop {
  position: absolute;
  margin-top: -30px;
  margin-left: -60px;
  display: none;
  padding: 15px;
}
.data_management-drop p {
  cursor: pointer;
  min-width: auto !important;
  width: 120px !important;
}
.data_management-options {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  flex-shrink: 0;
  width: 3.8vw;
  min-width: 80px;
}
.data_management-option:hover {
  color: #2F80ED;
}

.unsubscribe-stats {
  display: flow-root;
  border-bottom: 1px solid black;
  margin-bottom: 10px !important;
}
.unsubscribe-stats p:first-child {
  float: left;
  color: black;
}
.unsubscribe-stats p:nth-child(2) {
  float: right;
  color: black;
}

@media screen and (min-width: 3100px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(20, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+23) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+24) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+25) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+26) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+27) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+28) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+29) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+30) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+31) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+32) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+33) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+34) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+35) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+36) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+37) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+38) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+39) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+40) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+41) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+42) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+43) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+44) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+45) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+46) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+47) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+48) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+49) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+50) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+51) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+52) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+53) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+54) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+55) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+56) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+57) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+58) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+59) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+60) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+61) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+62) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+63) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+64) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+65) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+66) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+67) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+68) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+69) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+70) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+71) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+72) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+73) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+74) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+75) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+76) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+77) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+77) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+78) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+78) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+79) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+79) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+80) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+80) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+81) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+81) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+82) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+82) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+83) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+83) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(20, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+23) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2820px) and (max-width: 3099px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(18, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+21) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+22) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+23) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+24) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+25) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+26) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+27) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+28) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+29) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+30) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+31) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+32) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+33) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+34) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+35) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+36) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+37) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+38) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+39) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+40) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+41) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+42) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+43) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+44) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+45) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+46) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+47) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+48) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+49) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+50) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+51) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+52) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+53) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+54) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+55) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+56) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+57) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+58) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+59) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+60) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+61) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+62) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+63) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+64) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+65) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+66) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+67) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+68) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+69) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+70) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+71) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+72) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+73) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+74) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+75) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+76) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+77) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+77) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+78) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+78) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+79) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+79) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+80) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+80) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+81) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+81) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(18, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+21) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2700px) and (max-width: 2819px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(17, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+20) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+21) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+22) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+23) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+24) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+25) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+26) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+27) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+28) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+29) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+30) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+31) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+32) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+33) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+34) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+35) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+36) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+37) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+38) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+39) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+40) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+41) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+42) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+43) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+44) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+45) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+46) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+47) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+48) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+49) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+50) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+51) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+52) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+53) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+54) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+55) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+56) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+57) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+58) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+59) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+60) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+61) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+62) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+63) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+64) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+65) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+66) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+67) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+68) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+69) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+70) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+71) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+72) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+73) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+74) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+75) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+76) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+77) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+77) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+78) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+78) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+79) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+79) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+80) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+80) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(17, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+20) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2600px) and (max-width: 2699px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(16, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+19) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+20) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+21) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+22) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+23) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+24) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+25) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+26) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+27) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+28) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+29) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+30) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+31) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+32) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+33) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+34) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+35) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+36) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+37) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+38) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+39) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+40) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+41) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+42) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+43) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+44) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+45) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+46) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+47) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+48) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+49) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+50) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+51) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+52) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+53) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+54) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+55) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+56) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+57) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+58) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+59) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+60) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+61) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+62) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+63) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+64) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+65) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+66) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+67) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+68) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+69) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+70) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+71) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+72) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+73) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+74) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+75) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+76) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+77) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+77) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+78) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+78) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+79) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+79) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(16, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+19) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2500px) and (max-width: 2599px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(15, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+18) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+19) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+20) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+21) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+22) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+23) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+24) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+25) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+26) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+27) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+28) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+29) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+30) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+31) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+32) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+33) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+34) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+35) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+36) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+37) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+38) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+39) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+40) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+41) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+42) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+43) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+44) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+45) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+46) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+47) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+48) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+49) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+50) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+51) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+52) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+53) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+54) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+55) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+56) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+57) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+58) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+59) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+60) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+61) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+62) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+63) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+64) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+65) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+66) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+67) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+68) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+69) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+70) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+71) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+72) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+73) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+74) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+75) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+76) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+77) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+77) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+78) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+78) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(15, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+18) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2350px) and (max-width: 2499px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(14, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+17) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+18) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+19) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+20) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+21) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+22) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+23) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+24) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+25) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+26) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+27) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+28) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+29) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+30) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+31) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+32) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+33) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+34) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+35) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+36) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+37) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+38) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+39) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+40) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+41) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+42) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+43) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+44) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+45) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+46) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+47) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+48) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+49) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+50) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+51) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+52) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+53) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+54) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+55) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+56) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+57) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+58) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+59) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+60) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+61) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+62) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+63) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+64) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+65) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+66) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+67) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+68) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+69) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+70) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+71) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+72) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+73) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+74) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+75) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+76) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+77) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+77) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(14, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+17) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2250px) and (max-width: 2349px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(13, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+16) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+17) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+18) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+19) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+20) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+21) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+22) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+23) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+24) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+25) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+26) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+27) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+28) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+29) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+30) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+31) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+32) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+33) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+34) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+35) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+36) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+37) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+38) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+39) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+40) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+41) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+42) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+43) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+44) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+45) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+46) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+47) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+48) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+49) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+50) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+51) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+52) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+53) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+54) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+55) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+56) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+57) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+58) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+59) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+60) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+61) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+62) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+63) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+64) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+65) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+66) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+67) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+68) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+69) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+70) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+71) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+72) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+73) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+74) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+75) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+76) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+76) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(13, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+16) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2150px) and (max-width: 2249px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(12, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+15) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+16) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+17) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+18) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+19) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+20) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+21) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+22) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+23) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+24) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+25) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+26) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+27) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+28) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+29) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+30) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+31) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+32) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+33) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+34) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+35) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+36) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+37) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+38) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+39) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+40) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+41) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+42) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+43) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+44) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+45) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+46) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+47) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+48) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+49) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+50) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+51) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+52) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+53) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+54) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+55) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+56) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+57) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+58) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+59) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+60) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+61) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+62) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+63) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+64) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+65) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+66) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+67) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+68) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+69) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+70) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+71) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+72) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+73) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+74) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+75) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+75) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(12, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+15) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 2000px) and (max-width: 2149px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(11, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+14) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+15) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+16) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+17) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+18) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+19) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+20) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+21) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+22) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+23) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+24) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+25) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+26) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+27) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+28) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+29) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+30) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+31) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+32) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+33) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+34) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+35) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+36) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+37) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+38) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+39) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+40) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+41) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+42) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+43) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+44) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+45) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+46) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+47) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+48) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+49) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+50) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+51) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+52) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+53) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+54) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+55) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+56) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+57) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+58) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+59) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+60) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+61) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+62) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+63) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+64) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+65) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+66) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+67) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+68) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+69) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+70) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+71) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+72) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+73) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+74) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+74) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(11, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+14) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1901px) and (max-width: 1999px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(10, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+13) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+14) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+15) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+16) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+17) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+18) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+19) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+20) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+21) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+22) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+23) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+24) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+25) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+26) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+27) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+28) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+29) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+30) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+31) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+32) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+33) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+34) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+35) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+36) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+37) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+38) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+39) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+40) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+41) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+42) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+43) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+44) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+45) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+46) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+47) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+48) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+49) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+50) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+51) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+52) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+53) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+54) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+55) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+56) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+57) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+58) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+59) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+60) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+61) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+62) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+63) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+64) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+65) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+66) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+67) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+68) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+69) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+70) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+71) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+72) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+73) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+73) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(10, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+13) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1801px) and (max-width: 1900px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(9, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+12) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+13) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+14) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+15) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+16) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+17) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+18) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+19) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+20) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+21) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+22) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+23) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+24) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+25) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+26) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+27) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+28) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+29) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+30) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+31) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+32) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+33) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+34) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+35) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+36) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+37) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+38) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+39) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+40) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+41) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+42) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+43) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+44) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+45) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+46) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+47) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+48) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+49) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+50) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+51) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+52) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+53) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+54) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+55) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+56) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+57) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+58) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+59) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+60) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+61) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+62) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+63) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+64) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+65) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+66) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+67) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+68) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+69) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+70) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+71) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+72) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+72) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(9, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+12) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1701px) and (max-width: 1800px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(8, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+11) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+12) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+13) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+14) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+15) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+16) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+17) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+18) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+19) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+20) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+21) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+22) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+23) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+24) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+25) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+26) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+27) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+28) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+29) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+30) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+31) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+32) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+33) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+34) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+35) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+36) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+37) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+38) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+39) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+40) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+41) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+42) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+43) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+44) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+45) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+46) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+47) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+48) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+49) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+50) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+51) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+52) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+53) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+54) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+55) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+56) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+57) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+58) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+59) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+60) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+61) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+62) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+63) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+64) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+65) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+66) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+67) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+68) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+69) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+70) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+71) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+71) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(8, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+11) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1601px) and (max-width: 1700px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(7, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+10) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+11) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+12) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+13) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+14) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+15) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+16) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+17) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+18) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+19) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+20) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+21) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+22) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+23) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+24) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+25) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+26) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+27) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+28) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+29) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+30) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+31) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+32) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+33) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+34) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+35) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+36) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+37) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+38) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+39) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+40) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+41) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+42) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+43) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+44) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+45) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+46) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+47) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+48) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+49) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+50) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+51) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+52) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+53) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+54) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+55) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+56) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+57) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+58) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+59) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+60) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+61) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+62) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+63) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+64) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+65) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+66) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+67) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+68) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+69) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+70) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+70) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(7, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n+10) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1501px) and (max-width: 1600px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(6, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+9) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(6, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+9) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+10) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+11) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+12) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+13) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+14) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+15) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+16) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+17) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+18) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+19) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+20) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+21) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+22) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+23) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+24) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+25) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+26) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+27) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+28) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+29) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+30) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+31) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+32) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+33) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+34) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+35) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+36) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+37) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+38) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+39) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+40) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+41) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+42) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+43) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+44) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+45) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+46) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+47) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+48) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+49) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+50) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+51) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+52) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+53) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+54) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+55) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+56) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+57) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+58) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+59) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+60) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+61) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+62) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+63) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+64) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+65) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+66) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+67) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+68) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+69) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+69) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1500px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(5, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+8) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+9) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+9) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+10) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+11) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+12) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+13) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+14) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+15) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+16) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+17) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+18) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+19) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+20) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+21) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+22) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+23) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+24) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+25) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+26) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+27) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+28) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+29) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+30) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+31) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+32) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+33) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+34) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+35) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+36) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+37) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+38) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+39) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+40) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+41) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+42) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+43) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+44) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+45) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+46) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+47) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+48) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+49) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+50) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+51) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+52) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+53) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+54) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+55) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+56) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+57) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+58) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+59) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+60) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+61) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+62) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+63) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+64) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+65) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+66) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+67) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+68) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+68) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(5, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+8) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1301px) and (max-width: 1400px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(4, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+7) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+8) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+8) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+9) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+9) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+10) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+11) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+12) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+13) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+14) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+15) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+16) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+17) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+18) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+19) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+20) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+21) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+22) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+23) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+24) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+25) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+26) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+27) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+28) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+29) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+30) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+31) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+32) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+33) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+34) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+35) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+36) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+37) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+38) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+39) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+40) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+41) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+42) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+43) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+44) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+45) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+46) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+47) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+48) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+49) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+50) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+51) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+52) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+53) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+54) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+55) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+56) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+57) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+58) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+59) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+60) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+61) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+62) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+63) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+64) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+65) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+66) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+67) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+67) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(4, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+7) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1300px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(3, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+6) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(3, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+6) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+7) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+7) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+8) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+8) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+9) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+9) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+10) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+11) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+12) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+13) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+14) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+15) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+16) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+17) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+18) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+19) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+20) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+21) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+22) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+23) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+24) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+25) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+26) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+27) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+28) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+29) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+30) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+31) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+32) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+33) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+34) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+35) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+36) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+37) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+38) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+39) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+40) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+41) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+42) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+43) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+44) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+45) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+46) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+47) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+48) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+49) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+50) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+51) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+52) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+53) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+54) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+55) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+56) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+57) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+58) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+59) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+60) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+61) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+62) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+63) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+64) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+65) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+66) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+66) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(2, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+5) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(2, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+5) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+6) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+6) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+7) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+7) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+8) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+8) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+9) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+9) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+10) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+11) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+12) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+13) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+14) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+15) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+16) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+17) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+18) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+19) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+20) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+21) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+22) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+23) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+24) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+25) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+26) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+27) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+28) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+29) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+30) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+31) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+32) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+33) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+34) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+35) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+36) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+37) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+38) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+39) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+40) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+41) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+42) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+43) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+44) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+45) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+46) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+47) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+48) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+49) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+50) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+51) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+52) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+53) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+54) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+55) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+56) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+57) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+58) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+59) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+60) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+61) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+62) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+63) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+64) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+65) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+65) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
}
@media screen and (min-width: 551px) and (max-width: 1000px) {
  .plan_man-calender {
    grid-template-columns: 120px 210px repeat(1, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+4) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-item {
    grid-template-columns: 120px 210px repeat(1, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+4) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-calender-prev {
    display: flex !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
  .override-1 div:nth-child(n+2) {
    display: flex;
  }
  .override-1 div:nth-child(n+5) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+5) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-2 div:nth-child(n+2) {
    display: flex;
  }
  .override-2 div:nth-child(n+6) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+6) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-3 div:nth-child(n+2) {
    display: flex;
  }
  .override-3 div:nth-child(n+7) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+7) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-4 div:nth-child(n+2) {
    display: flex;
  }
  .override-4 div:nth-child(n+8) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+8) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-5 div:nth-child(n+2) {
    display: flex;
  }
  .override-5 div:nth-child(n+9) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+9) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-6 div:nth-child(n+2) {
    display: flex;
  }
  .override-6 div:nth-child(n+10) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-7 div:nth-child(n+2) {
    display: flex;
  }
  .override-7 div:nth-child(n+11) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-8 div:nth-child(n+2) {
    display: flex;
  }
  .override-8 div:nth-child(n+12) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-9 div:nth-child(n+2) {
    display: flex;
  }
  .override-9 div:nth-child(n+13) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-10 div:nth-child(n+2) {
    display: flex;
  }
  .override-10 div:nth-child(n+14) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-11 div:nth-child(n+2) {
    display: flex;
  }
  .override-11 div:nth-child(n+15) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-12 div:nth-child(n+2) {
    display: flex;
  }
  .override-12 div:nth-child(n+16) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-13 div:nth-child(n+2) {
    display: flex;
  }
  .override-13 div:nth-child(n+17) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-14 div:nth-child(n+2) {
    display: flex;
  }
  .override-14 div:nth-child(n+18) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-15 div:nth-child(n+2) {
    display: flex;
  }
  .override-15 div:nth-child(n+19) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-16 div:nth-child(n+2) {
    display: flex;
  }
  .override-16 div:nth-child(n+20) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-17 div:nth-child(n+2) {
    display: flex;
  }
  .override-17 div:nth-child(n+21) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-18 div:nth-child(n+2) {
    display: flex;
  }
  .override-18 div:nth-child(n+22) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-19 div:nth-child(n+2) {
    display: flex;
  }
  .override-19 div:nth-child(n+23) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-20 div:nth-child(n+2) {
    display: flex;
  }
  .override-20 div:nth-child(n+24) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-21 div:nth-child(n+2) {
    display: flex;
  }
  .override-21 div:nth-child(n+25) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-22 div:nth-child(n+2) {
    display: flex;
  }
  .override-22 div:nth-child(n+26) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-23 div:nth-child(n+2) {
    display: flex;
  }
  .override-23 div:nth-child(n+27) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-24 div:nth-child(n+2) {
    display: flex;
  }
  .override-24 div:nth-child(n+28) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-25 div:nth-child(n+2) {
    display: flex;
  }
  .override-25 div:nth-child(n+29) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-26 div:nth-child(n+2) {
    display: flex;
  }
  .override-26 div:nth-child(n+30) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-27 div:nth-child(n+2) {
    display: flex;
  }
  .override-27 div:nth-child(n+31) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-28 div:nth-child(n+2) {
    display: flex;
  }
  .override-28 div:nth-child(n+32) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-29 div:nth-child(n+2) {
    display: flex;
  }
  .override-29 div:nth-child(n+33) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-30 div:nth-child(n+2) {
    display: flex;
  }
  .override-30 div:nth-child(n+34) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-31 div:nth-child(n+2) {
    display: flex;
  }
  .override-31 div:nth-child(n+35) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-32 div:nth-child(n+2) {
    display: flex;
  }
  .override-32 div:nth-child(n+36) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-33 div:nth-child(n+2) {
    display: flex;
  }
  .override-33 div:nth-child(n+37) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-34 div:nth-child(n+2) {
    display: flex;
  }
  .override-34 div:nth-child(n+38) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-35 div:nth-child(n+2) {
    display: flex;
  }
  .override-35 div:nth-child(n+39) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-36 div:nth-child(n+2) {
    display: flex;
  }
  .override-36 div:nth-child(n+40) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-37 div:nth-child(n+2) {
    display: flex;
  }
  .override-37 div:nth-child(n+41) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-38 div:nth-child(n+2) {
    display: flex;
  }
  .override-38 div:nth-child(n+42) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-39 div:nth-child(n+2) {
    display: flex;
  }
  .override-39 div:nth-child(n+43) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-40 div:nth-child(n+2) {
    display: flex;
  }
  .override-40 div:nth-child(n+44) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-41 div:nth-child(n+2) {
    display: flex;
  }
  .override-41 div:nth-child(n+45) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-42 div:nth-child(n+2) {
    display: flex;
  }
  .override-42 div:nth-child(n+46) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-43 div:nth-child(n+2) {
    display: flex;
  }
  .override-43 div:nth-child(n+47) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-44 div:nth-child(n+2) {
    display: flex;
  }
  .override-44 div:nth-child(n+48) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-45 div:nth-child(n+2) {
    display: flex;
  }
  .override-45 div:nth-child(n+49) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-46 div:nth-child(n+2) {
    display: flex;
  }
  .override-46 div:nth-child(n+50) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-47 div:nth-child(n+2) {
    display: flex;
  }
  .override-47 div:nth-child(n+51) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-48 div:nth-child(n+2) {
    display: flex;
  }
  .override-48 div:nth-child(n+52) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-49 div:nth-child(n+2) {
    display: flex;
  }
  .override-49 div:nth-child(n+53) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-50 div:nth-child(n+2) {
    display: flex;
  }
  .override-50 div:nth-child(n+54) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-51 div:nth-child(n+2) {
    display: flex;
  }
  .override-51 div:nth-child(n+55) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-52 div:nth-child(n+2) {
    display: flex;
  }
  .override-52 div:nth-child(n+56) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-53 div:nth-child(n+2) {
    display: flex;
  }
  .override-53 div:nth-child(n+57) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-54 div:nth-child(n+2) {
    display: flex;
  }
  .override-54 div:nth-child(n+58) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-55 div:nth-child(n+2) {
    display: flex;
  }
  .override-55 div:nth-child(n+59) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-56 div:nth-child(n+2) {
    display: flex;
  }
  .override-56 div:nth-child(n+60) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-57 div:nth-child(n+2) {
    display: flex;
  }
  .override-57 div:nth-child(n+61) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-58 div:nth-child(n+2) {
    display: flex;
  }
  .override-58 div:nth-child(n+62) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-59 div:nth-child(n+2) {
    display: flex;
  }
  .override-59 div:nth-child(n+63) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(2) {
    display: flex;
  }
  .override-60 div:nth-child(n+2) {
    display: flex;
  }
  .override-60 div:nth-child(n+64) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(2) {
    display: flex;
  }
}
@media screen and (max-width: 700px) {
  .plan_man-calender {
    grid-template-columns: 200px repeat(1, 1fr) 60px !important;
  }
  .plan_man-calender div:nth-child(n+4) {
    display: none;
  }
  .plan_man-calender div:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-item {
    grid-template-columns: 200px repeat(1, 1fr) 60px !important;
  }
  .plan_man-item p:nth-child(n) {
    display: flex;
  }
  .plan_man-item p:nth-child(n+4) {
    display: none;
  }
  .plan_man-item p:nth-child(2) {
    display: none;
  }
  .plan_man-item p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .plan_man-employee-title {
    border-right: 1px solid var(--main-border) !important;
  }
  .plan_man-calender-prev {
    display: flex !important;
    left: 175px !important;
  }
  .plan_man-calender-next {
    display: flex !important;
  }
  .plan_man-placeholder {
    display: none;
  }
  .plan_first_row_emp {
    left: 0 !important;
    top: -40px !important;
    height: 40px !important;
  }
  .plan_second_row_emp {
    left: -300px !important;
    border-radius: 0 !important;
    height: 40px !important;
    top: 0px !important;
  }
  .emp_row {
    margin-top: 100px;
  }
  .override-1 div:nth-child(n+3) {
    display: flex;
  }
  .override-1 div:nth-child(n+5) {
    display: none;
  }
  .override-1 div:nth-child(-n+3) {
    display: none;
  }
  .override-1 div:first-child {
    display: flex;
  }
  .override-1 div div:nth-child(2) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-1 div:first-child p:nth-child(n+5) {
    display: none;
  }
  .override_content-1 div:first-child p:nth-child(-n+3) {
    display: none;
  }
  .override_content-1 div:first-child p:first-child {
    display: flex;
  }
  .override-2 div:nth-child(n+3) {
    display: flex;
  }
  .override-2 div:nth-child(n+6) {
    display: none;
  }
  .override-2 div:nth-child(-n+4) {
    display: none;
  }
  .override-2 div:first-child {
    display: flex;
  }
  .override-2 div div:nth-child(2) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-2 div:first-child p:nth-child(n+6) {
    display: none;
  }
  .override_content-2 div:first-child p:nth-child(-n+4) {
    display: none;
  }
  .override_content-2 div:first-child p:first-child {
    display: flex;
  }
  .override-3 div:nth-child(n+3) {
    display: flex;
  }
  .override-3 div:nth-child(n+7) {
    display: none;
  }
  .override-3 div:nth-child(-n+5) {
    display: none;
  }
  .override-3 div:first-child {
    display: flex;
  }
  .override-3 div div:nth-child(2) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-3 div:first-child p:nth-child(n+7) {
    display: none;
  }
  .override_content-3 div:first-child p:nth-child(-n+5) {
    display: none;
  }
  .override_content-3 div:first-child p:first-child {
    display: flex;
  }
  .override-4 div:nth-child(n+3) {
    display: flex;
  }
  .override-4 div:nth-child(n+8) {
    display: none;
  }
  .override-4 div:nth-child(-n+6) {
    display: none;
  }
  .override-4 div:first-child {
    display: flex;
  }
  .override-4 div div:nth-child(2) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-4 div:first-child p:nth-child(n+8) {
    display: none;
  }
  .override_content-4 div:first-child p:nth-child(-n+6) {
    display: none;
  }
  .override_content-4 div:first-child p:first-child {
    display: flex;
  }
  .override-5 div:nth-child(n+3) {
    display: flex;
  }
  .override-5 div:nth-child(n+9) {
    display: none;
  }
  .override-5 div:nth-child(-n+7) {
    display: none;
  }
  .override-5 div:first-child {
    display: flex;
  }
  .override-5 div div:nth-child(2) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-5 div:first-child p:nth-child(n+9) {
    display: none;
  }
  .override_content-5 div:first-child p:nth-child(-n+7) {
    display: none;
  }
  .override_content-5 div:first-child p:first-child {
    display: flex;
  }
  .override-6 div:nth-child(n+3) {
    display: flex;
  }
  .override-6 div:nth-child(n+10) {
    display: none;
  }
  .override-6 div:nth-child(-n+8) {
    display: none;
  }
  .override-6 div:first-child {
    display: flex;
  }
  .override-6 div div:nth-child(2) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-6 div:first-child p:nth-child(n+10) {
    display: none;
  }
  .override_content-6 div:first-child p:nth-child(-n+8) {
    display: none;
  }
  .override_content-6 div:first-child p:first-child {
    display: flex;
  }
  .override-7 div:nth-child(n+3) {
    display: flex;
  }
  .override-7 div:nth-child(n+11) {
    display: none;
  }
  .override-7 div:nth-child(-n+9) {
    display: none;
  }
  .override-7 div:first-child {
    display: flex;
  }
  .override-7 div div:nth-child(2) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-7 div:first-child p:nth-child(n+11) {
    display: none;
  }
  .override_content-7 div:first-child p:nth-child(-n+9) {
    display: none;
  }
  .override_content-7 div:first-child p:first-child {
    display: flex;
  }
  .override-8 div:nth-child(n+3) {
    display: flex;
  }
  .override-8 div:nth-child(n+12) {
    display: none;
  }
  .override-8 div:nth-child(-n+10) {
    display: none;
  }
  .override-8 div:first-child {
    display: flex;
  }
  .override-8 div div:nth-child(2) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-8 div:first-child p:nth-child(n+12) {
    display: none;
  }
  .override_content-8 div:first-child p:nth-child(-n+10) {
    display: none;
  }
  .override_content-8 div:first-child p:first-child {
    display: flex;
  }
  .override-9 div:nth-child(n+3) {
    display: flex;
  }
  .override-9 div:nth-child(n+13) {
    display: none;
  }
  .override-9 div:nth-child(-n+11) {
    display: none;
  }
  .override-9 div:first-child {
    display: flex;
  }
  .override-9 div div:nth-child(2) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-9 div:first-child p:nth-child(n+13) {
    display: none;
  }
  .override_content-9 div:first-child p:nth-child(-n+11) {
    display: none;
  }
  .override_content-9 div:first-child p:first-child {
    display: flex;
  }
  .override-10 div:nth-child(n+3) {
    display: flex;
  }
  .override-10 div:nth-child(n+14) {
    display: none;
  }
  .override-10 div:nth-child(-n+12) {
    display: none;
  }
  .override-10 div:first-child {
    display: flex;
  }
  .override-10 div div:nth-child(2) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-10 div:first-child p:nth-child(n+14) {
    display: none;
  }
  .override_content-10 div:first-child p:nth-child(-n+12) {
    display: none;
  }
  .override_content-10 div:first-child p:first-child {
    display: flex;
  }
  .override-11 div:nth-child(n+3) {
    display: flex;
  }
  .override-11 div:nth-child(n+15) {
    display: none;
  }
  .override-11 div:nth-child(-n+13) {
    display: none;
  }
  .override-11 div:first-child {
    display: flex;
  }
  .override-11 div div:nth-child(2) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-11 div:first-child p:nth-child(n+15) {
    display: none;
  }
  .override_content-11 div:first-child p:nth-child(-n+13) {
    display: none;
  }
  .override_content-11 div:first-child p:first-child {
    display: flex;
  }
  .override-12 div:nth-child(n+3) {
    display: flex;
  }
  .override-12 div:nth-child(n+16) {
    display: none;
  }
  .override-12 div:nth-child(-n+14) {
    display: none;
  }
  .override-12 div:first-child {
    display: flex;
  }
  .override-12 div div:nth-child(2) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-12 div:first-child p:nth-child(n+16) {
    display: none;
  }
  .override_content-12 div:first-child p:nth-child(-n+14) {
    display: none;
  }
  .override_content-12 div:first-child p:first-child {
    display: flex;
  }
  .override-13 div:nth-child(n+3) {
    display: flex;
  }
  .override-13 div:nth-child(n+17) {
    display: none;
  }
  .override-13 div:nth-child(-n+15) {
    display: none;
  }
  .override-13 div:first-child {
    display: flex;
  }
  .override-13 div div:nth-child(2) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-13 div:first-child p:nth-child(n+17) {
    display: none;
  }
  .override_content-13 div:first-child p:nth-child(-n+15) {
    display: none;
  }
  .override_content-13 div:first-child p:first-child {
    display: flex;
  }
  .override-14 div:nth-child(n+3) {
    display: flex;
  }
  .override-14 div:nth-child(n+18) {
    display: none;
  }
  .override-14 div:nth-child(-n+16) {
    display: none;
  }
  .override-14 div:first-child {
    display: flex;
  }
  .override-14 div div:nth-child(2) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-14 div:first-child p:nth-child(n+18) {
    display: none;
  }
  .override_content-14 div:first-child p:nth-child(-n+16) {
    display: none;
  }
  .override_content-14 div:first-child p:first-child {
    display: flex;
  }
  .override-15 div:nth-child(n+3) {
    display: flex;
  }
  .override-15 div:nth-child(n+19) {
    display: none;
  }
  .override-15 div:nth-child(-n+17) {
    display: none;
  }
  .override-15 div:first-child {
    display: flex;
  }
  .override-15 div div:nth-child(2) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-15 div:first-child p:nth-child(n+19) {
    display: none;
  }
  .override_content-15 div:first-child p:nth-child(-n+17) {
    display: none;
  }
  .override_content-15 div:first-child p:first-child {
    display: flex;
  }
  .override-16 div:nth-child(n+3) {
    display: flex;
  }
  .override-16 div:nth-child(n+20) {
    display: none;
  }
  .override-16 div:nth-child(-n+18) {
    display: none;
  }
  .override-16 div:first-child {
    display: flex;
  }
  .override-16 div div:nth-child(2) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-16 div:first-child p:nth-child(n+20) {
    display: none;
  }
  .override_content-16 div:first-child p:nth-child(-n+18) {
    display: none;
  }
  .override_content-16 div:first-child p:first-child {
    display: flex;
  }
  .override-17 div:nth-child(n+3) {
    display: flex;
  }
  .override-17 div:nth-child(n+21) {
    display: none;
  }
  .override-17 div:nth-child(-n+19) {
    display: none;
  }
  .override-17 div:first-child {
    display: flex;
  }
  .override-17 div div:nth-child(2) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-17 div:first-child p:nth-child(n+21) {
    display: none;
  }
  .override_content-17 div:first-child p:nth-child(-n+19) {
    display: none;
  }
  .override_content-17 div:first-child p:first-child {
    display: flex;
  }
  .override-18 div:nth-child(n+3) {
    display: flex;
  }
  .override-18 div:nth-child(n+22) {
    display: none;
  }
  .override-18 div:nth-child(-n+20) {
    display: none;
  }
  .override-18 div:first-child {
    display: flex;
  }
  .override-18 div div:nth-child(2) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-18 div:first-child p:nth-child(n+22) {
    display: none;
  }
  .override_content-18 div:first-child p:nth-child(-n+20) {
    display: none;
  }
  .override_content-18 div:first-child p:first-child {
    display: flex;
  }
  .override-19 div:nth-child(n+3) {
    display: flex;
  }
  .override-19 div:nth-child(n+23) {
    display: none;
  }
  .override-19 div:nth-child(-n+21) {
    display: none;
  }
  .override-19 div:first-child {
    display: flex;
  }
  .override-19 div div:nth-child(2) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-19 div:first-child p:nth-child(n+23) {
    display: none;
  }
  .override_content-19 div:first-child p:nth-child(-n+21) {
    display: none;
  }
  .override_content-19 div:first-child p:first-child {
    display: flex;
  }
  .override-20 div:nth-child(n+3) {
    display: flex;
  }
  .override-20 div:nth-child(n+24) {
    display: none;
  }
  .override-20 div:nth-child(-n+22) {
    display: none;
  }
  .override-20 div:first-child {
    display: flex;
  }
  .override-20 div div:nth-child(2) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-20 div:first-child p:nth-child(n+24) {
    display: none;
  }
  .override_content-20 div:first-child p:nth-child(-n+22) {
    display: none;
  }
  .override_content-20 div:first-child p:first-child {
    display: flex;
  }
  .override-21 div:nth-child(n+3) {
    display: flex;
  }
  .override-21 div:nth-child(n+25) {
    display: none;
  }
  .override-21 div:nth-child(-n+23) {
    display: none;
  }
  .override-21 div:first-child {
    display: flex;
  }
  .override-21 div div:nth-child(2) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-21 div:first-child p:nth-child(n+25) {
    display: none;
  }
  .override_content-21 div:first-child p:nth-child(-n+23) {
    display: none;
  }
  .override_content-21 div:first-child p:first-child {
    display: flex;
  }
  .override-22 div:nth-child(n+3) {
    display: flex;
  }
  .override-22 div:nth-child(n+26) {
    display: none;
  }
  .override-22 div:nth-child(-n+24) {
    display: none;
  }
  .override-22 div:first-child {
    display: flex;
  }
  .override-22 div div:nth-child(2) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-22 div:first-child p:nth-child(n+26) {
    display: none;
  }
  .override_content-22 div:first-child p:nth-child(-n+24) {
    display: none;
  }
  .override_content-22 div:first-child p:first-child {
    display: flex;
  }
  .override-23 div:nth-child(n+3) {
    display: flex;
  }
  .override-23 div:nth-child(n+27) {
    display: none;
  }
  .override-23 div:nth-child(-n+25) {
    display: none;
  }
  .override-23 div:first-child {
    display: flex;
  }
  .override-23 div div:nth-child(2) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-23 div:first-child p:nth-child(n+27) {
    display: none;
  }
  .override_content-23 div:first-child p:nth-child(-n+25) {
    display: none;
  }
  .override_content-23 div:first-child p:first-child {
    display: flex;
  }
  .override-24 div:nth-child(n+3) {
    display: flex;
  }
  .override-24 div:nth-child(n+28) {
    display: none;
  }
  .override-24 div:nth-child(-n+26) {
    display: none;
  }
  .override-24 div:first-child {
    display: flex;
  }
  .override-24 div div:nth-child(2) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-24 div:first-child p:nth-child(n+28) {
    display: none;
  }
  .override_content-24 div:first-child p:nth-child(-n+26) {
    display: none;
  }
  .override_content-24 div:first-child p:first-child {
    display: flex;
  }
  .override-25 div:nth-child(n+3) {
    display: flex;
  }
  .override-25 div:nth-child(n+29) {
    display: none;
  }
  .override-25 div:nth-child(-n+27) {
    display: none;
  }
  .override-25 div:first-child {
    display: flex;
  }
  .override-25 div div:nth-child(2) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-25 div:first-child p:nth-child(n+29) {
    display: none;
  }
  .override_content-25 div:first-child p:nth-child(-n+27) {
    display: none;
  }
  .override_content-25 div:first-child p:first-child {
    display: flex;
  }
  .override-26 div:nth-child(n+3) {
    display: flex;
  }
  .override-26 div:nth-child(n+30) {
    display: none;
  }
  .override-26 div:nth-child(-n+28) {
    display: none;
  }
  .override-26 div:first-child {
    display: flex;
  }
  .override-26 div div:nth-child(2) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-26 div:first-child p:nth-child(n+30) {
    display: none;
  }
  .override_content-26 div:first-child p:nth-child(-n+28) {
    display: none;
  }
  .override_content-26 div:first-child p:first-child {
    display: flex;
  }
  .override-27 div:nth-child(n+3) {
    display: flex;
  }
  .override-27 div:nth-child(n+31) {
    display: none;
  }
  .override-27 div:nth-child(-n+29) {
    display: none;
  }
  .override-27 div:first-child {
    display: flex;
  }
  .override-27 div div:nth-child(2) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-27 div:first-child p:nth-child(n+31) {
    display: none;
  }
  .override_content-27 div:first-child p:nth-child(-n+29) {
    display: none;
  }
  .override_content-27 div:first-child p:first-child {
    display: flex;
  }
  .override-28 div:nth-child(n+3) {
    display: flex;
  }
  .override-28 div:nth-child(n+32) {
    display: none;
  }
  .override-28 div:nth-child(-n+30) {
    display: none;
  }
  .override-28 div:first-child {
    display: flex;
  }
  .override-28 div div:nth-child(2) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-28 div:first-child p:nth-child(n+32) {
    display: none;
  }
  .override_content-28 div:first-child p:nth-child(-n+30) {
    display: none;
  }
  .override_content-28 div:first-child p:first-child {
    display: flex;
  }
  .override-29 div:nth-child(n+3) {
    display: flex;
  }
  .override-29 div:nth-child(n+33) {
    display: none;
  }
  .override-29 div:nth-child(-n+31) {
    display: none;
  }
  .override-29 div:first-child {
    display: flex;
  }
  .override-29 div div:nth-child(2) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-29 div:first-child p:nth-child(n+33) {
    display: none;
  }
  .override_content-29 div:first-child p:nth-child(-n+31) {
    display: none;
  }
  .override_content-29 div:first-child p:first-child {
    display: flex;
  }
  .override-30 div:nth-child(n+3) {
    display: flex;
  }
  .override-30 div:nth-child(n+34) {
    display: none;
  }
  .override-30 div:nth-child(-n+32) {
    display: none;
  }
  .override-30 div:first-child {
    display: flex;
  }
  .override-30 div div:nth-child(2) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-30 div:first-child p:nth-child(n+34) {
    display: none;
  }
  .override_content-30 div:first-child p:nth-child(-n+32) {
    display: none;
  }
  .override_content-30 div:first-child p:first-child {
    display: flex;
  }
  .override-31 div:nth-child(n+3) {
    display: flex;
  }
  .override-31 div:nth-child(n+35) {
    display: none;
  }
  .override-31 div:nth-child(-n+33) {
    display: none;
  }
  .override-31 div:first-child {
    display: flex;
  }
  .override-31 div div:nth-child(2) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-31 div:first-child p:nth-child(n+35) {
    display: none;
  }
  .override_content-31 div:first-child p:nth-child(-n+33) {
    display: none;
  }
  .override_content-31 div:first-child p:first-child {
    display: flex;
  }
  .override-32 div:nth-child(n+3) {
    display: flex;
  }
  .override-32 div:nth-child(n+36) {
    display: none;
  }
  .override-32 div:nth-child(-n+34) {
    display: none;
  }
  .override-32 div:first-child {
    display: flex;
  }
  .override-32 div div:nth-child(2) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-32 div:first-child p:nth-child(n+36) {
    display: none;
  }
  .override_content-32 div:first-child p:nth-child(-n+34) {
    display: none;
  }
  .override_content-32 div:first-child p:first-child {
    display: flex;
  }
  .override-33 div:nth-child(n+3) {
    display: flex;
  }
  .override-33 div:nth-child(n+37) {
    display: none;
  }
  .override-33 div:nth-child(-n+35) {
    display: none;
  }
  .override-33 div:first-child {
    display: flex;
  }
  .override-33 div div:nth-child(2) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-33 div:first-child p:nth-child(n+37) {
    display: none;
  }
  .override_content-33 div:first-child p:nth-child(-n+35) {
    display: none;
  }
  .override_content-33 div:first-child p:first-child {
    display: flex;
  }
  .override-34 div:nth-child(n+3) {
    display: flex;
  }
  .override-34 div:nth-child(n+38) {
    display: none;
  }
  .override-34 div:nth-child(-n+36) {
    display: none;
  }
  .override-34 div:first-child {
    display: flex;
  }
  .override-34 div div:nth-child(2) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-34 div:first-child p:nth-child(n+38) {
    display: none;
  }
  .override_content-34 div:first-child p:nth-child(-n+36) {
    display: none;
  }
  .override_content-34 div:first-child p:first-child {
    display: flex;
  }
  .override-35 div:nth-child(n+3) {
    display: flex;
  }
  .override-35 div:nth-child(n+39) {
    display: none;
  }
  .override-35 div:nth-child(-n+37) {
    display: none;
  }
  .override-35 div:first-child {
    display: flex;
  }
  .override-35 div div:nth-child(2) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-35 div:first-child p:nth-child(n+39) {
    display: none;
  }
  .override_content-35 div:first-child p:nth-child(-n+37) {
    display: none;
  }
  .override_content-35 div:first-child p:first-child {
    display: flex;
  }
  .override-36 div:nth-child(n+3) {
    display: flex;
  }
  .override-36 div:nth-child(n+40) {
    display: none;
  }
  .override-36 div:nth-child(-n+38) {
    display: none;
  }
  .override-36 div:first-child {
    display: flex;
  }
  .override-36 div div:nth-child(2) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-36 div:first-child p:nth-child(n+40) {
    display: none;
  }
  .override_content-36 div:first-child p:nth-child(-n+38) {
    display: none;
  }
  .override_content-36 div:first-child p:first-child {
    display: flex;
  }
  .override-37 div:nth-child(n+3) {
    display: flex;
  }
  .override-37 div:nth-child(n+41) {
    display: none;
  }
  .override-37 div:nth-child(-n+39) {
    display: none;
  }
  .override-37 div:first-child {
    display: flex;
  }
  .override-37 div div:nth-child(2) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-37 div:first-child p:nth-child(n+41) {
    display: none;
  }
  .override_content-37 div:first-child p:nth-child(-n+39) {
    display: none;
  }
  .override_content-37 div:first-child p:first-child {
    display: flex;
  }
  .override-38 div:nth-child(n+3) {
    display: flex;
  }
  .override-38 div:nth-child(n+42) {
    display: none;
  }
  .override-38 div:nth-child(-n+40) {
    display: none;
  }
  .override-38 div:first-child {
    display: flex;
  }
  .override-38 div div:nth-child(2) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-38 div:first-child p:nth-child(n+42) {
    display: none;
  }
  .override_content-38 div:first-child p:nth-child(-n+40) {
    display: none;
  }
  .override_content-38 div:first-child p:first-child {
    display: flex;
  }
  .override-39 div:nth-child(n+3) {
    display: flex;
  }
  .override-39 div:nth-child(n+43) {
    display: none;
  }
  .override-39 div:nth-child(-n+41) {
    display: none;
  }
  .override-39 div:first-child {
    display: flex;
  }
  .override-39 div div:nth-child(2) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-39 div:first-child p:nth-child(n+43) {
    display: none;
  }
  .override_content-39 div:first-child p:nth-child(-n+41) {
    display: none;
  }
  .override_content-39 div:first-child p:first-child {
    display: flex;
  }
  .override-40 div:nth-child(n+3) {
    display: flex;
  }
  .override-40 div:nth-child(n+44) {
    display: none;
  }
  .override-40 div:nth-child(-n+42) {
    display: none;
  }
  .override-40 div:first-child {
    display: flex;
  }
  .override-40 div div:nth-child(2) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-40 div:first-child p:nth-child(n+44) {
    display: none;
  }
  .override_content-40 div:first-child p:nth-child(-n+42) {
    display: none;
  }
  .override_content-40 div:first-child p:first-child {
    display: flex;
  }
  .override-41 div:nth-child(n+3) {
    display: flex;
  }
  .override-41 div:nth-child(n+45) {
    display: none;
  }
  .override-41 div:nth-child(-n+43) {
    display: none;
  }
  .override-41 div:first-child {
    display: flex;
  }
  .override-41 div div:nth-child(2) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-41 div:first-child p:nth-child(n+45) {
    display: none;
  }
  .override_content-41 div:first-child p:nth-child(-n+43) {
    display: none;
  }
  .override_content-41 div:first-child p:first-child {
    display: flex;
  }
  .override-42 div:nth-child(n+3) {
    display: flex;
  }
  .override-42 div:nth-child(n+46) {
    display: none;
  }
  .override-42 div:nth-child(-n+44) {
    display: none;
  }
  .override-42 div:first-child {
    display: flex;
  }
  .override-42 div div:nth-child(2) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-42 div:first-child p:nth-child(n+46) {
    display: none;
  }
  .override_content-42 div:first-child p:nth-child(-n+44) {
    display: none;
  }
  .override_content-42 div:first-child p:first-child {
    display: flex;
  }
  .override-43 div:nth-child(n+3) {
    display: flex;
  }
  .override-43 div:nth-child(n+47) {
    display: none;
  }
  .override-43 div:nth-child(-n+45) {
    display: none;
  }
  .override-43 div:first-child {
    display: flex;
  }
  .override-43 div div:nth-child(2) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-43 div:first-child p:nth-child(n+47) {
    display: none;
  }
  .override_content-43 div:first-child p:nth-child(-n+45) {
    display: none;
  }
  .override_content-43 div:first-child p:first-child {
    display: flex;
  }
  .override-44 div:nth-child(n+3) {
    display: flex;
  }
  .override-44 div:nth-child(n+48) {
    display: none;
  }
  .override-44 div:nth-child(-n+46) {
    display: none;
  }
  .override-44 div:first-child {
    display: flex;
  }
  .override-44 div div:nth-child(2) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-44 div:first-child p:nth-child(n+48) {
    display: none;
  }
  .override_content-44 div:first-child p:nth-child(-n+46) {
    display: none;
  }
  .override_content-44 div:first-child p:first-child {
    display: flex;
  }
  .override-45 div:nth-child(n+3) {
    display: flex;
  }
  .override-45 div:nth-child(n+49) {
    display: none;
  }
  .override-45 div:nth-child(-n+47) {
    display: none;
  }
  .override-45 div:first-child {
    display: flex;
  }
  .override-45 div div:nth-child(2) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-45 div:first-child p:nth-child(n+49) {
    display: none;
  }
  .override_content-45 div:first-child p:nth-child(-n+47) {
    display: none;
  }
  .override_content-45 div:first-child p:first-child {
    display: flex;
  }
  .override-46 div:nth-child(n+3) {
    display: flex;
  }
  .override-46 div:nth-child(n+50) {
    display: none;
  }
  .override-46 div:nth-child(-n+48) {
    display: none;
  }
  .override-46 div:first-child {
    display: flex;
  }
  .override-46 div div:nth-child(2) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-46 div:first-child p:nth-child(n+50) {
    display: none;
  }
  .override_content-46 div:first-child p:nth-child(-n+48) {
    display: none;
  }
  .override_content-46 div:first-child p:first-child {
    display: flex;
  }
  .override-47 div:nth-child(n+3) {
    display: flex;
  }
  .override-47 div:nth-child(n+51) {
    display: none;
  }
  .override-47 div:nth-child(-n+49) {
    display: none;
  }
  .override-47 div:first-child {
    display: flex;
  }
  .override-47 div div:nth-child(2) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-47 div:first-child p:nth-child(n+51) {
    display: none;
  }
  .override_content-47 div:first-child p:nth-child(-n+49) {
    display: none;
  }
  .override_content-47 div:first-child p:first-child {
    display: flex;
  }
  .override-48 div:nth-child(n+3) {
    display: flex;
  }
  .override-48 div:nth-child(n+52) {
    display: none;
  }
  .override-48 div:nth-child(-n+50) {
    display: none;
  }
  .override-48 div:first-child {
    display: flex;
  }
  .override-48 div div:nth-child(2) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-48 div:first-child p:nth-child(n+52) {
    display: none;
  }
  .override_content-48 div:first-child p:nth-child(-n+50) {
    display: none;
  }
  .override_content-48 div:first-child p:first-child {
    display: flex;
  }
  .override-49 div:nth-child(n+3) {
    display: flex;
  }
  .override-49 div:nth-child(n+53) {
    display: none;
  }
  .override-49 div:nth-child(-n+51) {
    display: none;
  }
  .override-49 div:first-child {
    display: flex;
  }
  .override-49 div div:nth-child(2) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-49 div:first-child p:nth-child(n+53) {
    display: none;
  }
  .override_content-49 div:first-child p:nth-child(-n+51) {
    display: none;
  }
  .override_content-49 div:first-child p:first-child {
    display: flex;
  }
  .override-50 div:nth-child(n+3) {
    display: flex;
  }
  .override-50 div:nth-child(n+54) {
    display: none;
  }
  .override-50 div:nth-child(-n+52) {
    display: none;
  }
  .override-50 div:first-child {
    display: flex;
  }
  .override-50 div div:nth-child(2) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-50 div:first-child p:nth-child(n+54) {
    display: none;
  }
  .override_content-50 div:first-child p:nth-child(-n+52) {
    display: none;
  }
  .override_content-50 div:first-child p:first-child {
    display: flex;
  }
  .override-51 div:nth-child(n+3) {
    display: flex;
  }
  .override-51 div:nth-child(n+55) {
    display: none;
  }
  .override-51 div:nth-child(-n+53) {
    display: none;
  }
  .override-51 div:first-child {
    display: flex;
  }
  .override-51 div div:nth-child(2) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-51 div:first-child p:nth-child(n+55) {
    display: none;
  }
  .override_content-51 div:first-child p:nth-child(-n+53) {
    display: none;
  }
  .override_content-51 div:first-child p:first-child {
    display: flex;
  }
  .override-52 div:nth-child(n+3) {
    display: flex;
  }
  .override-52 div:nth-child(n+56) {
    display: none;
  }
  .override-52 div:nth-child(-n+54) {
    display: none;
  }
  .override-52 div:first-child {
    display: flex;
  }
  .override-52 div div:nth-child(2) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-52 div:first-child p:nth-child(n+56) {
    display: none;
  }
  .override_content-52 div:first-child p:nth-child(-n+54) {
    display: none;
  }
  .override_content-52 div:first-child p:first-child {
    display: flex;
  }
  .override-53 div:nth-child(n+3) {
    display: flex;
  }
  .override-53 div:nth-child(n+57) {
    display: none;
  }
  .override-53 div:nth-child(-n+55) {
    display: none;
  }
  .override-53 div:first-child {
    display: flex;
  }
  .override-53 div div:nth-child(2) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-53 div:first-child p:nth-child(n+57) {
    display: none;
  }
  .override_content-53 div:first-child p:nth-child(-n+55) {
    display: none;
  }
  .override_content-53 div:first-child p:first-child {
    display: flex;
  }
  .override-54 div:nth-child(n+3) {
    display: flex;
  }
  .override-54 div:nth-child(n+58) {
    display: none;
  }
  .override-54 div:nth-child(-n+56) {
    display: none;
  }
  .override-54 div:first-child {
    display: flex;
  }
  .override-54 div div:nth-child(2) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-54 div:first-child p:nth-child(n+58) {
    display: none;
  }
  .override_content-54 div:first-child p:nth-child(-n+56) {
    display: none;
  }
  .override_content-54 div:first-child p:first-child {
    display: flex;
  }
  .override-55 div:nth-child(n+3) {
    display: flex;
  }
  .override-55 div:nth-child(n+59) {
    display: none;
  }
  .override-55 div:nth-child(-n+57) {
    display: none;
  }
  .override-55 div:first-child {
    display: flex;
  }
  .override-55 div div:nth-child(2) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-55 div:first-child p:nth-child(n+59) {
    display: none;
  }
  .override_content-55 div:first-child p:nth-child(-n+57) {
    display: none;
  }
  .override_content-55 div:first-child p:first-child {
    display: flex;
  }
  .override-56 div:nth-child(n+3) {
    display: flex;
  }
  .override-56 div:nth-child(n+60) {
    display: none;
  }
  .override-56 div:nth-child(-n+58) {
    display: none;
  }
  .override-56 div:first-child {
    display: flex;
  }
  .override-56 div div:nth-child(2) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-56 div:first-child p:nth-child(n+60) {
    display: none;
  }
  .override_content-56 div:first-child p:nth-child(-n+58) {
    display: none;
  }
  .override_content-56 div:first-child p:first-child {
    display: flex;
  }
  .override-57 div:nth-child(n+3) {
    display: flex;
  }
  .override-57 div:nth-child(n+61) {
    display: none;
  }
  .override-57 div:nth-child(-n+59) {
    display: none;
  }
  .override-57 div:first-child {
    display: flex;
  }
  .override-57 div div:nth-child(2) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-57 div:first-child p:nth-child(n+61) {
    display: none;
  }
  .override_content-57 div:first-child p:nth-child(-n+59) {
    display: none;
  }
  .override_content-57 div:first-child p:first-child {
    display: flex;
  }
  .override-58 div:nth-child(n+3) {
    display: flex;
  }
  .override-58 div:nth-child(n+62) {
    display: none;
  }
  .override-58 div:nth-child(-n+60) {
    display: none;
  }
  .override-58 div:first-child {
    display: flex;
  }
  .override-58 div div:nth-child(2) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-58 div:first-child p:nth-child(n+62) {
    display: none;
  }
  .override_content-58 div:first-child p:nth-child(-n+60) {
    display: none;
  }
  .override_content-58 div:first-child p:first-child {
    display: flex;
  }
  .override-59 div:nth-child(n+3) {
    display: flex;
  }
  .override-59 div:nth-child(n+63) {
    display: none;
  }
  .override-59 div:nth-child(-n+61) {
    display: none;
  }
  .override-59 div:first-child {
    display: flex;
  }
  .override-59 div div:nth-child(2) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-59 div:first-child p:nth-child(n+63) {
    display: none;
  }
  .override_content-59 div:first-child p:nth-child(-n+61) {
    display: none;
  }
  .override_content-59 div:first-child p:first-child {
    display: flex;
  }
  .override-60 div:nth-child(n+3) {
    display: flex;
  }
  .override-60 div:nth-child(n+64) {
    display: none;
  }
  .override-60 div:nth-child(-n+62) {
    display: none;
  }
  .override-60 div:first-child {
    display: flex;
  }
  .override-60 div div:nth-child(2) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+3) {
    display: flex;
  }
  .override_content-60 div:first-child p:nth-child(n+64) {
    display: none;
  }
  .override_content-60 div:first-child p:nth-child(-n+62) {
    display: none;
  }
  .override_content-60 div:first-child p:first-child {
    display: flex;
  }
}
.time_of-item {
  padding: 10px 5% 1px 5%;
  border-bottom: 1px solid var(--main-border);
  min-width: 100%;
}
.time_of-item p svg {
  margin-right: 10px;
}

.daily-report {
  padding: 55px 65px 0 55px;
}
.daily-report-block__top div {
  margin-top: -25px;
}
.daily-report-block__top div span:nth-child(1) {
  margin-top: 3px;
  float: left;
}
.daily-report-block__top div span:nth-child(2) {
  display: block;
  float: right;
}
.daily-report-block__content-hours {
  width: 202px;
  height: 22px;
  font-family: "MuseoSansCyrlBold";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #4F4F4F;
  flex: none;
  order: 0;
  flex-grow: 0;
  border: transparent !important;
}

.ext_mail_textarea {
  margin: 20px;
  height: 100%;
}

#editor {
  background-color: #ffffff;
  border-width: thin;
  border-style: solid;
  height: 80%;
  border-color: var(--ck-color-toolbar-border);
  margin-top: 20px;
}

.ck-editor__editable {
  min-height: 500px;
}

.load-doc-send-mail {
  margin: 20px 0 0;
}

.btn_background {
  text-align: right;
  margin: 0 !important;
  margin-top: 20px !important;
  padding: 5px;
}

@media screen and (min-width: 1800px) {
  .plan {
    margin-top: 70px;
  }
  .plan .overview-calender p:first-child,
  .plan .overview-item p:first-child {
    padding-right: 0px;
  }
}
@media screen and (max-width: 1600px) {
  .plan {
    margin-top: 70px;
  }
  .plan .overview-calender p:first-child,
  .plan .overview-item p:first-child {
    padding-right: 0px;
  }
  .overview-item__hours {
    display: none;
  }
}
@media screen and (max-width: 1360px) {
  .overview-item__work_areas {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .overview-calender,
  .overview-item {
    grid-template-columns: 300px repeat(3, 1fr) 30px;
  }
  .overview-calender p:nth-child(n+5),
  .overview-item p:nth-child(n+5) {
    display: none;
  }
  .override-1 {
    grid-template-columns: 300px repeat(3, 1fr) 30px;
  }
  .override-1 p:nth-child(n+5) {
    display: flex;
  }
  .override-1 p:nth-child(n+6) {
    display: none;
  }
  .override-1 p:nth-child(2) {
    display: none;
  }
  .override-1 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-2 {
    grid-template-columns: 300px repeat(3, 1fr) 30px;
  }
  .override-2 p:nth-child(n+5) {
    display: flex;
  }
  .override-2 p:nth-child(n+7) {
    display: none;
  }
  .override-2 p:nth-child(2) {
    display: none;
  }
  .override-2 p:nth-child(3) {
    display: none;
  }
  .override-2 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-3 {
    grid-template-columns: 300px repeat(3, 1fr) 30px;
  }
  .override-3 p:nth-child(n+5) {
    display: flex;
  }
  .override-3 p:nth-child(n+8) {
    display: none;
  }
  .override-3 p:nth-child(2) {
    display: none;
  }
  .override-3 p:nth-child(3) {
    display: none;
  }
  .override-3 p:nth-child(4) {
    display: none;
  }
  .override-3 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-4 {
    grid-template-columns: 300px repeat(3, 1fr) 30px;
  }
  .override-4 p:nth-child(n+5) {
    display: flex;
  }
  .override-4 p:nth-child(n+9) {
    display: none;
  }
  .override-4 p:nth-child(2) {
    display: none;
  }
  .override-4 p:nth-child(3) {
    display: none;
  }
  .override-4 p:nth-child(4) {
    display: none;
  }
  .override-4 p:nth-child(5) {
    display: none;
  }
  .override-4 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .shiftplan_desktop {
    display: none;
  }
  .shiftplan_mobile {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .overview.plan .overview-item:nth-child(n+3) p:first-child span:last-child {
    width: 42px;
  }
  .overview.plan .overview-item:nth-child(n+3) p:first-child span:nth-child(3) {
    width: 40px;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 650px) {
  .overview-calender,
  .overview-item {
    grid-template-columns: 300px repeat(2, 1fr) 15px;
  }
  .overview-calender p:nth-child(n+4),
  .overview-item p:nth-child(n+4) {
    display: none;
  }
  .override-1 {
    grid-template-columns: 300px repeat(2, 1fr) 15px;
  }
  .override-1 p:nth-child(n+4) {
    display: flex;
  }
  .override-1 p:nth-child(n+5) {
    display: none;
  }
  .override-1 p:nth-child(2) {
    display: none;
  }
  .override-1 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-2 {
    grid-template-columns: 300px repeat(2, 1fr) 15px;
  }
  .override-2 p:nth-child(n+4) {
    display: flex;
  }
  .override-2 p:nth-child(n+6) {
    display: none;
  }
  .override-2 p:nth-child(2) {
    display: none;
  }
  .override-2 p:nth-child(3) {
    display: none;
  }
  .override-2 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-3 {
    grid-template-columns: 300px repeat(2, 1fr) 15px;
  }
  .override-3 p:nth-child(n+4) {
    display: flex;
  }
  .override-3 p:nth-child(n+7) {
    display: none;
  }
  .override-3 p:nth-child(2) {
    display: none;
  }
  .override-3 p:nth-child(3) {
    display: none;
  }
  .override-3 p:nth-child(4) {
    display: none;
  }
  .override-3 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-4 {
    grid-template-columns: 300px repeat(2, 1fr) 15px;
  }
  .override-4 p:nth-child(n+4) {
    display: flex;
  }
  .override-4 p:nth-child(n+8) {
    display: none;
  }
  .override-4 p:nth-child(2) {
    display: none;
  }
  .override-4 p:nth-child(3) {
    display: none;
  }
  .override-4 p:nth-child(4) {
    display: none;
  }
  .override-4 p:nth-child(5) {
    display: none;
  }
  .override-4 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-5 {
    grid-template-columns: 300px repeat(2, 1fr) 15px;
  }
  .override-5 p:nth-child(n+4) {
    display: flex;
  }
  .override-5 p:nth-child(n+9) {
    display: none;
  }
  .override-5 p:nth-child(2) {
    display: none;
  }
  .override-5 p:nth-child(3) {
    display: none;
  }
  .override-5 p:nth-child(4) {
    display: none;
  }
  .override-5 p:nth-child(5) {
    display: none;
  }
  .override-5 p:nth-child(6) {
    display: none;
  }
  .override-5 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 576px) {
  .overview-calender,
  .overview-item {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-0 p:nth-child(n+3) {
    display: none;
  }
  .override-1 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-1 p:nth-child(n+3) {
    display: flex;
  }
  .override-1 p:nth-child(n+4) {
    display: none;
  }
  .override-1 p:nth-child(2) {
    display: none;
  }
  .override-1 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-2 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-2 p:nth-child(n+3) {
    display: flex;
  }
  .override-2 p:nth-child(n+5) {
    display: none;
  }
  .override-2 p:nth-child(2) {
    display: none;
  }
  .override-2 p:nth-child(3) {
    display: none;
  }
  .override-2 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-3 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-3 p:nth-child(n+3) {
    display: flex;
  }
  .override-3 p:nth-child(n+6) {
    display: none;
  }
  .override-3 p:nth-child(2) {
    display: none;
  }
  .override-3 p:nth-child(3) {
    display: none;
  }
  .override-3 p:nth-child(4) {
    display: none;
  }
  .override-3 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-4 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-4 p:nth-child(n+3) {
    display: flex;
  }
  .override-4 p:nth-child(n+7) {
    display: none;
  }
  .override-4 p:nth-child(2) {
    display: none;
  }
  .override-4 p:nth-child(3) {
    display: none;
  }
  .override-4 p:nth-child(4) {
    display: none;
  }
  .override-4 p:nth-child(5) {
    display: none;
  }
  .override-4 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-5 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-5 p:nth-child(n+3) {
    display: flex;
  }
  .override-5 p:nth-child(n+8) {
    display: none;
  }
  .override-5 p:nth-child(2) {
    display: none;
  }
  .override-5 p:nth-child(3) {
    display: none;
  }
  .override-5 p:nth-child(4) {
    display: none;
  }
  .override-5 p:nth-child(5) {
    display: none;
  }
  .override-5 p:nth-child(6) {
    display: none;
  }
  .override-5 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
  .override-6 {
    grid-template-columns: 220px repeat(1, 1fr) 15px;
  }
  .override-6 p:nth-child(n+3) {
    display: flex;
  }
  .override-6 p:nth-child(n+9) {
    display: none;
  }
  .override-6 p:nth-child(2) {
    display: none;
  }
  .override-6 p:nth-child(3) {
    display: none;
  }
  .override-6 p:nth-child(4) {
    display: none;
  }
  .override-6 p:nth-child(5) {
    display: none;
  }
  .override-6 p:nth-child(6) {
    display: none;
  }
  .override-6 p:nth-child(7) {
    display: none;
  }
  .override-6 p:first-child {
    padding-right: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 700px) {
  .plan-top p:last-child {
    border-bottom: 0 !important;
  }
  .plan_first_row {
    left: 50px !important;
    top: -80px !important;
    height: 40px !important;
  }
  .plan_second_row {
    left: -252px !important;
    border-radius: 0 !important;
    height: 40px !important;
    top: -40px !important;
  }
}
@media screen and (max-width: 540px) {
  .shift-mobile-shift {
    width: 100%;
    float: right;
  }
  .shift-mobile-employee {
    width: 100%;
  }
}
.fc-EmployeeBtn-button {
  width: 140px;
  overflow: hidden !important;
  padding: 10.5px !important;
}
.fc-preEmployeeBtn-button, .fc-nextEmployeeBtn-button {
  min-width: 71px;
}

.settings-month-view {
  float: right;
}
.settings-month-view-block {
  display: flex;
  align-items: center;
  /*.settings-search {
    width: 39vw;
  }*/
}
.settings-month-view-block > div:not(.form-checkbox) {
  font-family: "MuseoSansCyrlBold";
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  display: flex;
  align-items: center;
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  padding: 0 13px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.5s ease-out;
  position: relative;
  /*
        svg {
          path {
            stroke: var(--main-text-dark);
          }
        }

        &.settings-open {
          span {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 14px;
            line-height: 17px;
            color: var(--main-text-dark);
            svg {
              margin-right: 13px;

              path {
                stroke: var(--main-text-dark);
              }
            }
          }
        } /*
        &.settings-location {
          width: max-content;
          span {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 14px;
            line-height: 17px;
            color: #828282;
            svg {
              margin-left: 13px;
              margin-right: 0;
            }
          }
        }
        &.btn-blue {
          color: #fff;
          &:hover {
            color: #fff;
            svg {
              path {
                stroke: #fff;
              }
            }
          }
          svg {
            margin-left: 15px;
          }
        }
        &.btn-normal {
          color: #4F4F4F;
          svg {
            margin-left: 15px;
          }
        }
        &:last-child {
          margin-right: 0;
        }
        &.active {
          color: variable.$primary-blue;
          border-color: variable.$primary-blue;
          svg {
            path {
              stroke: variable.$primary-blue;
            }
          }
        }
        &:hover {
          color: variable.$primary-blue;
          border-color: variable.$primary-blue;
          svg {
            path {
              stroke: variable.$primary-blue;
            }
          }
        } */
}
.settings-month-view-drop {
  padding: 0;
  right: 0;
  left: auto;
}
.settings-month-view-drop p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  padding: 11px 16px;
  margin-bottom: 0;
}
.settings-month-view-drop p:first-child {
  border-radius: 10px 10px 0px 0px;
}
.settings-month-view-drop p:last-child {
  border-radius: 0px 0px 10px 10px;
}
.settings-month-view-drop p:hover {
  background: #F4F3F4;
}
.settings-month-view-drop p svg {
  margin-right: 10px;
}
.settings-month-view-drop p:hover {
  background: #F4F3F4;
}

.settings-month-view.month-view-overview {
  float: right;
  margin-top: -40px;
  margin-right: 50px;
  margin-left: -300px;
}

.month-view_star-group {
  margin-left: 15px;
  display: flex;
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
  /* the hidden clearer */
}
.month-view_star-group * {
  font-size: 20px;
}
.month-view_star-group > input {
  display: none;
}
.month-view_star-group > input + label {
  /* only enough room for the star */
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0;
}
.month-view_star-group > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "☆";
  color: #888;
}
.month-view_star-group > input:checked ~ label:before, .month-view_star-group > input + label:hover ~ label:before, .month-view_star-group > input + label:hover:before {
  content: "★";
  color: #2F80ED;
  text-shadow: 0 0 1px #333;
}
.month-view_star-group > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}
.month-view_star-group > .star-cb-clear + label:before {
  width: 0.5em;
}
.month-view_star-group:hover > input + label:before {
  content: "☆";
  color: #888;
  text-shadow: none;
}
.month-view_star-group:hover > input + label:hover ~ label:before, .month-view_star-group:hover > input + label:hover:before {
  content: "★";
  color: #2F80ED;
  text-shadow: 0 0 1px #333;
}
.month-view-menu_content {
  width: 115px;
  overflow: hidden;
}
.month-view-vacation-calendar {
  margin: 5px 0 16px 55px;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  display: flex;
  /*height: 100%;*/
  /*height: calc(100% - 200px);*/
}
.month-view-vacation-calendar #calendar {
  width: 80%;
}
.month-view-vacation-calendar #newWeekcalendar {
  width: 80%;
}
.month-view-vacation-calendar #calendarBy {
  width: 62%;
}
.month-view-vacation-calendar #calendarBy .fc-toolbar-chunk .fc-today-button {
  display: block;
}
.month-view-vacation-calendar #calendarBy .fc-toolbar-chunk .fc-button-group {
  margin-left: 0;
}
.month-view-vacation-calendar #calendarBy .fc-bg-event {
  /*background-image: url(/images/icons/calendar-lines-red.svg);*/
}
.month-view-vacation-calendar #calendarBy .fc-daygrid-day-top {
  padding-bottom: 25px;
}
.month-view-vacation-calendar #calendarBy .fc-daygrid-event {
  justify-content: center;
  margin-top: 1px;
  overflow: initial;
  margin-bottom: 0;
  position: relative;
}
.month-view-vacation-calendar #calendarBy .fc-daygrid-event .item-time {
  position: absolute;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
  top: -30px;
}
.month-view-vacation-calendar img {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 10px;
  object-fit: cover;
}
.month-view-stamping__btns {
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #fdfcfd !important;
  background: #ff00a8;
  padding: 0 5px;
  border-radius: 50%;
  border: 2px solid #f4f3f4;
  top: -8px;
  right: -6px;
}
.month-view-next_day_button {
  position: absolute;
  cursor: pointer;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  z-index: 4;
}

.online-status {
  position: absolute;
  top: 79px;
  left: 136px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid white;
}
.online-status-green {
  background-color: green;
}
.online-status-red {
  background-color: red;
}
.online-status-orange {
  background-color: #ff6c3c;
}
.online-status-yellow {
  background-color: #ffc83c;
}
.online-status-white {
  background-color: #ffffff;
}

/*
* Created by PhpStorm in Project eve.
* User: micha
* Date: 07/07/2023
* Time: 16:46
*/
.billingHeader {
  width: 100%;
  text-align: center;
}

.billingHeaderText {
  width: 450px;
  border-bottom: 1px solid;
  margin: auto auto 10px;
  font-size: 26px;
}

.billingHeaderNote {
  width: 450px;
  margin: auto auto 40px;
}

.yearInputDiv {
  text-align: center;
  margin-bottom: 30px;
}
.yearInputDiv input[type=number] {
  height: 40px;
  width: 100px;
  font-size: 24px;
}

.billing {
  width: 80%;
  margin: auto;
}
.billing ._month {
  padding-left: 40px;
  border-bottom: 1px solid;
}
.billing ._month p {
  display: table-cell;
  padding: 20px;
  font-size: 19px;
  width: 450px;
}
.billing ._month ._company {
  padding-left: 60px;
  border: 1px dashed;
  margin-bottom: 3px;
}
.billing ._month ._company ._location {
  border-top: 1px solid;
  padding-left: 25px;
  margin-bottom: 3px;
  margin-right: 3px;
}
.billing ._month ._company ._location p {
  padding: 10px;
}
.billing ._month ._company ._location ._employee {
  padding-left: 25px;
  border: 1px dotted;
}
.billing ._month ._company ._location ._employee p {
  padding: 5px;
}

@media screen and (max-width: 1800px) {
  .fc-prevYear-button, .fc-nextYear-button {
    display: none !important;
  }
}
@media screen and (max-width: 1600px) {
  .month-view-vacation-calendar {
    margin-left: 30px;
  }
  .month-view-vacation-calendar .calendar-user {
    width: 40%;
  }
  .settings-month-view.month-view-overview {
    float: right;
    margin-right: 20px;
    margin-left: -50px;
  }
}
@media screen and (max-width: 769px) {
  .settings-month-view {
    position: absolute;
    left: auto !important;
    top: 140px !important;
  }
  .settings-month-view.month-view-overview {
    position: absolute;
    top: 190px !important;
    right: 0 !important;
    left: auto !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .settings-month-view {
    position: absolute;
    left: auto !important;
    top: 160px !important;
  }
  .settings-month-view.month-view-overview {
    position: absolute;
    top: 190px !important;
    right: 0 !important;
    left: auto !important;
  }
}
@media screen and (max-width: 1315px) {
  .month-view-vacation-calendar.monthly-cancellation #calendarBy {
    width: 100%;
  }
  .month-view-vacation-calendar.monthly-cancellation .calendar-stats {
    width: 100%;
    margin-left: 0;
  }
  .month-view-vacation-calendar {
    flex-direction: column;
    padding-right: 30px;
    margin-top: 0;
  }
  .month-view-vacation-calendar #calendar {
    width: 100%;
  }
  .month-view-vacation-calendar #calendar .fc-day {
    min-width: 80px;
  }
  .month-view-vacation-calendar .calendar-user {
    width: 100%;
    margin-top: 0;
    border-top: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .settings-month-view {
    position: absolute;
    left: 270px !important;
    top: 130px !important;
  }
  .settings-month-view.month-view-overview {
    position: absolute;
    top: 190px !important;
    right: 0 !important;
    left: auto !important;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1315px) {
  .settings-month-view.month-view-overview {
    position: absolute;
    top: 190px !important;
    right: 0 !important;
    left: auto !important;
  }
  .settings-month-view {
    position: absolute;
    left: 270px !important;
    top: 115px !important;
  }
}
/**
This file contains all css classes for the /Profile page
 */
.notify_settings > div {
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--main-border);
}
.notify_settings > div > div {
  float: left;
}
.notify_settings > div > div label {
  margin-bottom: 0;
}
.notify_settings > div > div:hover label {
  color: #2F80ED;
}

.notify_settings-language > div {
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 10px;
}
.notify_settings-language > div > div {
  float: left;
}
.notify_settings-language > div > div label {
  margin-bottom: 0;
}
.notify_settings-language > div > div:hover label {
  color: #2F80ED;
}
.notify_settings-language-radio {
  position: relative;
  margin-right: 32px;
}
.notify_settings-language-radio label {
  font-family: MuseoSansCyrl;
  color: var(--main-text-dark);
  font-weight: 600;
}

.personal_view_setting {
  margin-bottom: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--main-border);
}

.btn-green {
  background: #0fbc49;
  font-style: normal;
  border: 1px solid lightgrey;
  font-weight: bolder;
  font-size: 14px;
  line-height: 17px;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 1418px) {
  .dashboard-administration-item.administration-item p:nth-child(1) {
    min-width: 150px;
  }
  .dashboard_hours_element-hours_part {
    width: 100%;
  }
  .dashboard_hours_element-vacations_part1 {
    width: 100%;
  }
  .dashboard_hours_element-vacations_part2 {
    width: 100%;
  }
  .dashboard_hours_element-vacations_part3 {
    width: 100%;
  }
  .dashboard_hours_element-vacations_part4 {
    width: 100%;
  }
}
@media screen and (max-width: 1320px) {
  .dashboard-administration-item.administration-item p:nth-child(2) {
    min-width: 50px;
  }
}
@media screen and (max-width: 1240px) {
  .dashboard-administration-item.administration-item p:nth-child(1) {
    min-width: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .dashboard-administration-item.administration-item p:nth-child(1) {
    min-width: 200px;
  }
  .dashboard-administration-item.administration-item p:nth-child(2) {
    min-width: 100px;
  }
}
@media screen and (max-width: 545px) {
  .dashboard-administration-item.administration-item p:nth-child(1) {
    min-width: 150px;
  }
}
@media screen and (max-width: 495px) {
  .dashboard-administration-item.administration-item p:nth-child(2) {
    min-width: 50px;
  }
}
@media screen and (max-width: 480px) {
  .dashboard-administration-item.administration-item p:nth-child(1) {
    min-width: 100px;
  }
}
.reports {
  width: 100%;
  padding: 40px 65px 0 55px;
  display: flex;
  align-items: flex-start;
}
.reports .drop-settings {
  left: auto;
  right: 0;
  max-width: 215px;
  padding: 0;
}
.reports .drop-settings p {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
  padding: 20px 16px;
  margin-bottom: 0;
}
.reports .drop-settings p:first-child {
  border-radius: 10px 10px 0 0;
}
.reports .drop-settings p:last-child {
  border-radius: 0 0 10px 10px;
}
.reports .drop-settings p:hover {
  background: #F4F3F4;
}
.reports .drop-settings p svg {
  margin-right: 10px;
}
.reports__left, .reports__middle {
  background: var(--main-bg-light-second);
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  width: 20.5%;
  min-width: 180px;
}
.reports__left p, .reports__middle p {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-dark);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reports__left p:nth-child(1):nth-last-child(1), .reports__middle p:nth-child(1):nth-last-child(1) {
  padding-top: 10px;
  padding-bottom: 10px;
}
.reports__left p:first-child, .reports__middle p:first-child {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-border);
}
.reports__left p:not(:last-child):not(:first-child), .reports__middle p:not(:last-child):not(:first-child) {
  border-bottom: 1px solid var(--main-border);
  padding-top: 0;
  padding-bottom: 10px;
}
.reports__left p:last-child, .reports__middle p:last-child {
  padding-top: 0;
  padding-bottom: 5px;
  border-bottom: 0;
}
.reports__left p.active, .reports__middle p.active {
  color: #2F80ED;
}
.reports__left p span:nth-child(1), .reports__middle p span:nth-child(1) {
  float: left;
  padding-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
}
.reports__left p span:nth-child(2), .reports__middle p span:nth-child(2) {
  float: right;
  height: 25px;
}
.reports__left p:hover span:nth-child(1), .reports__middle p:hover span:nth-child(1) {
  color: #2f80ed;
}
.reports__left p:hover span:nth-child(2) svg path, .reports__middle p:hover span:nth-child(2) svg path {
  stroke: #2f80ed;
}
.reports__left__clikced span:nth-child(1), .reports__middle__clikced span:nth-child(1) {
  color: #2f80ed;
}
.reports__left__clikced span:nth-child(2) svg path, .reports__middle__clikced span:nth-child(2) svg path {
  stroke: #2f80ed;
}
.reports__back-btn {
  cursor: pointer;
  border: 1px solid var(--main-border);
  color: var(--main-text-dark);
  font-weight: 600;
  font-size: 14px;
  height: 50px;
  padding: 0 20px;
  background: var(--main-bg-light-second);
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 10px;
}
.reports__left {
  width: 25%;
}
.reports__middle {
  width: 25%;
  margin-left: 10px;
}
.reports__right {
  overflow-x: auto;
  padding: 40px;
  background: var(--main-bg-light-second);
  min-height: 250px;
  flex: 1;
  border: 1px solid var(--main-border);
  box-sizing: border-box;
  border-radius: 20px;
  margin-left: 10px;
}
.reports .settings-page__right {
  padding: 40px;
  min-width: 500px;
}
.reports-item {
  margin-bottom: 20px;
  position: relative;
}
.reports-item .settings-open {
  display: none;
  margin: 0 0 0 15px;
}
.reports-item .settings-open > svg {
  width: 18px;
  height: 18px;
}
.reports-item .settings-open .drop-settings {
  top: 26px;
  right: auto;
  left: 0;
}
.reports-item .settings-open .drop-settings p {
  display: flex;
  align-items: center;
}
.reports-item__title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  cursor: pointer;
}
.reports-item__title svg {
  margin-right: 11px;
}
.reports-item__content {
  display: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  padding-top: 13px;
  padding-left: 30px;
}
.reports-item.active .settings-open {
  display: flex;
}
.reports-item.active .reports-item__title {
  color: #1462CA;
}
.reports-item.active .reports-item__title > svg:first-child {
  transform: rotate(180deg);
}
.reports-item.active .reports-item__title > svg:first-child path {
  stroke: #1462CA;
}
.reports__add-btn {
  margin-top: 10px;
}
.reports__description {
  margin-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
  color: var(--main-text-dark);
  border-bottom: 1px solid var(--main-border);
}
.reports__view_btns {
  float: right;
  margin-right: 50px;
  margin-left: -50px;
}
.reports__view_btn span {
  width: 24px;
  text-align: center;
}
.reports__view_btn:hover {
  border-color: #2f80ed !important;
}
.reports__radio-btn {
  margin-right: 10px;
  color: var(--main-text-dark);
}

.form-group-reports {
  width: 50%;
}

@media screen and (max-width: 1200px) {
  /*  .reports {
      &__right {
        display: none !important;
      }
    }*/
  .form-group-reports {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .reports__left {
    width: 50%;
  }
  .reports__middle {
    width: 50%;
  }
  .reports__right {
    width: 50%;
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .reports__left {
    width: 100%;
  }
  .reports__middle {
    width: 100%;
    display: none;
  }
  .reports__right {
    width: 100%;
    display: none;
  }
}
/*
@media screen and (max-width: 1200px) {
  .reports {
    &__right {
      display: none !important;
    }
  }
}*/
.flatpickr-wrapper {
  width: 100%;
}
.flatpickr-monthDropdown-months {
  display: inline;
}
.flatpickr-week-hover {
  background-color: rgba(0, 128, 255, 0.2) !important; /* Light blue for hover */
  border-radius: 5px !important;
}

.rdiv span:nth-child(1) {
  display: none;
}
.rdiv span:nth-child(2) {
  display: none;
}

.fltrow {
  background: var(--main-bg-light-second) !important;
}
.fltrow td {
  border: 0;
}
.fltrow input {
  background: 0 0;
  color: var(--main-text-dark);
}

.TF th {
  background-color: var(--main-bg-light) !important;
  color: var(--main-text-dark) !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #ccc !important;
  text-align: center;
}
.TF td {
  text-align: center;
}

.table-filter-ascending {
  padding-left: 5px;
  color: var(--main-text-dark);
}
.table-filter-descending {
  padding-left: 5px;
  color: var(--main-text-dark);
}
.table-filter__tr_thick_border {
  border-top: 2px solid var(--main-bg-light-sum);
  border-bottom: 2px solid var(--main-bg-light-sum);
  color: var(--main-text-dark);
}

.odd {
  background-color: var(--main-bg-table);
  color: var(--main-text-dark);
}

.even {
  background-color: var(--main-bg-light);
  color: var(--main-text-dark);
}

.sum_footer {
  background-color: #2f80ed;
  color: #f4f3f4;
}

.sort-arrow {
  display: none;
}

.inf {
  background: 0 0;
  color: var(--main-text-dark);
}

table.mv_comp_tbl {
  border: 1px solid #000000;
  width: 100%;
  height: 200px;
  text-align: center;
}

table.mv_comp_tbl td, table.mv_comp_tbl th {
  border: 1px solid #AAAAAA;
  text-align: center;
}

table.mv_comp_tbl tbody td {
  font-size: 10px;
}

table.mv_comp_tbl tr:nth-child(even) {
  background: #E0E0E0;
}

table.mv_comp_tbl thead {
  border-bottom: 2px solid #444444;
}

table.mv_comp_tbl thead th {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.lib-emails-input-container {
  outline: 0;
  /* border: none; */
  border: 1px solid var(--main-border);
  border-radius: 5px;
  height: 50px;
  /* padding: 0 20px; */
  width: 100%;
  color: var(--main-text-dark);
  z-index: 3;
  background: 0 0;
  position: relative;
  text-align: left;
  overflow-y: auto;
  padding: 7px 7px 0;
  margin-bottom: 15px;
}

.email-block {
  font-size: 14px;
  line-height: 24px;
  padding: 0 0 0 7px;
  border-radius: 100px;
  display: inline-block;
  background: rgba(102, 153, 255, 0.2);
  margin-right: 7px;
  margin-bottom: 7px;
}

.invalid-email {
  background: #fff;
  border-radius: 0;
  padding: 0;
  border-bottom: 1px dashed red;
}

.duplicate {
  background: #ffdada;
  position: relative;
}

.tooltip {
  position: absolute;
  background: #000000;
  color: #fff;
  white-space: nowrap;
  top: 110%;
  left: 0;
  z-index: 2;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.tooltip:after {
  content: " ";
  position: absolute;
  left: 40%;
  bottom: 80%;
  display: block;
  border-bottom: 10px solid #000;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.remove-button {
  padding: 0 7px;
  font-size: 18px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  cursor: pointer;
  user-select: none;
}

.invalid-email .remove-button {
  padding-right: 0;
}

.email-input {
  border: none;
  font-size: 14px;
  line-height: 24px;
  min-height: 24px;
  padding: 0 7px;
  margin: 3px 0 7px 0;
  outline: none;
}

.navigation-number {
  /*display: flex;*/
}
.navigation-number a {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-text-light);
  transition: all 0.5s ease-out;
  padding-bottom: 5px;
  margin-right: 20px;
  border-bottom: 2px solid transparent;
  font-family: "MuseoSansCyrlBold";
  position: relative;
}
.navigation-number a span {
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #FDFCFD !important;
  background: #FF00A8;
  padding: 0 5px;
  border-radius: 50%;
  border: 2px solid #F4F3F4;
  top: -30px;
  right: -15px;
}
.navigation-number a.active {
  color: #2F80ED;
  border-color: #2F80ED;
}
.navigation-number a:hover {
  color: #2F80ED;
}

.employee_account_booking__header_center_element {
  justify-content: center !important;
}
.employee_account_booking__content_center_element {
  justify-content: center;
}

.user-tags {
  display: flex;
}

.user-tag {
  position: relative;
  display: inline-block !important;
  padding: 2px 10px;
  color: #fff !important;
  border-radius: 20px 0 0 20px;
  margin-right: 5px;
  font-size: 14px;
  overflow: hidden;
  width: auto;
  pointer-events: auto;
}

.user-tag:after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px; /* Adjust the value to control the pointing distance */
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #007bff;
}

.toastui-editor-mode-switch {
  display: none !important;
}

.custom-color-button {
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  background-color: #d3d3d3;
  display: inline-block;
}

.multi-select_search_input {
  position: relative !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  cursor: text;
  padding: 4px 8px !important;
  min-width: 120px;
  flex-grow: 1;
  border: none !important;
  outline: none !important;
}

.not_paid_full_screen__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.not_paid_full_screen__msg {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  max-width: 400px;
  font-family: Arial, sans-serif;
}
.not_paid_full_screen__msg h2 {
  margin-top: 0;
  color: #d33;
  font-size: 1.5rem;
}
.not_paid_full_screen__msg p {
  color: #333;
  margin-bottom: 25px;
}
.not_paid_full_screen__msg button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s;
}
.not_paid_full_screen__msg button.active {
  opacity: 1;
  pointer-events: auto;
}

.not_paid_footer__container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9998;
  font-family: Arial, sans-serif;
}
.not_paid_footer__msg {
  display: flex;
  align-items: center;
  gap: 20px;
}
.not_paid_footer__msg p {
  margin: 0;
  color: #333;
  font-size: 1.3rem;
}
.not_paid_footer__msg button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s, background-color 0.3s;
}
.not_paid_footer__msg button.active {
  opacity: 1;
  pointer-events: auto;
}
.not_paid_footer__msg button:hover {
  background-color: rgb(0, 110.7, 229.5);
}