html {
  --unite-bright1: #fbfefb;
  --unite-bright2: #f5fbf5;
  --unite-bright3: #eff6ef;
  --unite-bright4: #e9f3e9;
  --unite-bright5: #e3f0e3;
  --unite-bright6: #ddeedd;
  --unite-bright7: #d9ebd9;
  --unite-bright8: #d6ebd6;
  --unite-bright9: #cde9cd;
  --unite-light1: #a8ccae;
  --unite-light2: #8ebd9d;
  --unite-light3: #79b08a;
  --unite-light4: #5fa77c;
  --unite-light5: #489874;
  --unite-light6: #328563;
  --unite-light7: #29795e;
  --unite-light8: #29684e;
  --unite-light9: #275f46;
  --unite-def: #184d38;
  --unite-dark1: #144534;
  --unite-dark2: #16422f;
  --unite-dark3: #153c2a;
  --unite-dark4: #133322;
  --unite-dark5: #122e1f;
  --unite-dark6: #132918;
  --unite-dark7: #122513;
  --unite-dark8: #0e1f0e;
  --unite-dark9: #0c190c;
  --unite-shadow_container: rgba(12, 25, 12, 0.6);
  --unite-wsize_desktop: 1400px;
  --unite-red-bright5: #f19a9b;
  --unite-red1: #c22b2d;
  --unite-red2: #b02b2d;
  --unite-red3: #9d2728;
  --unite-red4: #721c1d;
  --unite-green-bright5: #9af19b;
  --unite-green1: #2bc22d;
  --unite-green2: #2bb02d;
  --unite-green3: #279d28;
  --unite-green4: #1c721d;
}
table {
  color: inherit;
}
.input_container input[type='checkbox'],
.input_container input[type='radio'] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  margin: 0px;
}
.dropdown {
  display: inline-flex;
  border: 1px solid var(--unite-light1);
  padding: 8px 12px;
  font-weight: 900;
  color: var(--unite-def);
  background: var(--unite-bright1);
  position: relative;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.dropdown.type1::after {
  content: '\25bc';
  padding-left: 6px;
  color: var(--unite-light1);
}
.dropdown.type1:hover .dropdown-menu {
  display: block;
}
.dropdown:hover,
.dropdown .dropdown-menu .option:hover {
  background: var(--unite-bright7);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.dropdown .dropdown-icon {
  display: inline-block;
  padding-right: 6px;
}
.dropdown .dropdown-menu {
  position: absolute;
  display: none;
  top: 33px;
  left: -1px;
  min-width: 100%;
  background: var(--unite-bright1);
  border: 1px solid var(--unite-light1);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.dropdown .dropdown-menu .option {
  padding: 8px;
  overflow: hidden;
}
.button__default {
  display: inline-flex;
  border: 1px solid var(--unite-light1);
  padding: 8px 12px;
  font-weight: 900;
  color: var(--unite-def);
  text-decoration: none;
  background: var(--unite-bright1);
  position: relative;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  line-height: normal;
}
.button__default:hover {
  background: var(--unite-bright7);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.button__default.selected {
  background: var(--unite-bright4);
}
.button__default.highlighted {
  background: var(--unite-light8);
  color: var(--unite-bright1);
  border-color: var(--unite-dark5);
}
.button__default.highlighted:hover {
  background: var(--unite-bright9);
  color: var(--unite-dark5);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.button__default.is_file {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.button__default.is_file::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  display: block;
  padding: 4px;
  padding-right: 4px;
}
.button__default.is_file.pdf {
  background: var(--unite-red1);
  color: var(--unite-bright2);
  border: 1px solid var(--unite-red2);
}
.button__default.is_file.pdf:hover {
  background: var(--unite-red2);
  color: var(--unite-bright2);
  border: 1px solid var(--unite-red4);
}
.button__default.is_file.pdf:hover::before {
  border-right: 1px solid var(--unite-red3);
}
.button__default.is_file.pdf::before {
  background: url('/static/img/pdf.svg') no-repeat center / 24px 24px;
  border-right: 1px solid var(--unite-red2);
}
.button__default.red {
  background: var(--unite-red1);
  color: var(--unite-bright2);
  border: 1px solid var(--unite-red2);
}
.button__default.red:hover {
  background: var(--unite-red2);
  color: var(--unite-bright2);
  border: 1px solid var(--unite-red4);
}
.button__default.green {
  background: var(--unite-green1);
  color: var(--unite-bright2);
  border: 1px solid var(--unite-green2);
  border-right-color: var(--unite-green2);
}
.button__default.green:hover {
  background: var(--unite-green2);
  color: var(--unite-bright2);
  border: 1px solid var(--unite-green4);
  border-right-color: var(--unite-green4);
}
.button__default[disabled] {
  background: var(--unite-bright1);
  border: 1px solid var(--unite-bright8);
  color: var(--unite-light2);
}
.button__default[disabled]:hover {
  background: var(--unite-bright1);
  border: 1px solid var(--unite-bright8);
  color: var(--unite-light2);
  cursor: not-allowed;
}
.button__default:hover {
  background: var(--unite-bright7);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.button__group {
  display: flex;
}
.button__group :not(:last-child) {
  border-right: none;
}
.button__group :not(:last-child).highlighted {
  border-right: 1px solid var(--unite-dark5);
}
.button__group :first-child {
  -webkit-border-radius: 2px 0px 0px 2px;
  -moz-border-radius: 2px 0px 0px 2px;
  border-radius: 2px 0px 0px 2px;
}
.button__group :last-child {
  -webkit-border-radius: 0px 2px 2px 0px;
  -moz-border-radius: 0px 2px 2px 0px;
  border-radius: 0px 2px 2px 0px;
}
.button__group :only-child {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.button__group.vertical {
  display: grid;
}
.button__group.vertical :not(:last-child) {
  border-bottom: none;
}
.button__group.vertical :not(:last-child).highlighted {
  border-right: 1px solid inherit;
  border-bottom: 1px solid inherit;
}
.button__group.vertical :first-child {
  -webkit-border-radius: 2px 2px 0px 0px;
  -moz-border-radius: 2px 2px 0px 0px;
  border-radius: 2px 2px 0px 0px;
}
.button__group.vertical :last-child {
  -webkit-border-radius: 0px 0px 2px 2px;
  -moz-border-radius: 0px 0px 2px 2px;
  border-radius: 0px 0px 2px 2px;
}
.button__group.vertical :only-child {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.checkbox,
.radio {
  position: relative;
  vertical-align: text-top;
  display: inline-flex;
  min-width: 12px;
  min-height: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid var(--unite-light1);
  background: var(--unite-bright1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.selected::before,
.radio.selected::before,
.checkbox.selected_partial::before,
.radio.selected_partial::before {
  content: '\2713';
  font-size: 12px;
  line-height: 8px;
  font-weight: 900;
  width: 8px;
  height: 8px;
  margin: 2px;
  position: absolute;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.checkbox.selected_partial::before,
.radio.selected_partial::before {
  content: '';
  background: var(--unite-def);
}
.checkbox:hover,
.radio:hover {
  border: 1px solid var(--unite-light2);
  background: var(--unite-bright7);
  -webkit-box-shadow: 0px 0px 2px var(--unite-light5);
  -moz-box-shadow: 0px 0px 2px var(--unite-light5);
  box-shadow: 0px 0px 2px var(--unite-light5);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.radio {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.radio.selected::before {
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--unite-def);
}
.input_container input:checked ~ .radio::before {
  content: '';
  width: 8px;
  height: 8px;
  margin: 2px;
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--unite-def);
}
.input_container input:checked ~ .checkbox::before {
  content: '\2713';
  font-size: 12px;
  line-height: 8px;
  font-weight: 900;
  width: 8px;
  height: 8px;
  margin: 2px;
  position: absolute;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
label .checkbox,
label .radio {
  position: absolute;
  top: 0;
  left: 0;
}
label.input_container {
  position: relative;
  padding-left: 18px;
}
.text_field {
  display: inline-flex;
  border: 1px solid var(--unite-light1);
  padding: 6px 10px;
  color: var(--unite-def);
  background: var(--unite-bright1);
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.text_field.selected {
  all: var(--unite-bright4);
}
.text_field:hover,
.text_field:focus {
  outline: none;
  border-color: var(--unite-light3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 0px 2px var(--unite-light1);
  -moz-box-shadow: 0px 0px 2px var(--unite-light5);
  box-shadow: 0px 0px 2px var(--unite-light5);
}
#calendar_popup,
#calendar_popup2,
#calendar_popup3,
.popup_wdw {
  display: none;
}
.calendar_wrapper .calendar_form_step {
  display: none;
  overflow: auto;
  max-height: 500px;
  width: 100%;
  padding-right: 24px;
}
.calendar_wrapper .calendar_form_step .control_item {
  grid-column: span 3;
  background: var(--unite-bright3);
  border: 1px solid var(--unite-bright5);
  padding: 4px;
}
.calendar_wrapper .calendar_form_step .control_item.newline {
  grid-column: span 4;
}
.calendar_wrapper .calendar_form_step .room_selection-box {
  min-height: 150px;
  display: grid;
  grid-template-rows: 26px auto;
  grid-gap: 12px;
  margin: 12px;
}
.calendar_wrapper .calendar_form_step .room_selection-box .title {
  text-align: center;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 22px;
}
.calendar_wrapper .calendar_form_step .room_selection-box .img {
  width: 100%;
  text-align: center;
}
.popup_default,
.popup_menu-type1,
.popup_menu-type0 {
  max-width: 1200px;
  overflow: auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 16px var(--unite-shadow_container);
  -moz-box-shadow: 0px 0px 16px var(--unite-shadow_container);
  box-shadow: 0px 0px 16px var(--unite-shadow_container);
  color: var(--unite-dark2);
}
.popup_default.container,
.popup_menu-type1.container,
.popup_menu-type0.container {
  position: relative;
  top: 160px;
  margin: auto;
  display: table;
}
.popup_default.container > .grid,
.popup_menu-type1.container > .grid,
.popup_menu-type0.container > .grid {
  display: grid;
  grid-template-columns: 250px auto;
}
.popup_default.container > .grid .popup_actions,
.popup_menu-type1.container > .grid .popup_actions,
.popup_menu-type0.container > .grid .popup_actions {
  display: grid;
  grid-column: 1 / span 2;
  grid-template-columns: max-content max-content;
  grid-gap: 12px;
  min-height: 33px;
}
.popup_default.container > .grid .popup_actions .calendar_form_step_actions,
.popup_menu-type1.container > .grid .popup_actions .calendar_form_step_actions,
.popup_menu-type0.container > .grid .popup_actions .calendar_form_step_actions {
  display: inline-block;
}
.popup_default.container > .grid .popup_actions .calendar_form_step_actions .button__default,
.popup_menu-type1.container > .grid .popup_actions .calendar_form_step_actions .button__default,
.popup_menu-type0.container > .grid .popup_actions .calendar_form_step_actions .button__default {
  display: inline-block;
}
.popup_default.container > .grid .popup_actions .calendar_form_step_actions .button__group,
.popup_menu-type1.container > .grid .popup_actions .calendar_form_step_actions .button__group,
.popup_menu-type0.container > .grid .popup_actions .calendar_form_step_actions .button__group {
  display: inline-flex;
}
.popup_default.wrapper,
.popup_menu-type1.wrapper,
.popup_menu-type0.wrapper {
  max-width: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--unite-shadow_container);
  z-index: 101;
  display: table;
}
.popup_default.popup_wdw,
.popup_menu-type1.popup_wdw,
.popup_menu-type0.popup_wdw {
  display: none;
}
.popup_default .popup_header,
.popup_menu-type1 .popup_header,
.popup_menu-type0 .popup_header {
  padding: 20px;
  font-size: 20px;
  font-weight: 900;
  color: var(--unite-bright5);
  background: var(--unite-dark2);
  z-index: 7;
}
.popup_default .popup_menu,
.popup_menu-type1 .popup_menu,
.popup_menu-type0 .popup_menu {
  background: var(--unite-bright1);
  padding: 20px;
  z-index: 5;
  -webkit-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  -moz-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  box-shadow: 0px 0px 6px var(--unite-shadow_container);
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-gap: 8px;
  grid-auto-rows: 44px;
}
.popup_default .popup_menu .menu,
.popup_menu-type1 .popup_menu .menu,
.popup_menu-type0 .popup_menu .menu {
  display: grid;
  grid-auto-rows: 44px;
  grid-gap: 8px;
}
.popup_default .popup_menu .menu .menu_item,
.popup_menu-type1 .popup_menu .menu .menu_item,
.popup_menu-type0 .popup_menu .menu .menu_item {
  height: 28px;
  display: block;
  line-height: 28px;
}
.popup_default .popup_menu .basic_info,
.popup_menu-type1 .popup_menu .basic_info,
.popup_menu-type0 .popup_menu .basic_info {
  position: relative;
  bottom: 0px;
  display: block;
  width: inherit;
  vertical-align: bottom;
}
.popup_default .popup_menu .basic_info table,
.popup_menu-type1 .popup_menu .basic_info table,
.popup_menu-type0 .popup_menu .basic_info table {
  bottom: 0;
  position: relative;
}
.popup_default .popup_body,
.popup_menu-type1 .popup_body,
.popup_menu-type0 .popup_body {
  background: var(--unite-bright1);
  z-index: 4;
  height: 500px;
  width: 750px;
  position: relative;
}
.popup_default .popup_body.fit-content,
.popup_menu-type1 .popup_body.fit-content,
.popup_menu-type0 .popup_body.fit-content {
  height: auto;
  width: auto;
  padding: 8px;
}
.popup_default .popup_body .time_table,
.popup_menu-type1 .popup_body .time_table,
.popup_menu-type0 .popup_body .time_table {
  position: absolute;
  height: 192px;
  width: inherit;
  z-index: 1;
  overflow: auto;
  display: grid;
  padding: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  grid-template-columns: auto 651px;
}
.popup_default .popup_body .time_table .table_room,
.popup_menu-type1 .popup_body .time_table .table_room,
.popup_menu-type0 .popup_body .time_table .table_room {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(24px, 24px));
  margin-top: 26px;
  text-align: right;
  grid-gap: 1px;
  box-sizing: border-box;
}
.popup_default .popup_body .time_table .table_room > div,
.popup_menu-type1 .popup_body .time_table .table_room > div,
.popup_menu-type0 .popup_body .time_table .table_room > div {
  line-height: 20px;
  padding-right: 8px;
  border-bottom: 1px solid var(--unite-bright4);
}
.popup_default .popup_body .time_table .table_time,
.popup_menu-type1 .popup_body .time_table .table_time,
.popup_menu-type0 .popup_body .time_table .table_time {
  border: 1px solid transparent;
  border-bottom-color: var(--unite-bright4);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.popup_default .popup_body .time_table .table_time ._header,
.popup_menu-type1 .popup_body .time_table .table_time ._header,
.popup_menu-type0 .popup_body .time_table .table_time ._header {
  height: 24px;
  display: grid;
  grid-template-columns: repeat(26, minmax(24px, 1fr));
}
.popup_default .popup_body .time_table .table_time ._header > div,
.popup_menu-type1 .popup_body .time_table .table_time ._header > div,
.popup_menu-type0 .popup_body .time_table .table_time ._header > div {
  position: relative;
  margin-left: -4px;
  width: 24px;
}
.popup_default .popup_body .time_table .table_time ._header > div.two_digit,
.popup_menu-type1 .popup_body .time_table .table_time ._header > div.two_digit,
.popup_menu-type0 .popup_body .time_table .table_time ._header > div.two_digit {
  margin-left: -8px;
}
.popup_default .popup_body .time_table .table_time ._body,
.popup_menu-type1 .popup_body .time_table .table_time ._body,
.popup_menu-type0 .popup_body .time_table .table_time ._body {
  background: var(--unite-bright4);
  display: grid;
  grid-gap: 1px;
  grid-template-rows: repeat(auto-fill, minmax(24px, 1fr));
}
.popup_default .popup_body .time_table .table_time ._body .room_times,
.popup_menu-type1 .popup_body .time_table .table_time ._body .room_times,
.popup_menu-type0 .popup_body .time_table .table_time ._body .room_times {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24px, 24px));
  grid-gap: 1px;
  /*> div:first-child {
                            grid-column: span 3;
                        }
                        > div:nth-child(n+4) {
                            grid-column: span 4;
                        }*/
}
.popup_default .popup_body .time_table .table_time ._body .room_times > div,
.popup_menu-type1 .popup_body .time_table .table_time ._body .room_times > div,
.popup_menu-type0 .popup_body .time_table .table_time ._body .room_times > div {
  height: 20px;
  background: var(--unite-bright1);
  border: 2px solid transparent;
}
.popup_default .popup_body .time_table .table_time ._body .room_times > div > div,
.popup_menu-type1 .popup_body .time_table .table_time ._body .room_times > div > div,
.popup_menu-type0 .popup_body .time_table .table_time ._body .room_times > div > div {
  background: transparent;
  border: 2px solid transparent;
}
.popup_default .popup_body .time_table .table_time ._body .room_times > div.full > div,
.popup_menu-type1 .popup_body .time_table .table_time ._body .room_times > div.full > div,
.popup_menu-type0 .popup_body .time_table .table_time ._body .room_times > div.full > div,
.popup_default .popup_body .time_table .table_time ._body .room_times > div.half_full > div,
.popup_menu-type1 .popup_body .time_table .table_time ._body .room_times > div.half_full > div,
.popup_menu-type0 .popup_body .time_table .table_time ._body .room_times > div.half_full > div {
  position: absolute;
  background: var(--unite-light4);
  display: block;
  height: 8px;
  margin: 8px 0px;
  border: 2px solid var(--unite-light8);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.popup_default .popup_body .time_table .table_time ._body .room_times > div.half_full > div,
.popup_menu-type1 .popup_body .time_table .table_time ._body .room_times > div.half_full > div,
.popup_menu-type0 .popup_body .time_table .table_time ._body .room_times > div.half_full > div {
  background: var(--unite-light1);
}
.popup_default .popup_body .items_headers,
.popup_menu-type1 .popup_body .items_headers,
.popup_menu-type0 .popup_body .items_headers {
  position: absolute;
  top: 198px;
  height: 32px;
  width: inherit;
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 100px 52px auto;
  padding: 8px 17px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  -moz-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  box-shadow: 0px 0px 6px var(--unite-shadow_container);
}
.popup_default .popup_body .items,
.popup_menu-type1 .popup_body .items,
.popup_menu-type0 .popup_body .items {
  position: absolute;
  top: 230px;
  bottom: 0px;
  left: 0;
  right: 0;
  display: grid;
  grid-gap: 8px;
  grid-auto-rows: 52px;
  padding: 8px;
  overflow: auto;
}
.popup_default .popup_body .items .item,
.popup_menu-type1 .popup_body .items .item,
.popup_menu-type0 .popup_body .items .item {
  display: grid;
  grid-template-columns: 200px 52px 466px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid var(--unite-bright9);
  padding: 8px;
}
.popup_default .popup_body .items .item ._item_room,
.popup_menu-type1 .popup_body .items .item ._item_room,
.popup_menu-type0 .popup_body .items .item ._item_room {
  font-size: 16px;
  line-height: 34px;
}
.popup_default .popup_body .items .item ._item_header .title,
.popup_menu-type1 .popup_body .items .item ._item_header .title,
.popup_menu-type0 .popup_body .items .item ._item_header .title {
  font-size: 16px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popup_default .popup_body .items .item ._item_header .description,
.popup_menu-type1 .popup_body .items .item ._item_header .description,
.popup_menu-type0 .popup_body .items .item ._item_header .description {
  font-size: 11px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popup_default .popup_body .items .item ._item_time ._item_time__from,
.popup_menu-type1 .popup_body .items .item ._item_time ._item_time__from,
.popup_menu-type0 .popup_body .items .item ._item_time ._item_time__from {
  display: inline-block;
  width: 100px;
  line-height: 16px;
}
.popup_default .popup_body .items .item ._item_time ._item_time__to,
.popup_menu-type1 .popup_body .items .item ._item_time ._item_time__to,
.popup_menu-type0 .popup_body .items .item ._item_time ._item_time__to {
  display: inline-block;
  width: 100px;
  line-height: 16px;
}
.popup_default .popup_body .items .item ._item_time .date,
.popup_menu-type1 .popup_body .items .item ._item_time .date,
.popup_menu-type0 .popup_body .items .item ._item_time .date {
  font-size: 11px;
}
.popup_default .popup_body .items .item ._item_info,
.popup_menu-type1 .popup_body .items .item ._item_info,
.popup_menu-type0 .popup_body .items .item ._item_info {
  display: none;
}
.popup_default .popup_actions,
.popup_menu-type1 .popup_actions,
.popup_menu-type0 .popup_actions {
  background: var(--unite-bright1);
  padding: 20px;
  z-index: 6;
  -webkit-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  -moz-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  box-shadow: 0px 0px 6px var(--unite-shadow_container);
}
@media all and (max-width: 960px) {
  .popup_default .container > .grid,
  .popup_menu-type1 .container > .grid,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid {
    grid-template-columns: auto auto;
  }
  .popup_default .container > .grid .popup_body,
  .popup_menu-type1 .container > .grid .popup_body,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid .popup_body {
    width: auto;
  }
  .popup_default .container > .grid .popup_body .time_table,
  .popup_menu-type1 .container > .grid .popup_body .time_table,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid .popup_body .time_table {
    display: none;
  }
  .popup_default .container > .grid .popup_body .items_headers,
  .popup_menu-type1 .container > .grid .popup_body .items_headers,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid .popup_body .items_headers {
    top: auto;
    position: relative;
  }
  .popup_default .container > .grid .popup_body .items,
  .popup_menu-type1 .container > .grid .popup_body .items,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid .popup_body .items {
    position: relative;
    top: auto;
  }
  .popup_default .container > .grid .popup_body .items .item,
  .popup_menu-type1 .container > .grid .popup_body .items .item,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid .popup_body .items .item {
    grid-template-columns: 200px 52px auto;
  }
  .popup_default .container > .grid .popup_body .items .description,
  .popup_menu-type1 .container > .grid .popup_body .items .description,
  .popup_menu-type0:not(#calendar_popup3) .container > .grid .popup_body .items .description {
    display: none;
  }
}
.popup_menu-type0.container > .grid {
  display: grid;
  grid-template-columns: auto;
}
.popup_menu-type0.container > .grid .popup_actions {
  grid-column: 1 / span 2;
}
.calendar_wrapper {
  background-color: var(--unite-bright5);
}
.calendar_wrapper .day_container {
  display: grid;
  grid-template-rows: 22px auto 22px;
  grid-gap: 2px;
  padding: 2px;
  background: white;
  height: 114px;
  background: var(--unite-bright1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid transparent;
}
.calendar_wrapper .day_container.disabled {
  background: var(--unite-bright3);
}
.calendar_wrapper .day_container.current {
  border: 2px solid var(--unite-light1);
}
.calendar_wrapper .day_container.closed {
  background: var(--unite-bright7);
}
.calendar_wrapper .day_container.blocked {
  background: var(--unite-bright7);
}
.calendar_wrapper .day_container:hover:not(.disabled) {
  background: var(--unite-bright3);
  border: 2px solid var(--unite-light1);
}
.calendar_wrapper .day_container .items {
  display: grid;
  grid-gap: 2px;
}
.calendar_wrapper .day_container .items div.item_closed {
  font-weight: 900;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.calendar_wrapper .day_container .items div.item_regular {
  background: var(--unite-bright5);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid var(--unite-bright9);
  height: 16px;
  line-height: 16px;
  font-weight: 100;
  text-align: center;
  position: relative;
}
.calendar_wrapper .day_container .items div.item_regular:hover {
  background: var(--unite-bright7);
  border: 1px solid var(--unite-light1);
  cursor: pointer;
}
.calendar_wrapper .day_container .items div.item_regular:hover .item_extended {
  border-color: var(--unite-light1) !important;
}
.calendar_wrapper .day_container .items div.item_regular .item_title {
  overflow: hidden;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup-title {
  text-align: center;
  font-weight: 900;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup {
  text-align: left;
  display: none;
  background: var(--unite-bright2);
  position: absolute;
  top: -10px;
  right: -220px;
  width: 200px;
  min-height: 100px;
  z-index: 2;
  border: 1px solid var(--unite-bright3);
  cursor: auto;
  -webkit-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  -moz-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  box-shadow: 0px 0px 6px var(--unite-shadow_container);
}
.calendar_wrapper .day_container .items div.item_regular .item_popup::before {
  padding: 6px;
  position: absolute;
  left: -6px;
  top: 6px;
  content: '';
  width: 11px;
  height: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--unite-bright2);
  border-top: 1px solid var(--unite-bright3);
  border-left: 1px solid var(--unite-bright3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  -moz-box-shadow: 0px 0px 6px var(--unite-shadow_container);
  box-shadow: 0px 0px 6px var(--unite-shadow_container);
}
.calendar_wrapper .day_container .items div.item_regular .item_popup::after {
  content: '';
  background: transparent;
  position: absolute;
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -20px;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup .item_popup-actions {
  display: flex;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup .item_popup-actions > .button__default {
  width: 100%;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup .item_popup-container {
  background: var(--unite-bright2);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: relative;
  font-size: 12px;
  z-index: 4;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup .item_popup-container > * {
  font-size: 12px;
  color: var(--unite-dark2);
  padding: 4px;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup .item_popup-container > table {
  width: 100%;
  height: 100%;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup.left {
  left: -220px;
  width: 200px;
}
.calendar_wrapper .day_container .items div.item_regular .item_popup.left::before {
  right: -6px;
  left: auto;
}
.calendar_wrapper .day_container .items div.item_regular .item_extended {
  display: inline-block;
  height: 14px;
  width: 14px;
  position: absolute;
  top: 1px;
}
.calendar_wrapper .day_container .items div.item_regular .item_extended.before {
  left: 1px;
  background: #b7ffad;
  border-right: 1px solid var(--unite-bright9);
}
.calendar_wrapper .day_container .items div.item_regular .item_extended.after {
  right: 1px;
  background: #ffdcd4;
  border-left: 1px solid var(--unite-bright9);
}
.calendar_wrapper .day_container .items div.item_regular .item_extended.mid {
  right: 1px;
  background: #ffecd2;
}
.calendar_wrapper .day_container .item_expand-trigger {
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  line-height: 10px;
}
.calendar_wrapper .day_container > div:first-child {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  text-align: center;
  margin: auto;
}
.calendar_wrapper .day_header {
  padding: 10px 0px;
  background: white;
  border-bottom: 1px solid var(--unite-light1);
}
.calendar_wrapper .day_header.current {
  border: 2px solid var(--unite-light1);
  font-weight: 900;
}
.calendar_container {
  grid-gap: 2px;
  -webkit-box-shadow: 0px 0px 4px var(--unite-light1);
  -moz-box-shadow: 0px 0px 4px var(--unite-light1);
  box-shadow: 0px 0px 4px var(--unite-light1);
}
.calendar_header {
  display: grid;
  grid-template-columns: 40px auto 40px;
}
.calendar_header .next {
  cursor: pointer;
  height: 30px;
  margin: auto 0px;
  padding: 16px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: var(--brunswick_a25);
  -webkit-box-shadow: 0px 0px 5px var(--brunswick_a75);
  -moz-box-shadow: 0px 0px 5px var(--brunswick_a75);
  box-shadow: 0px 0px 5px var(--brunswick_a75);
}
.calendar_header .prev {
  cursor: pointer;
  height: 28px;
  margin: auto 0px;
  padding: 16px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: var(--brunswick_a25);
  -webkit-box-shadow: 0px 0px 5px var(--brunswick_a75);
  -moz-box-shadow: 0px 0px 5px var(--brunswick_a75);
  box-shadow: 0px 0px 5px var(--brunswick_a75);
}
/*# sourceMappingURL=unite.css.map */