/** source file: static/toolkit/modules/toolkit_router_navigation_ui.scss **/
.toolkit_router_navigation_ui_bar {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  font-weight: bold;
  background-color: #fff;
  border-bottom: 1px solid rgba(46, 62, 72, 0.12);
  box-shadow: 0 0 2px 0 rgba(46, 62, 72, 0.12), 0 2px 4px 0 rgba(46, 62, 72, 0.12);
}
.toolkit_router_navigation_ui_bar > .toolkit_button {
  white-space: nowrap;
}

.toolkit_router_navigation_ui_bar > * {
  margin-right: 16px;
}

.toolkit_router_navigation_ui > div {
  height: 0;
  transition: height 250ms ease-in-out;
}

.toolkit_router_navigation_ui.shown > div {
  height: 50px !important;
}
/** source file: static/toolkit/modules/toolkit_application_layout.scss **/
.toolkit_application_layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: -webkit-fill-available;
}
.toolkit_application_layout > .toolkit_application_layout_top {
  flex-shrink: 0;
}
.toolkit_application_layout > .toolkit_router {
  flex-grow: 1;
  overflow: hidden;
}
.toolkit_application_layout > .toolkit_router > * {
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
}
/** source file: static/jflutter/modules/jflutter_application.scss **/
/** @fileoverview The purpose of this file is to display the application once css has loaded to avoid flash of unstyled. */
.jflutter_application {
  transition: opacity 1000ms linear;
  opacity: 1 !important;
}
/** source file: static/shopwindow/modules/shared/text_button.scss **/
button.text_button {
  color: #0088FF;
  font-size: 14px;
  padding: 8px 12px;
  font-weight: 600 !important;
  line-height: 18px;
  text-align: center;
  border-radius: 11px;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
button.text_button:hover {
  background: rgba(0, 136, 255, 0.15) !important;
  color: #0088FF !important;
}
/** source file: static/shopwindow/modules/ailabs_workspace.scss **/
/** @fileoverview A workspace background */
.ailabs_workspace {
  background-color: #fafafa;
}
/** source file: static/shopwindow/modules/ailabs_content_preview_frame.scss **/
.ailabs_content_preview_frame {
  overflow: hidden;
}
.ailabs_content_preview_frame > iframe {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}
/** source file: static/shopwindow/modules/ailabs_content_preview_popup.scss **/
.ailabs_content_preview_popup .toolkit_fullsize_dialog_topbar_content > .toolkit_link_button {
  margin-left: 22px;
  width: 126px;
}
.ailabs_content_preview_popup .ailabs_workspace {
  display: flex;
  height: 100%;
  text-align: center;
}
.ailabs_content_preview_popup .ailabs_workspace > .ailabs_content_preview_frame {
  margin: auto;
  height: 100%;
}
/** source file: static/shopwindow/modules/ailabs_content_selector.scss **/
.ailabs_content_selector {
  border: 2px solid #FE9A33;
  border-radius: 11px;
  padding: 5px 12px;
  margin: 8px 0;
  max-width: 270px;
}
.ailabs_content_selector .content_selector_title svg {
  width: 28px;
  height: 28px;
}
.ailabs_content_selector .content_selector_title span {
  font-size: 12px;
  font-weight: 600;
  color: #FE9A33;
}
.ailabs_content_selector select {
  width: 100% !important;
}
.ailabs_content_selector label {
  font-weight: 600 !important;
  color: #8B9094;
  font-size: 12px !important;
  margin-top: 5px;
}
.ailabs_content_selector button.text_button {
  margin: 5px 0px;
}
/** source file: static/shopwindow/modules/ailabs_content_thumbnail.scss **/
.ailabs_content_thumbnail img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: left top;
}
/** source file: static/shopwindow/modules/ailabs_content_selection_dialog_checkbox_input.scss **/
.ailabs_content_selection_dialog_checkbox_input .toolkit_link_button {
  margin-right: 30px;
}
/** source file: static/ella/modules/ella_backforward_button.scss **/
.toolkit_glyphbutton.ella_backforward_button {
  display: flex;
  align-content: center;
  justify-content: center;
  line-height: 0px;
  border-radius: 50%;
  border: 0;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  width: 24px;
  height: 24px;
  padding: 0 !important;
  margin: 0 !important;
}
.toolkit_glyphbutton.ella_backforward_button .toolkit_glyphbutton_content {
  display: none;
}
.toolkit_glyphbutton.ella_backforward_button .toolkit_glyphbutton_glyph {
  width: 10px;
  height: 10px;
  fill: #000;
}

/** Lame kludge */
.ella_backforward_button_back svg {
  margin-left: -2px;
}
/** source file: static/shopwindow/modules/shared/ailabs_section_component.scss **/
/** Section class */
.ailabs_section_component {
  border: 2px solid #f58220;
  border-radius: 4px;
  margin: 6px 2px;
  padding: 4px;
  box-sizing: border-box;
  width: 100%;
}
.ailabs_section_component .section_label {
  font-weight: bold;
}
/** source file: static/shopwindow/modules/shared/wire_buttons.scss **/
button.wire_delete {
  border: 1px solid #d95252;
  color: #d95252 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_delete:hover {
  color: #d95252 !important;
  border: 1px solid #d95252;
  background: #ffeded !important;
}
button.wire_delete.toolkit_control_active {
  background-color: #fff;
}
button.wire_delete svg.toolkit_svgview {
  fill: #d95252 !important;
}

button.wire_clone {
  border: 1px solid #787878;
  color: #787878 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_clone:hover {
  color: #787878 !important;
  border: 1px solid #787878;
  background: #f5f5f5 !important;
}
button.wire_clone.toolkit_control_active {
  background-color: #fff;
}
button.wire_clone svg.toolkit_svgview {
  fill: #787878 !important;
}

button.wire_copylink {
  border: 1px solid #ff8100;
  color: #121212 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_copylink:hover {
  color: #121212 !important;
  border: 1px solid #ff8100;
  background: #ffeddb !important;
}
button.wire_copylink.toolkit_control_active {
  background-color: #fff;
}
button.wire_copylink svg.toolkit_svgview {
  fill: #ff8100 !important;
}

button.wire_whatsapp {
  border: 1px solid #2bd02b;
  color: #01a601 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_whatsapp:hover {
  color: #01a601 !important;
  border: 1px solid #2bd02b;
  background: #d8f9d8 !important;
}
button.wire_whatsapp.toolkit_control_active {
  background-color: #fff;
}
button.wire_whatsapp svg.toolkit_svgview {
  fill: #2bd02b !important;
}

button.wire_blue {
  border: 1px solid #0088ff;
  color: #0088ff !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_blue:hover {
  color: #0088ff !important;
  border: 1px solid #0088ff;
  background: #e4f3ff !important;
}
button.wire_blue.toolkit_control_active {
  background-color: #fff;
}
button.wire_blue svg.toolkit_svgview {
  fill: #0088ff !important;
}

button.wire_grey {
  border: 1px solid #d8d8d8;
  color: #121212 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_grey:hover {
  color: #121212 !important;
  border: 1px solid #d8d8d8;
  background: #f1f1f1 !important;
}
button.wire_grey.toolkit_control_active {
  background-color: #fff;
}
button.wire_grey svg.toolkit_svgview {
  fill: #d8d8d8 !important;
}

button.wire_snooze {
  border: 1px solid #f83837;
  color: #f83837 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_snooze:hover {
  color: #f83837 !important;
  border: 1px solid #f83837;
  background: #ffe8e8 !important;
}
button.wire_snooze.toolkit_control_active {
  background-color: #fff;
}
button.wire_snooze svg.toolkit_svgview {
  fill: #f83837 !important;
}

button.wire_letsdothis {
  border: 1px solid #0188ff;
  color: #121212 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_letsdothis:hover {
  color: #121212 !important;
  border: 1px solid #0188ff;
  background: #f3f9ff !important;
}
button.wire_letsdothis.toolkit_control_active {
  background-color: #fff;
}
button.wire_letsdothis svg.toolkit_svgview {
  fill: #0188ff !important;
}

button.wire_time {
  border: 1px solid #979797;
  color: #121212 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_time:hover {
  color: #121212 !important;
  border: 1px solid #979797;
  background: #f3f9ff !important;
}
button.wire_time.toolkit_control_active {
  background-color: #fff;
}
button.wire_time svg.toolkit_svgview {
  fill: #979797 !important;
}

button.wire_bot {
  border: 1px solid #0088ff;
  color: #293158 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
button.wire_bot:hover {
  color: #293158 !important;
  border: 1px solid #0088ff;
  background: #e5f2ff !important;
}
button.wire_bot.toolkit_control_active {
  background-color: #fff;
}
button.wire_bot svg.toolkit_svgview {
  fill: #0088ff !important;
}
button.wire_bot.selected {
  color: #fff !important;
  background: #0088ff;
}
button.wire_bot.selected:hover {
  background: #0088ff !important;
}

button.wire_add_answer {
  border: 1px solid #0088ff;
  color: #0088ff !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  margin: 5px 0px;
  font-weight: 500;
}
button.wire_add_answer:hover {
  color: #0088ff !important;
  border: 1px solid #0088ff;
  background: #f3f9ff !important;
}
button.wire_add_answer.toolkit_control_active {
  background-color: #fff;
}
button.wire_add_answer svg.toolkit_svgview {
  fill: #0088ff !important;
}
/** source file: static/shopwindow/modules/shared/swj_playitem_button.scss **/
.swj_playitem_button {
  position: relative;
}
.swj_playitem_button .toolkit_spriteview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/** source file: static/shopwindow/modules/shared/swj_waveform_movie.scss **/
div.swj_waveform_movie {
  height: 70px;
  width: 70px;
  max-width: 10vw;
  max-height: 10vw;
  text-align: center;
}

div.swj_waveform_movie > div {
  width: 5%;
  height: 100%;
  margin: 0 2px 0 2px;
  display: inline-block;
  border-radius: 10px;
  vertical-align: middle;
}

div.swj_waveform_movie.blue > div {
  background-color: #77aaff;
}

div.swj_waveform_movie.red > div {
  background-color: #e94545;
}
/** source file: static/shopwindow/modules/shared/shopwindowshared_progress_watcher.scss **/
.toolkit_popupbase.shopwindowshared_progress_watcher {
  display: flex;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lato";
  /** Theme */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  background: #fff;
  border: 0;
  outline: 0;
  padding: 12px;
}
.toolkit_popupbase.shopwindowshared_progress_watcher > .toolkit_text_label {
  min-width: 36px;
  display: inline-block;
  text-align: right;
  line-height: 18px;
  margin-left: 20px;
  /** Font */
  color: #33475b;
  font-weight: 600;
  font-size: 16px;
}
/** source file: static/shopwindow/modules/shared/checkbox_section_guard.scss **/
/** Checkbox section group */
.checkbox_section_guard_header {
  display: flex;
  flex-direction: row;
  font-weight: bold !important;
}

.checkbox_section_guard_status_label {
  margin: 8px 8px 8px 4px !important;
  float: right;
  color: red;
}

.checkbox_section_guard_status_label.on {
  /** Green Light by Ella "Lorde" Yelich-O'Connor */
  color: green;
}
/** source file: static/shopwindow/modules/shared/ailabs_branded_component.scss **/
.ailabs_branded_component {
  position: relative;
  overflow: hidden;
}
.ailabs_branded_component svg polygon {
  fill: #ffffff;
}
.ailabs_branded_component > .mask_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/** source file: static/shopwindow/modules/shared/ailabs_branded_image_component.scss **/
.ailabs_branded_image_component > .content_element {
  height: 100%;
}
.ailabs_branded_image_component > .content_element > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/** source file: static/shopwindow/modules/shared/ailabs_linear_gradient_component.scss **/
.ailabs_linear_gradient_component {
  height: 40px;
  margin: 10px 0;
}
/** source file: static/shopwindow/modules/shared/large_edit_button.scss **/
button.large_edit_button {
  padding: 4px 12px;
  font-size: 12px;
}
/** source file: static/shopwindow/modules/shared/go_back_button.scss **/
a.go_back_button {
  cursor: pointer;
  outline: none;
  background: #fff;
  border: none;
  display: inline-block;
  font-size: 16px !important;
  color: #787878;
  padding: 4px 4px;
  text-decoration: none !important;
  margin: 5px 0px 0px 14px;
  vertical-align: middle;
  transition: all 0.1s ease;
}
a.go_back_button:hover {
  color: #121212;
}
a.go_back_button:hover:before {
  margin-left: -2px;
  margin-right: 7px;
}
a.go_back_button:before {
  content: url("/dg5_platform/assets_static/static/shopwindow/assets/shared/back_arrow_blue.svg");
  width: 10px;
  height: 19px;
  transition: all 0.1s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  display: inline-block;
  margin-left: 0px;
  margin-right: 5px;
}
/** source file: static/shopwindow/modules/shared/call_alert_container.scss **/
.call_alert_container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.call_alert_container > .content {
  z-index: 100;
}
.call_alert_container > .circle {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  z-index: 10;
  opacity: 0;
  animation: largeCallAlertScaleIn 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}
@keyframes largeCallAlertScaleIn {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0.5;
  }
  to {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}
.call_alert_container.mini_call_alert > .circle {
  animation: smallCallAlertScaleIn 2s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}
@keyframes smallCallAlertScaleIn {
  from {
    transform: scale(0.2, 0.2);
    opacity: 0.5;
  }
  to {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
/** source file: static/shopwindow/modules/shared/notifications_button.scss **/
@keyframes new-actions-counter-blinker {
  from {
    background: #ea8e85;
  }
  to {
    background: #ec4636;
  }
}
/** @fileoverview A common notifications button */
.notifications_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  background-color: #F5F5F5;
}
.notifications_button:hover {
  background-color: #E4F3FF;
}
.notifications_button .counter {
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  padding: 2px;
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  background-color: #ec4636;
  position: absolute;
  top: -5px;
  right: -5px;
}
.notifications_button .counter.blink {
  animation-name: new-actions-counter-blinker;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0, 0, 1);
  animation-duration: 1s;
}
/** source file: static/shopwindow/modules/shared/video_control.scss **/
/** @fileoverview Individual video control. */
.video_control {
  display: grid;
  justify-items: center;
  row-gap: 6px;
}
.video_control .toolkit_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  width: 58px;
  height: 58px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #4B4B4B;
  position: relative;
  transition: background-color 0.2s ease;
}
.video_control .toolkit_button svg {
  width: 22px !important;
  height: 22px !important;
}
.video_control .toolkit_button.toolkit_control_active {
  background-color: #A5A5A5;
}
.video_control .toolkit_button:hover {
  background: #5f5f5f;
}
.video_control.active_is_off .toolkit_button.toolkit_control_active::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(315deg);
  width: 2px;
  height: 30px;
  background-color: #FFFFFF;
}
.video_control .toolkit_text_label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 13px;
}
/** source file: static/shopwindow/modules/shared/display_rules_editor.scss **/
.display_rules_editor {
  cursor: auto !important;
  width: 100% !important;
  margin-top: 20px !important;
  box-sizing: border-box !important;
}
.display_rules_editor:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3) !important;
}
.display_rules_editor .location_card_container {
  background: #EEF0F2;
  padding: 5px;
  margin-top: 5px;
  border-radius: 5px;
}
.display_rules_editor .location_card_container .location_card {
  width: 100%;
  box-sizing: border-box;
  cursor: auto;
  margin-bottom: 10px;
}
.display_rules_editor .location_card_container .location_card .toolkit_checkbox_group > * {
  padding: 0px;
  margin: 0px 0px 3px 0px;
}
.display_rules_editor .location_card_container .location_card .toolkit_dropdown_menu button {
  margin: 0px !important;
}
.display_rules_editor .location_card_container .location_card:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.display_rules_editor .location_card_container .location_card.overridden {
  border: 2px solid #FE9A33 !important;
}
.display_rules_editor .location_card_container .location_card.active {
  border: 2px solid #01A601 !important;
}
.display_rules_editor .location_card_container button.add_location_btn {
  margin-left: 0px !important;
  padding: 8px 4px;
  color: #0088FF;
  font-weight: 600;
}
.display_rules_editor .location_card_container button.add_location_btn:hover {
  background: rgba(0, 136, 255, 0.15) !important;
}
/** source file: static/shopwindow/modules/shared/confetti.scss **/
.confetti_component {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.confetti_component .wrapper {
  position: relative;
  min-height: 100vh;
}
.confetti_component [class|=confetti] {
  position: absolute;
}
.confetti_component .confetti-0 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 14%;
  opacity: 0.5193826506;
  transform: rotate(261.3713950789deg);
  animation: drop-0 4.4986827158s 0.886868251s;
}
@keyframes drop-0 {
  100% {
    top: 110%;
    left: 15%;
  }
}
.confetti_component .confetti-1 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 16%;
  opacity: 0.5434409615;
  transform: rotate(250.9719263544deg);
  animation: drop-1 4.7114451903s 0.8739495056s;
}
@keyframes drop-1 {
  100% {
    top: 110%;
    left: 19%;
  }
}
.confetti_component .confetti-2 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 68%;
  opacity: 1.0492660877;
  transform: rotate(322.6917425205deg);
  animation: drop-2 4.440833351s 0.3928613301s;
}
@keyframes drop-2 {
  100% {
    top: 110%;
    left: 69%;
  }
}
.confetti_component .confetti-3 {
  width: 6px;
  height: 2.4px;
  background-color: #263672;
  top: -10%;
  left: 56%;
  opacity: 1.3155518791;
  transform: rotate(279.9997325592deg);
  animation: drop-3 4.6005897837s 0.0284151254s;
}
@keyframes drop-3 {
  100% {
    top: 110%;
    left: 60%;
  }
}
.confetti_component .confetti-4 {
  width: 3px;
  height: 1.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 15%;
  opacity: 1.2836197215;
  transform: rotate(14.3813339173deg);
  animation: drop-4 4.3045988329s 0.3968307408s;
}
@keyframes drop-4 {
  100% {
    top: 110%;
    left: 21%;
  }
}
.confetti_component .confetti-5 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 79%;
  opacity: 0.9707011554;
  transform: rotate(27.1482262672deg);
  animation: drop-5 4.1037225902s 0.2263868978s;
}
@keyframes drop-5 {
  100% {
    top: 110%;
    left: 87%;
  }
}
.confetti_component .confetti-6 {
  width: 4px;
  height: 1.6px;
  background-color: #ffbf00;
  top: -10%;
  left: 92%;
  opacity: 0.8253142188;
  transform: rotate(133.4818464341deg);
  animation: drop-6 4.6102159272s 0.691862993s;
}
@keyframes drop-6 {
  100% {
    top: 110%;
    left: 104%;
  }
}
.confetti_component .confetti-7 {
  width: 5px;
  height: 2px;
  background-color: #263672;
  top: -10%;
  left: 7%;
  opacity: 0.9262997998;
  transform: rotate(2.5909797474deg);
  animation: drop-7 4.6009062002s 0.8294962574s;
}
@keyframes drop-7 {
  100% {
    top: 110%;
    left: 12%;
  }
}
.confetti_component .confetti-8 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 93%;
  opacity: 0.6657974202;
  transform: rotate(179.291337603deg);
  animation: drop-8 4.3991284482s 0.9851637437s;
}
@keyframes drop-8 {
  100% {
    top: 110%;
    left: 99%;
  }
}
.confetti_component .confetti-9 {
  width: 6px;
  height: 2.4px;
  background-color: #263672;
  top: -10%;
  left: 63%;
  opacity: 1.4618462783;
  transform: rotate(152.5473281425deg);
  animation: drop-9 4.7039938415s 0.1450445057s;
}
@keyframes drop-9 {
  100% {
    top: 110%;
    left: 65%;
  }
}
.confetti_component .confetti-10 {
  width: 4px;
  height: 1.6px;
  background-color: #263672;
  top: -10%;
  left: 81%;
  opacity: 1.3511475114;
  transform: rotate(227.5256571221deg);
  animation: drop-10 4.4971875385s 0.6310504464s;
}
@keyframes drop-10 {
  100% {
    top: 110%;
    left: 96%;
  }
}
.confetti_component .confetti-11 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 4%;
  opacity: 0.8280029541;
  transform: rotate(77.4459807374deg);
  animation: drop-11 4.7308733787s 0.5361625743s;
}
@keyframes drop-11 {
  100% {
    top: 110%;
    left: 13%;
  }
}
.confetti_component .confetti-12 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 11%;
  opacity: 0.9792286234;
  transform: rotate(308.1195973459deg);
  animation: drop-12 4.7616715603s 0.1524598969s;
}
@keyframes drop-12 {
  100% {
    top: 110%;
    left: 18%;
  }
}
.confetti_component .confetti-13 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 5%;
  opacity: 0.80143186;
  transform: rotate(238.5808066314deg);
  animation: drop-13 4.9015616011s 0.7237838506s;
}
@keyframes drop-13 {
  100% {
    top: 110%;
    left: 12%;
  }
}
.confetti_component .confetti-14 {
  width: 8px;
  height: 3.2px;
  background-color: #d13447;
  top: -10%;
  left: 43%;
  opacity: 1.372218719;
  transform: rotate(354.3049088805deg);
  animation: drop-14 4.0371248393s 0.8658817506s;
}
@keyframes drop-14 {
  100% {
    top: 110%;
    left: 50%;
  }
}
.confetti_component .confetti-15 {
  width: 5px;
  height: 2px;
  background-color: #d13447;
  top: -10%;
  left: 82%;
  opacity: 1.1868381228;
  transform: rotate(99.6255605881deg);
  animation: drop-15 4.1380386177s 0.3071617958s;
}
@keyframes drop-15 {
  100% {
    top: 110%;
    left: 95%;
  }
}
.confetti_component .confetti-16 {
  width: 1px;
  height: 0.4px;
  background-color: #263672;
  top: -10%;
  left: 49%;
  opacity: 1.1060537966;
  transform: rotate(330.8105372684deg);
  animation: drop-16 4.0423281034s 0.6265381551s;
}
@keyframes drop-16 {
  100% {
    top: 110%;
    left: 62%;
  }
}
.confetti_component .confetti-17 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 76%;
  opacity: 0.7771163451;
  transform: rotate(60.953233553deg);
  animation: drop-17 4.0134934679s 0.7697079818s;
}
@keyframes drop-17 {
  100% {
    top: 110%;
    left: 78%;
  }
}
.confetti_component .confetti-18 {
  width: 3px;
  height: 1.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 17%;
  opacity: 0.5199516586;
  transform: rotate(34.1175874854deg);
  animation: drop-18 4.3090754214s 0.2800298473s;
}
@keyframes drop-18 {
  100% {
    top: 110%;
    left: 20%;
  }
}
.confetti_component .confetti-19 {
  width: 8px;
  height: 3.2px;
  background-color: #d13447;
  top: -10%;
  left: 90%;
  opacity: 1.2792968998;
  transform: rotate(15.2196241686deg);
  animation: drop-19 4.2267890867s 0.3422155386s;
}
@keyframes drop-19 {
  100% {
    top: 110%;
    left: 92%;
  }
}
.confetti_component .confetti-20 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 44%;
  opacity: 1.4192477185;
  transform: rotate(67.7400872403deg);
  animation: drop-20 4.3018873076s 0.7234061316s;
}
@keyframes drop-20 {
  100% {
    top: 110%;
    left: 54%;
  }
}
.confetti_component .confetti-21 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 30%;
  opacity: 1.4572044566;
  transform: rotate(123.4858045756deg);
  animation: drop-21 4.6129457319s 0.7040669371s;
}
@keyframes drop-21 {
  100% {
    top: 110%;
    left: 33%;
  }
}
.confetti_component .confetti-22 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 32%;
  opacity: 0.5555605615;
  transform: rotate(289.8750061732deg);
  animation: drop-22 4.6600959374s 0.9554775937s;
}
@keyframes drop-22 {
  100% {
    top: 110%;
    left: 40%;
  }
}
.confetti_component .confetti-23 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 82%;
  opacity: 1.4102625218;
  transform: rotate(281.283901611deg);
  animation: drop-23 4.291984799s 0.7957988455s;
}
@keyframes drop-23 {
  100% {
    top: 110%;
    left: 90%;
  }
}
.confetti_component .confetti-24 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 78%;
  opacity: 1.0100561136;
  transform: rotate(134.2749331574deg);
  animation: drop-24 4.8101411091s 0.1961106604s;
}
@keyframes drop-24 {
  100% {
    top: 110%;
    left: 86%;
  }
}
.confetti_component .confetti-25 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 48%;
  opacity: 0.7202043478;
  transform: rotate(202.0345972413deg);
  animation: drop-25 4.6599651363s 0.7219869919s;
}
@keyframes drop-25 {
  100% {
    top: 110%;
    left: 52%;
  }
}
.confetti_component .confetti-26 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 34%;
  opacity: 0.7473901746;
  transform: rotate(43.4220095009deg);
  animation: drop-26 4.7642530648s 0.4638833353s;
}
@keyframes drop-26 {
  100% {
    top: 110%;
    left: 37%;
  }
}
.confetti_component .confetti-27 {
  width: 6px;
  height: 2.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 4%;
  opacity: 0.6319570096;
  transform: rotate(118.0482483305deg);
  animation: drop-27 4.7362588644s 0.7189384244s;
}
@keyframes drop-27 {
  100% {
    top: 110%;
    left: 14%;
  }
}
.confetti_component .confetti-28 {
  width: 7px;
  height: 2.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 20%;
  opacity: 0.9088436334;
  transform: rotate(271.8513995904deg);
  animation: drop-28 4.2508731159s 0.4341659932s;
}
@keyframes drop-28 {
  100% {
    top: 110%;
    left: 21%;
  }
}
.confetti_component .confetti-29 {
  width: 2px;
  height: 0.8px;
  background-color: #d13447;
  top: -10%;
  left: 91%;
  opacity: 0.8893955289;
  transform: rotate(227.0754833687deg);
  animation: drop-29 4.241241931s 0.9955559051s;
}
@keyframes drop-29 {
  100% {
    top: 110%;
    left: 95%;
  }
}
.confetti_component .confetti-30 {
  width: 5px;
  height: 2px;
  background-color: #263672;
  top: -10%;
  left: 97%;
  opacity: 1.4389104989;
  transform: rotate(120.6154958647deg);
  animation: drop-30 4.4982167619s 0.7434167786s;
}
@keyframes drop-30 {
  100% {
    top: 110%;
    left: 106%;
  }
}
.confetti_component .confetti-31 {
  width: 6px;
  height: 2.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 95%;
  opacity: 1.3790698976;
  transform: rotate(327.9959855883deg);
  animation: drop-31 4.796949157s 0.6250735976s;
}
@keyframes drop-31 {
  100% {
    top: 110%;
    left: 101%;
  }
}
.confetti_component .confetti-32 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 10%;
  opacity: 1.211787041;
  transform: rotate(100.5664096212deg);
  animation: drop-32 4.5393968754s 0.6041865213s;
}
@keyframes drop-32 {
  100% {
    top: 110%;
    left: 11%;
  }
}
.confetti_component .confetti-33 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 49%;
  opacity: 0.9281992246;
  transform: rotate(276.5852110549deg);
  animation: drop-33 4.6911091101s 0.4228499538s;
}
@keyframes drop-33 {
  100% {
    top: 110%;
    left: 61%;
  }
}
.confetti_component .confetti-34 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 80%;
  opacity: 0.5507984005;
  transform: rotate(151.5866961382deg);
  animation: drop-34 4.9266128713s 0.1490171264s;
}
@keyframes drop-34 {
  100% {
    top: 110%;
    left: 92%;
  }
}
.confetti_component .confetti-35 {
  width: 5px;
  height: 2px;
  background-color: #d13447;
  top: -10%;
  left: 88%;
  opacity: 1.2544064386;
  transform: rotate(57.9501285211deg);
  animation: drop-35 4.067779318s 0.5169227689s;
}
@keyframes drop-35 {
  100% {
    top: 110%;
    left: 94%;
  }
}
.confetti_component .confetti-36 {
  width: 5px;
  height: 2px;
  background-color: #d13447;
  top: -10%;
  left: 92%;
  opacity: 1.0228435628;
  transform: rotate(49.227024978deg);
  animation: drop-36 4.1651844996s 0.2168898387s;
}
@keyframes drop-36 {
  100% {
    top: 110%;
    left: 106%;
  }
}
.confetti_component .confetti-37 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 43%;
  opacity: 0.7474924111;
  transform: rotate(135.8051587903deg);
  animation: drop-37 4.5877713943s 0.6829090717s;
}
@keyframes drop-37 {
  100% {
    top: 110%;
    left: 58%;
  }
}
.confetti_component .confetti-38 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 80%;
  opacity: 1.1160950758;
  transform: rotate(166.676832786deg);
  animation: drop-38 4.2243967881s 0.9151559562s;
}
@keyframes drop-38 {
  100% {
    top: 110%;
    left: 89%;
  }
}
.confetti_component .confetti-39 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 86%;
  opacity: 1.2040146434;
  transform: rotate(83.6037020554deg);
  animation: drop-39 4.4240958677s 0.8789339796s;
}
@keyframes drop-39 {
  100% {
    top: 110%;
    left: 90%;
  }
}
.confetti_component .confetti-40 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 88%;
  opacity: 1.1299554915;
  transform: rotate(93.1180777634deg);
  animation: drop-40 4.4194514298s 0.5110762249s;
}
@keyframes drop-40 {
  100% {
    top: 110%;
    left: 92%;
  }
}
.confetti_component .confetti-41 {
  width: 8px;
  height: 3.2px;
  background-color: #d13447;
  top: -10%;
  left: 3%;
  opacity: 0.8760630221;
  transform: rotate(297.3080302535deg);
  animation: drop-41 4.450986379s 0.1011563533s;
}
@keyframes drop-41 {
  100% {
    top: 110%;
    left: 16%;
  }
}
.confetti_component .confetti-42 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 38%;
  opacity: 1.2250324856;
  transform: rotate(316.7667189127deg);
  animation: drop-42 4.0164493555s 0.2338858811s;
}
@keyframes drop-42 {
  100% {
    top: 110%;
    left: 47%;
  }
}
.confetti_component .confetti-43 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 11%;
  opacity: 0.9539464847;
  transform: rotate(171.0467697568deg);
  animation: drop-43 4.7299045855s 0.4956503176s;
}
@keyframes drop-43 {
  100% {
    top: 110%;
    left: 18%;
  }
}
.confetti_component .confetti-44 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 49%;
  opacity: 0.8196143504;
  transform: rotate(165.8740827932deg);
  animation: drop-44 4.8767966995s 0.0459154003s;
}
@keyframes drop-44 {
  100% {
    top: 110%;
    left: 52%;
  }
}
.confetti_component .confetti-45 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 49%;
  opacity: 1.350618323;
  transform: rotate(48.104669741deg);
  animation: drop-45 4.6809313426s 0.3317142202s;
}
@keyframes drop-45 {
  100% {
    top: 110%;
    left: 58%;
  }
}
.confetti_component .confetti-46 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 72%;
  opacity: 1.2497445488;
  transform: rotate(49.2306613117deg);
  animation: drop-46 4.243117775s 0.8825040161s;
}
@keyframes drop-46 {
  100% {
    top: 110%;
    left: 82%;
  }
}
.confetti_component .confetti-47 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 52%;
  opacity: 0.7842798717;
  transform: rotate(29.7732174004deg);
  animation: drop-47 4.8713297859s 0.0296230384s;
}
@keyframes drop-47 {
  100% {
    top: 110%;
    left: 53%;
  }
}
.confetti_component .confetti-48 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 33%;
  opacity: 0.6800398208;
  transform: rotate(177.0677169616deg);
  animation: drop-48 4.264564571s 0.8831201665s;
}
@keyframes drop-48 {
  100% {
    top: 110%;
    left: 40%;
  }
}
.confetti_component .confetti-49 {
  width: 3px;
  height: 1.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 2%;
  opacity: 0.9910095542;
  transform: rotate(314.8161361498deg);
  animation: drop-49 4.7236060093s 0.8873931472s;
}
@keyframes drop-49 {
  100% {
    top: 110%;
    left: 5%;
  }
}
.confetti_component .confetti-50 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 10%;
  opacity: 1.3818607019;
  transform: rotate(73.3194985572deg);
  animation: drop-50 4.312146053s 0.3808627125s;
}
@keyframes drop-50 {
  100% {
    top: 110%;
    left: 15%;
  }
}
.confetti_component .confetti-51 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 41%;
  opacity: 1.0383155575;
  transform: rotate(206.8337998481deg);
  animation: drop-51 4.2204745583s 0.5333043638s;
}
@keyframes drop-51 {
  100% {
    top: 110%;
    left: 55%;
  }
}
.confetti_component .confetti-52 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 53%;
  opacity: 0.8276566346;
  transform: rotate(337.4397699499deg);
  animation: drop-52 4.2295333965s 0.6689852996s;
}
@keyframes drop-52 {
  100% {
    top: 110%;
    left: 57%;
  }
}
.confetti_component .confetti-53 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 10%;
  opacity: 0.682441337;
  transform: rotate(301.1134425262deg);
  animation: drop-53 4.7259489038s 0.1380835968s;
}
@keyframes drop-53 {
  100% {
    top: 110%;
    left: 20%;
  }
}
.confetti_component .confetti-54 {
  width: 6px;
  height: 2.4px;
  background-color: #263672;
  top: -10%;
  left: 60%;
  opacity: 0.5183113406;
  transform: rotate(242.1953982568deg);
  animation: drop-54 4.7650801438s 0.343592938s;
}
@keyframes drop-54 {
  100% {
    top: 110%;
    left: 64%;
  }
}
.confetti_component .confetti-55 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 62%;
  opacity: 0.9217665777;
  transform: rotate(54.1925874279deg);
  animation: drop-55 4.6858279391s 0.8264010453s;
}
@keyframes drop-55 {
  100% {
    top: 110%;
    left: 68%;
  }
}
.confetti_component .confetti-56 {
  width: 1px;
  height: 0.4px;
  background-color: #263672;
  top: -10%;
  left: 46%;
  opacity: 1.0119913779;
  transform: rotate(54.1357493217deg);
  animation: drop-56 4.7456492399s 0.7371478483s;
}
@keyframes drop-56 {
  100% {
    top: 110%;
    left: 54%;
  }
}
.confetti_component .confetti-57 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 43%;
  opacity: 1.0656104661;
  transform: rotate(110.4922236556deg);
  animation: drop-57 4.0902008563s 0.4795104476s;
}
@keyframes drop-57 {
  100% {
    top: 110%;
    left: 45%;
  }
}
.confetti_component .confetti-58 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 13%;
  opacity: 1.4473288277;
  transform: rotate(201.2778868187deg);
  animation: drop-58 4.7008917771s 0.4169758186s;
}
@keyframes drop-58 {
  100% {
    top: 110%;
    left: 19%;
  }
}
.confetti_component .confetti-59 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 43%;
  opacity: 0.9606480437;
  transform: rotate(58.0209221041deg);
  animation: drop-59 4.256984067s 0.1105850604s;
}
@keyframes drop-59 {
  100% {
    top: 110%;
    left: 55%;
  }
}
.confetti_component .confetti-60 {
  width: 7px;
  height: 2.8px;
  background-color: #d13447;
  top: -10%;
  left: 58%;
  opacity: 1.1955431002;
  transform: rotate(249.1221354454deg);
  animation: drop-60 4.4674265693s 0.306584503s;
}
@keyframes drop-60 {
  100% {
    top: 110%;
    left: 69%;
  }
}
.confetti_component .confetti-61 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 100%;
  opacity: 0.653246181;
  transform: rotate(321.4967187399deg);
  animation: drop-61 4.0586126358s 0.402289721s;
}
@keyframes drop-61 {
  100% {
    top: 110%;
    left: 113%;
  }
}
.confetti_component .confetti-62 {
  width: 1px;
  height: 0.4px;
  background-color: #263672;
  top: -10%;
  left: 65%;
  opacity: 1.3525264514;
  transform: rotate(352.2393232275deg);
  animation: drop-62 4.9332308102s 0.7924459055s;
}
@keyframes drop-62 {
  100% {
    top: 110%;
    left: 66%;
  }
}
.confetti_component .confetti-63 {
  width: 7px;
  height: 2.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 27%;
  opacity: 1.1563534154;
  transform: rotate(9.3541393802deg);
  animation: drop-63 4.5729735019s 0.4266929339s;
}
@keyframes drop-63 {
  100% {
    top: 110%;
    left: 35%;
  }
}
.confetti_component .confetti-64 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 72%;
  opacity: 0.7336393116;
  transform: rotate(69.2965052589deg);
  animation: drop-64 4.7738543206s 0.9306291254s;
}
@keyframes drop-64 {
  100% {
    top: 110%;
    left: 76%;
  }
}
.confetti_component .confetti-65 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 56%;
  opacity: 1.257837495;
  transform: rotate(80.1895321388deg);
  animation: drop-65 4.6876587617s 0.099153725s;
}
@keyframes drop-65 {
  100% {
    top: 110%;
    left: 69%;
  }
}
.confetti_component .confetti-66 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 20%;
  opacity: 1.3023294377;
  transform: rotate(13.9831526118deg);
  animation: drop-66 4.7740712842s 0.447124532s;
}
@keyframes drop-66 {
  100% {
    top: 110%;
    left: 31%;
  }
}
.confetti_component .confetti-67 {
  width: 4px;
  height: 1.6px;
  background-color: #ffbf00;
  top: -10%;
  left: 88%;
  opacity: 0.6023146847;
  transform: rotate(323.7999065978deg);
  animation: drop-67 4.7492134146s 0.7834578515s;
}
@keyframes drop-67 {
  100% {
    top: 110%;
    left: 103%;
  }
}
.confetti_component .confetti-68 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 62%;
  opacity: 0.8906874201;
  transform: rotate(78.2594648092deg);
  animation: drop-68 4.2863029677s 0.3602224778s;
}
@keyframes drop-68 {
  100% {
    top: 110%;
    left: 66%;
  }
}
.confetti_component .confetti-69 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 39%;
  opacity: 0.8600878054;
  transform: rotate(324.7209395041deg);
  animation: drop-69 4.5059327281s 0.9899067171s;
}
@keyframes drop-69 {
  100% {
    top: 110%;
    left: 42%;
  }
}
.confetti_component .confetti-70 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 66%;
  opacity: 1.2723399923;
  transform: rotate(303.1617368072deg);
  animation: drop-70 4.3115090463s 0.0543831786s;
}
@keyframes drop-70 {
  100% {
    top: 110%;
    left: 71%;
  }
}
.confetti_component .confetti-71 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 10%;
  opacity: 0.9102932134;
  transform: rotate(204.4381417831deg);
  animation: drop-71 4.5645381627s 0.8714700746s;
}
@keyframes drop-71 {
  100% {
    top: 110%;
    left: 19%;
  }
}
.confetti_component .confetti-72 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 19%;
  opacity: 1.3717915305;
  transform: rotate(343.7673562748deg);
  animation: drop-72 4.3719996963s 0.8510341699s;
}
@keyframes drop-72 {
  100% {
    top: 110%;
    left: 24%;
  }
}
.confetti_component .confetti-73 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 46%;
  opacity: 1.0513933116;
  transform: rotate(89.0233886515deg);
  animation: drop-73 4.3467082214s 0.2022751841s;
}
@keyframes drop-73 {
  100% {
    top: 110%;
    left: 60%;
  }
}
.confetti_component .confetti-74 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 61%;
  opacity: 1.2116762347;
  transform: rotate(161.1711274537deg);
  animation: drop-74 4.6197555263s 0.2680484435s;
}
@keyframes drop-74 {
  100% {
    top: 110%;
    left: 71%;
  }
}
.confetti_component .confetti-75 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 14%;
  opacity: 0.6919698663;
  transform: rotate(178.9768074486deg);
  animation: drop-75 4.4184593706s 0.8975889333s;
}
@keyframes drop-75 {
  100% {
    top: 110%;
    left: 24%;
  }
}
.confetti_component .confetti-76 {
  width: 2px;
  height: 0.8px;
  background-color: #d13447;
  top: -10%;
  left: 65%;
  opacity: 1.2886141674;
  transform: rotate(240.640706432deg);
  animation: drop-76 4.4547360051s 0.4309107612s;
}
@keyframes drop-76 {
  100% {
    top: 110%;
    left: 74%;
  }
}
.confetti_component .confetti-77 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 81%;
  opacity: 0.8645078193;
  transform: rotate(40.5148998299deg);
  animation: drop-77 4.3266490661s 0.0272522869s;
}
@keyframes drop-77 {
  100% {
    top: 110%;
    left: 96%;
  }
}
.confetti_component .confetti-78 {
  width: 6px;
  height: 2.4px;
  background-color: #263672;
  top: -10%;
  left: 94%;
  opacity: 1.4912832468;
  transform: rotate(47.9371415561deg);
  animation: drop-78 4.2831294382s 0.6712480197s;
}
@keyframes drop-78 {
  100% {
    top: 110%;
    left: 97%;
  }
}
.confetti_component .confetti-79 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 87%;
  opacity: 1.2449831766;
  transform: rotate(273.1084467565deg);
  animation: drop-79 4.7696599689s 0.580710117s;
}
@keyframes drop-79 {
  100% {
    top: 110%;
    left: 97%;
  }
}
.confetti_component .confetti-80 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 35%;
  opacity: 1.2733245989;
  transform: rotate(160.1605070929deg);
  animation: drop-80 4.8030384993s 0.7725258818s;
}
@keyframes drop-80 {
  100% {
    top: 110%;
    left: 47%;
  }
}
.confetti_component .confetti-81 {
  width: 6px;
  height: 2.4px;
  background-color: #263672;
  top: -10%;
  left: 69%;
  opacity: 1.2208853271;
  transform: rotate(61.0259041864deg);
  animation: drop-81 4.244946145s 0.1680869774s;
}
@keyframes drop-81 {
  100% {
    top: 110%;
    left: 77%;
  }
}
.confetti_component .confetti-82 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 64%;
  opacity: 1.3166671383;
  transform: rotate(358.4854299336deg);
  animation: drop-82 4.9882612706s 0.5047956908s;
}
@keyframes drop-82 {
  100% {
    top: 110%;
    left: 65%;
  }
}
.confetti_component .confetti-83 {
  width: 2px;
  height: 0.8px;
  background-color: #d13447;
  top: -10%;
  left: 81%;
  opacity: 1.0962564723;
  transform: rotate(14.3553274294deg);
  animation: drop-83 4.9406005595s 0.3435615913s;
}
@keyframes drop-83 {
  100% {
    top: 110%;
    left: 87%;
  }
}
.confetti_component .confetti-84 {
  width: 5px;
  height: 2px;
  background-color: #263672;
  top: -10%;
  left: 73%;
  opacity: 1.4886346446;
  transform: rotate(140.1620644054deg);
  animation: drop-84 4.5836601471s 0.7690838488s;
}
@keyframes drop-84 {
  100% {
    top: 110%;
    left: 76%;
  }
}
.confetti_component .confetti-85 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 66%;
  opacity: 1.2222663881;
  transform: rotate(318.3140029082deg);
  animation: drop-85 4.5097009533s 0.6264624852s;
}
@keyframes drop-85 {
  100% {
    top: 110%;
    left: 75%;
  }
}
.confetti_component .confetti-86 {
  width: 8px;
  height: 3.2px;
  background-color: #d13447;
  top: -10%;
  left: 72%;
  opacity: 0.8232104298;
  transform: rotate(320.2574616819deg);
  animation: drop-86 4.9531365568s 0.8414440466s;
}
@keyframes drop-86 {
  100% {
    top: 110%;
    left: 82%;
  }
}
.confetti_component .confetti-87 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 9%;
  opacity: 1.1999716365;
  transform: rotate(67.5289494384deg);
  animation: drop-87 4.135066139s 0.3371146885s;
}
@keyframes drop-87 {
  100% {
    top: 110%;
    left: 13%;
  }
}
.confetti_component .confetti-88 {
  width: 4px;
  height: 1.6px;
  background-color: #ffbf00;
  top: -10%;
  left: 35%;
  opacity: 0.6114536383;
  transform: rotate(55.3030128402deg);
  animation: drop-88 4.1017730714s 0.0577961936s;
}
@keyframes drop-88 {
  100% {
    top: 110%;
    left: 36%;
  }
}
.confetti_component .confetti-89 {
  width: 4px;
  height: 1.6px;
  background-color: #ffbf00;
  top: -10%;
  left: 73%;
  opacity: 0.8178165387;
  transform: rotate(319.6032056875deg);
  animation: drop-89 4.5803825617s 0.2577302575s;
}
@keyframes drop-89 {
  100% {
    top: 110%;
    left: 78%;
  }
}
.confetti_component .confetti-90 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 45%;
  opacity: 1.0968499834;
  transform: rotate(314.7625680677deg);
  animation: drop-90 4.8759678491s 0.0807990233s;
}
@keyframes drop-90 {
  100% {
    top: 110%;
    left: 59%;
  }
}
.confetti_component .confetti-91 {
  width: 1px;
  height: 0.4px;
  background-color: #263672;
  top: -10%;
  left: 100%;
  opacity: 1.0248984894;
  transform: rotate(336.7148654488deg);
  animation: drop-91 4.7554536674s 0.127627482s;
}
@keyframes drop-91 {
  100% {
    top: 110%;
    left: 114%;
  }
}
.confetti_component .confetti-92 {
  width: 2px;
  height: 0.8px;
  background-color: #d13447;
  top: -10%;
  left: 24%;
  opacity: 1.1917776418;
  transform: rotate(181.8074749583deg);
  animation: drop-92 4.0977718522s 0.70306318s;
}
@keyframes drop-92 {
  100% {
    top: 110%;
    left: 39%;
  }
}
.confetti_component .confetti-93 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 91%;
  opacity: 1.1058616695;
  transform: rotate(207.5940675625deg);
  animation: drop-93 4.1844800734s 0.8302971923s;
}
@keyframes drop-93 {
  100% {
    top: 110%;
    left: 103%;
  }
}
.confetti_component .confetti-94 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 66%;
  opacity: 0.760640069;
  transform: rotate(33.1830511429deg);
  animation: drop-94 4.2176969685s 0.6617750447s;
}
@keyframes drop-94 {
  100% {
    top: 110%;
    left: 80%;
  }
}
.confetti_component .confetti-95 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 39%;
  opacity: 1.4040997758;
  transform: rotate(354.9916338909deg);
  animation: drop-95 4.5454618665s 0.6824974291s;
}
@keyframes drop-95 {
  100% {
    top: 110%;
    left: 47%;
  }
}
.confetti_component .confetti-96 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 67%;
  opacity: 0.60177937;
  transform: rotate(155.2074423621deg);
  animation: drop-96 4.2154871837s 0.0311967265s;
}
@keyframes drop-96 {
  100% {
    top: 110%;
    left: 75%;
  }
}
.confetti_component .confetti-97 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 44%;
  opacity: 0.9575549516;
  transform: rotate(280.0525783536deg);
  animation: drop-97 4.4156475347s 0.2402525535s;
}
@keyframes drop-97 {
  100% {
    top: 110%;
    left: 51%;
  }
}
.confetti_component .confetti-98 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 100%;
  opacity: 0.6096261839;
  transform: rotate(86.5942937887deg);
  animation: drop-98 4.7737080612s 0.4289234962s;
}
@keyframes drop-98 {
  100% {
    top: 110%;
    left: 104%;
  }
}
.confetti_component .confetti-99 {
  width: 5px;
  height: 2px;
  background-color: #d13447;
  top: -10%;
  left: 11%;
  opacity: 0.9701717537;
  transform: rotate(345.4818542587deg);
  animation: drop-99 4.6542466201s 0.4811851502s;
}
@keyframes drop-99 {
  100% {
    top: 110%;
    left: 18%;
  }
}
.confetti_component .confetti-100 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 27%;
  opacity: 1.0490006661;
  transform: rotate(236.0495641305deg);
  animation: drop-100 4.0679097552s 0.021720915s;
}
@keyframes drop-100 {
  100% {
    top: 110%;
    left: 40%;
  }
}
.confetti_component .confetti-101 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 22%;
  opacity: 1.2045736399;
  transform: rotate(207.9843556709deg);
  animation: drop-101 4.2092585387s 0.4643976689s;
}
@keyframes drop-101 {
  100% {
    top: 110%;
    left: 28%;
  }
}
.confetti_component .confetti-102 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 32%;
  opacity: 1.2511881046;
  transform: rotate(118.0391983491deg);
  animation: drop-102 4.0145392552s 0.0512173364s;
}
@keyframes drop-102 {
  100% {
    top: 110%;
    left: 40%;
  }
}
.confetti_component .confetti-103 {
  width: 2px;
  height: 0.8px;
  background-color: #d13447;
  top: -10%;
  left: 62%;
  opacity: 1.3054511192;
  transform: rotate(14.7679079643deg);
  animation: drop-103 4.0321449903s 0.1150180461s;
}
@keyframes drop-103 {
  100% {
    top: 110%;
    left: 77%;
  }
}
.confetti_component .confetti-104 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 30%;
  opacity: 0.8474559494;
  transform: rotate(333.2464371688deg);
  animation: drop-104 4.3876996629s 0.6400219787s;
}
@keyframes drop-104 {
  100% {
    top: 110%;
    left: 40%;
  }
}
.confetti_component .confetti-105 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 27%;
  opacity: 0.9592023751;
  transform: rotate(6.1910315492deg);
  animation: drop-105 4.5002344482s 0.4476627235s;
}
@keyframes drop-105 {
  100% {
    top: 110%;
    left: 34%;
  }
}
.confetti_component .confetti-106 {
  width: 8px;
  height: 3.2px;
  background-color: #d13447;
  top: -10%;
  left: 84%;
  opacity: 1.4347029658;
  transform: rotate(117.4138720335deg);
  animation: drop-106 4.6031623946s 0.0842172438s;
}
@keyframes drop-106 {
  100% {
    top: 110%;
    left: 88%;
  }
}
.confetti_component .confetti-107 {
  width: 3px;
  height: 1.2px;
  background-color: #d13447;
  top: -10%;
  left: 27%;
  opacity: 1.1709054152;
  transform: rotate(108.3074337504deg);
  animation: drop-107 4.1211740597s 0.2831434088s;
}
@keyframes drop-107 {
  100% {
    top: 110%;
    left: 39%;
  }
}
.confetti_component .confetti-108 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 14%;
  opacity: 0.6734887738;
  transform: rotate(214.2277600661deg);
  animation: drop-108 4.1810585416s 0.9313965649s;
}
@keyframes drop-108 {
  100% {
    top: 110%;
    left: 28%;
  }
}
.confetti_component .confetti-109 {
  width: 6px;
  height: 2.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 18%;
  opacity: 1.2994044638;
  transform: rotate(201.6114195962deg);
  animation: drop-109 4.1609227312s 0.7313111433s;
}
@keyframes drop-109 {
  100% {
    top: 110%;
    left: 26%;
  }
}
.confetti_component .confetti-110 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 50%;
  opacity: 0.665702816;
  transform: rotate(323.8064265017deg);
  animation: drop-110 4.0920444823s 0.3808125532s;
}
@keyframes drop-110 {
  100% {
    top: 110%;
    left: 58%;
  }
}
.confetti_component .confetti-111 {
  width: 5px;
  height: 2px;
  background-color: #d13447;
  top: -10%;
  left: 2%;
  opacity: 1.0156637251;
  transform: rotate(290.579966908deg);
  animation: drop-111 4.0096453643s 0.3823550822s;
}
@keyframes drop-111 {
  100% {
    top: 110%;
    left: 17%;
  }
}
.confetti_component .confetti-112 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 4%;
  opacity: 0.5772087876;
  transform: rotate(260.6980955327deg);
  animation: drop-112 4.3613219393s 0.7146379805s;
}
@keyframes drop-112 {
  100% {
    top: 110%;
    left: 17%;
  }
}
.confetti_component .confetti-113 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 45%;
  opacity: 0.667246284;
  transform: rotate(271.7446786232deg);
  animation: drop-113 4.3110583986s 0.9519258256s;
}
@keyframes drop-113 {
  100% {
    top: 110%;
    left: 54%;
  }
}
.confetti_component .confetti-114 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 61%;
  opacity: 1.4436380759;
  transform: rotate(85.0537146804deg);
  animation: drop-114 4.8271549258s 0.9768404282s;
}
@keyframes drop-114 {
  100% {
    top: 110%;
    left: 64%;
  }
}
.confetti_component .confetti-115 {
  width: 5px;
  height: 2px;
  background-color: #d13447;
  top: -10%;
  left: 14%;
  opacity: 1.2136289933;
  transform: rotate(99.840692556deg);
  animation: drop-115 4.5249071622s 0.6959771049s;
}
@keyframes drop-115 {
  100% {
    top: 110%;
    left: 28%;
  }
}
.confetti_component .confetti-116 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 4%;
  opacity: 1.4900756609;
  transform: rotate(25.8271107758deg);
  animation: drop-116 4.9347236788s 0.6135306251s;
}
@keyframes drop-116 {
  100% {
    top: 110%;
    left: 15%;
  }
}
.confetti_component .confetti-117 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 91%;
  opacity: 1.2708415318;
  transform: rotate(304.6781115286deg);
  animation: drop-117 4.2549509006s 0.811589034s;
}
@keyframes drop-117 {
  100% {
    top: 110%;
    left: 104%;
  }
}
.confetti_component .confetti-118 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 13%;
  opacity: 1.2713585008;
  transform: rotate(84.7866042107deg);
  animation: drop-118 4.7898939975s 0.3848625875s;
}
@keyframes drop-118 {
  100% {
    top: 110%;
    left: 14%;
  }
}
.confetti_component .confetti-119 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 88%;
  opacity: 0.68045382;
  transform: rotate(9.5358850328deg);
  animation: drop-119 4.0195656135s 0.6731031874s;
}
@keyframes drop-119 {
  100% {
    top: 110%;
    left: 96%;
  }
}
.confetti_component .confetti-120 {
  width: 4px;
  height: 1.6px;
  background-color: #263672;
  top: -10%;
  left: 13%;
  opacity: 0.9829324855;
  transform: rotate(195.7717284394deg);
  animation: drop-120 4.5552900624s 0.5309045718s;
}
@keyframes drop-120 {
  100% {
    top: 110%;
    left: 25%;
  }
}
.confetti_component .confetti-121 {
  width: 7px;
  height: 2.8px;
  background-color: #d13447;
  top: -10%;
  left: 59%;
  opacity: 1.2774780786;
  transform: rotate(38.3235794869deg);
  animation: drop-121 4.7016108618s 0.2252051894s;
}
@keyframes drop-121 {
  100% {
    top: 110%;
    left: 70%;
  }
}
.confetti_component .confetti-122 {
  width: 6px;
  height: 2.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 24%;
  opacity: 0.8820141427;
  transform: rotate(115.9665938691deg);
  animation: drop-122 4.397513944s 0.8771118592s;
}
@keyframes drop-122 {
  100% {
    top: 110%;
    left: 29%;
  }
}
.confetti_component .confetti-123 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 30%;
  opacity: 1.487475346;
  transform: rotate(355.5558164929deg);
  animation: drop-123 4.9892156211s 0.8217065432s;
}
@keyframes drop-123 {
  100% {
    top: 110%;
    left: 33%;
  }
}
.confetti_component .confetti-124 {
  width: 8px;
  height: 3.2px;
  background-color: #d13447;
  top: -10%;
  left: 37%;
  opacity: 1.0941476079;
  transform: rotate(146.8732213663deg);
  animation: drop-124 4.177464512s 0.0708770975s;
}
@keyframes drop-124 {
  100% {
    top: 110%;
    left: 51%;
  }
}
.confetti_component .confetti-125 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 56%;
  opacity: 1.1710024141;
  transform: rotate(266.8613734677deg);
  animation: drop-125 4.5212640757s 0.4309635409s;
}
@keyframes drop-125 {
  100% {
    top: 110%;
    left: 58%;
  }
}
.confetti_component .confetti-126 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 14%;
  opacity: 1.0334495993;
  transform: rotate(53.987320416deg);
  animation: drop-126 4.8623749344s 0.4320967037s;
}
@keyframes drop-126 {
  100% {
    top: 110%;
    left: 17%;
  }
}
.confetti_component .confetti-127 {
  width: 2px;
  height: 0.8px;
  background-color: #ffbf00;
  top: -10%;
  left: 94%;
  opacity: 1.4183622468;
  transform: rotate(357.6261263336deg);
  animation: drop-127 4.3170089546s 0.1749098977s;
}
@keyframes drop-127 {
  100% {
    top: 110%;
    left: 104%;
  }
}
.confetti_component .confetti-128 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 96%;
  opacity: 0.5547049597;
  transform: rotate(164.5308443deg);
  animation: drop-128 4.0945771551s 0.9666410174s;
}
@keyframes drop-128 {
  100% {
    top: 110%;
    left: 97%;
  }
}
.confetti_component .confetti-129 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 58%;
  opacity: 1.4566565885;
  transform: rotate(36.4214061916deg);
  animation: drop-129 4.882259692s 0.6269677508s;
}
@keyframes drop-129 {
  100% {
    top: 110%;
    left: 71%;
  }
}
.confetti_component .confetti-130 {
  width: 1px;
  height: 0.4px;
  background-color: #ffbf00;
  top: -10%;
  left: 5%;
  opacity: 1.4261721288;
  transform: rotate(334.1598348176deg);
  animation: drop-130 4.4180551758s 0.6299718441s;
}
@keyframes drop-130 {
  100% {
    top: 110%;
    left: 19%;
  }
}
.confetti_component .confetti-131 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 98%;
  opacity: 0.6146751085;
  transform: rotate(101.2534083303deg);
  animation: drop-131 4.6372635978s 0.9335538385s;
}
@keyframes drop-131 {
  100% {
    top: 110%;
    left: 111%;
  }
}
.confetti_component .confetti-132 {
  width: 5px;
  height: 2px;
  background-color: #ffbf00;
  top: -10%;
  left: 43%;
  opacity: 1.2340617763;
  transform: rotate(273.7905894236deg);
  animation: drop-132 4.7461057784s 0.2260392266s;
}
@keyframes drop-132 {
  100% {
    top: 110%;
    left: 51%;
  }
}
.confetti_component .confetti-133 {
  width: 6px;
  height: 2.4px;
  background-color: #d13447;
  top: -10%;
  left: 54%;
  opacity: 1.4573630531;
  transform: rotate(348.3821287677deg);
  animation: drop-133 4.9447042362s 0.3353489449s;
}
@keyframes drop-133 {
  100% {
    top: 110%;
    left: 55%;
  }
}
.confetti_component .confetti-134 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 33%;
  opacity: 1.3746995938;
  transform: rotate(82.731527039deg);
  animation: drop-134 4.677556018s 0.7499057053s;
}
@keyframes drop-134 {
  100% {
    top: 110%;
    left: 36%;
  }
}
.confetti_component .confetti-135 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 74%;
  opacity: 0.9466554027;
  transform: rotate(173.6154082062deg);
  animation: drop-135 4.4104240377s 0.2469650905s;
}
@keyframes drop-135 {
  100% {
    top: 110%;
    left: 75%;
  }
}
.confetti_component .confetti-136 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 42%;
  opacity: 0.699629117;
  transform: rotate(280.3336979123deg);
  animation: drop-136 4.9792090957s 0.7463878065s;
}
@keyframes drop-136 {
  100% {
    top: 110%;
    left: 47%;
  }
}
.confetti_component .confetti-137 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 61%;
  opacity: 0.6318498945;
  transform: rotate(24.8439653644deg);
  animation: drop-137 4.4092720816s 0.3181162562s;
}
@keyframes drop-137 {
  100% {
    top: 110%;
    left: 65%;
  }
}
.confetti_component .confetti-138 {
  width: 1px;
  height: 0.4px;
  background-color: #263672;
  top: -10%;
  left: 36%;
  opacity: 1.1492465191;
  transform: rotate(295.3763354282deg);
  animation: drop-138 4.1176257783s 0.3599785251s;
}
@keyframes drop-138 {
  100% {
    top: 110%;
    left: 44%;
  }
}
.confetti_component .confetti-139 {
  width: 1px;
  height: 0.4px;
  background-color: #d13447;
  top: -10%;
  left: 21%;
  opacity: 0.8775240188;
  transform: rotate(175.7076673687deg);
  animation: drop-139 4.6738369516s 0.5100598357s;
}
@keyframes drop-139 {
  100% {
    top: 110%;
    left: 33%;
  }
}
.confetti_component .confetti-140 {
  width: 6px;
  height: 2.4px;
  background-color: #263672;
  top: -10%;
  left: 93%;
  opacity: 0.6021358406;
  transform: rotate(86.5172344543deg);
  animation: drop-140 4.6159209308s 0.93623408s;
}
@keyframes drop-140 {
  100% {
    top: 110%;
    left: 97%;
  }
}
.confetti_component .confetti-141 {
  width: 3px;
  height: 1.2px;
  background-color: #263672;
  top: -10%;
  left: 28%;
  opacity: 1.0688147334;
  transform: rotate(168.3930950494deg);
  animation: drop-141 4.0265019011s 0.8315468902s;
}
@keyframes drop-141 {
  100% {
    top: 110%;
    left: 31%;
  }
}
.confetti_component .confetti-142 {
  width: 2px;
  height: 0.8px;
  background-color: #d13447;
  top: -10%;
  left: 11%;
  opacity: 0.5271657545;
  transform: rotate(38.2767234908deg);
  animation: drop-142 4.9967734807s 0.6462747279s;
}
@keyframes drop-142 {
  100% {
    top: 110%;
    left: 22%;
  }
}
.confetti_component .confetti-143 {
  width: 4px;
  height: 1.6px;
  background-color: #ffbf00;
  top: -10%;
  left: 84%;
  opacity: 1.1426969234;
  transform: rotate(337.7766306702deg);
  animation: drop-143 4.121517681s 0.4043672352s;
}
@keyframes drop-143 {
  100% {
    top: 110%;
    left: 90%;
  }
}
.confetti_component .confetti-144 {
  width: 7px;
  height: 2.8px;
  background-color: #263672;
  top: -10%;
  left: 31%;
  opacity: 1.4095022066;
  transform: rotate(330.8710680885deg);
  animation: drop-144 4.8971264201s 0.4996356282s;
}
@keyframes drop-144 {
  100% {
    top: 110%;
    left: 39%;
  }
}
.confetti_component .confetti-145 {
  width: 4px;
  height: 1.6px;
  background-color: #d13447;
  top: -10%;
  left: 93%;
  opacity: 0.8114397904;
  transform: rotate(158.0510243644deg);
  animation: drop-145 4.3081908866s 0.2329171401s;
}
@keyframes drop-145 {
  100% {
    top: 110%;
    left: 95%;
  }
}
.confetti_component .confetti-146 {
  width: 8px;
  height: 3.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 24%;
  opacity: 1.2403340424;
  transform: rotate(35.8517655524deg);
  animation: drop-146 4.0500523667s 0.7501670128s;
}
@keyframes drop-146 {
  100% {
    top: 110%;
    left: 36%;
  }
}
.confetti_component .confetti-147 {
  width: 3px;
  height: 1.2px;
  background-color: #ffbf00;
  top: -10%;
  left: 49%;
  opacity: 0.8175073721;
  transform: rotate(242.612507031deg);
  animation: drop-147 4.4745620939s 0.3268066389s;
}
@keyframes drop-147 {
  100% {
    top: 110%;
    left: 64%;
  }
}
.confetti_component .confetti-148 {
  width: 2px;
  height: 0.8px;
  background-color: #263672;
  top: -10%;
  left: 99%;
  opacity: 0.8617659082;
  transform: rotate(167.3926333809deg);
  animation: drop-148 4.8722319125s 0.1711393545s;
}
@keyframes drop-148 {
  100% {
    top: 110%;
    left: 112%;
  }
}
.confetti_component .confetti-149 {
  width: 4px;
  height: 1.6px;
  background-color: #263672;
  top: -10%;
  left: 52%;
  opacity: 1.3032960225;
  transform: rotate(344.5404999597deg);
  animation: drop-149 4.9619804159s 0.9347934261s;
}
@keyframes drop-149 {
  100% {
    top: 110%;
    left: 57%;
  }
}
.confetti_component .confetti-150 {
  width: 8px;
  height: 3.2px;
  background-color: #263672;
  top: -10%;
  left: 64%;
  opacity: 0.9865318308;
  transform: rotate(59.697147842deg);
  animation: drop-150 4.4054394072s 0.6857797528s;
}
@keyframes drop-150 {
  100% {
    top: 110%;
    left: 66%;
  }
}
/** source file: static/shopwindow/modules/dot_wave_loader.scss **/
@keyframes wave {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.dot_wave_loader {
  background: #ccc;
  margin: 4px;
  height: 15px;
  width: 25px;
  border-radius: 11px;
  background-color: #EEF0F2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10px;
}
.dot_wave_loader .dot {
  height: 4px;
  width: 4px;
  margin: 0px 2px;
  background-color: #293158;
  border-radius: 50%;
  animation-name: wave;
  animation-duration: 0.9s;
  animation-timing-function: cubic-bezier(0.64, 0.12, 0.79, 0.35);
  animation-timing-function: cubic-bezier(0.36, 0, 0.66, -0.56);
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.dot_wave_loader .dot:nth-of-type(1) {
  animation-delay: 0.4s;
}
.dot_wave_loader .dot:nth-of-type(2) {
  animation-delay: 0.6s;
}
.dot_wave_loader .dot:nth-of-type(3) {
  animation-delay: 0.8s;
}
/** source file: static/shopwindow/modules/emoji_text_editor.scss **/
/** @fileoverview Style for emoji message editor */
.emoji_text_editor {
  display: inline-flex;
  flex-direction: column;
  max-width: none;
}
.emoji_text_editor .text_input_container {
  border: 1px #D8D8D8 solid;
  padding: 4px;
  position: relative;
}
.emoji_text_editor .text_input_container textarea {
  border: none !important;
}
.emoji_text_editor .toolkit_toolbar {
  border-left: 1px solid rgb(216, 216, 216);
  border-right: 1px solid rgb(216, 216, 216);
  border-bottom: 1px solid rgb(216, 216, 216);
}
/** source file: static/shopwindow/modules/ailabs_scrollable_workspace.scss **/
.ailabs_scrollable_workspace {
  overflow: hidden;
}
.ailabs_scrollable_workspace > .toolkit_zoom_container {
  width: 100%;
  height: 100%;
}
.ailabs_scrollable_workspace .ailabs_scrollable_workspace_area {
  background-size: 40px 40px;
  background-image: radial-gradient(circle, #000000 1px, rgba(0, 0, 0, 0) 1px);
}
/** source file: static/toolkit/modules/toolkit_focalpoint_mask.scss **/
.decoration-toolkit-focalpoint-mask {
  position: relative;
  overflow: hidden;
}
.decoration-toolkit-focalpoint-mask > *:last-child {
  position: absolute;
  opacity: 0;
  transition: opacity 300ms linear;
}
/** source file: static/toolkit/modules/toolkit_slider_mask.scss **/
.decoration-toolkit-slider-mask {
  position: relative;
  overflow: hidden;
  user-select: none;
  /** Button controls */
}
.decoration-toolkit-slider-mask > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.decoration-toolkit-slider-mask > div > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.decoration-toolkit-slider-mask > span {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
.decoration-toolkit-slider-mask > span.slider_mask_prev_button {
  left: 0;
}
.decoration-toolkit-slider-mask > span.slider_mask_next_button {
  right: 0;
}

/** Hide buttons on mobile */
@media screen and (min-width: 0px) and (max-width: 960px) {
  .decoration-toolkit-slider-mask > span {
    display: none;
  }
}
/** source file: static/toolkit/modules/toolkit_scrolleffect_decorator.scss **/
/** Common class used by all scroll effects, parallax and fixedeffect */
.toolkit_scrolleffect_decorator {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.toolkit_scrolleffect_decorator > * {
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 0px);
  position: absolute !important;
}
/** source file: static/toolkit/modules/designsystem/helper_classes.scss **/
.display_block {
  display: block !important;
}

.display_inline_block {
  display: inline-block !important;
}

.border_box {
  box-sizing: border-box;
}

.text_align_center {
  text-align: center !important;
}

.children_display_block > * {
  display: block;
}

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

.flex_direction_column {
  flex-direction: column;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.flex_around {
  justify-content: space-around;
}

.flex_center {
  justify-content: center;
}

.flex_grow {
  flex-grow: 1;
}

.flex_row_reverse {
  flex-direction: row-reverse;
}
.flex_row_reverse .toolkit_glyphbutton_content {
  margin-right: 5px;
  margin-left: 0px;
}

.inline_flex {
  display: inline-flex !important;
}

.flex_gap {
  gap: 10px;
}

.flex_align_items_start {
  align-items: flex-start;
}

.flex_align_items_end {
  align-items: flex-end;
}

.flex_align_items_stretch {
  align-items: stretch;
}

.flex_row_reverse {
  flex-direction: row-reverse !important;
}

@media screen and (min-width: 0px) and (max-width: 600px) {
  .display_block_mobile {
    display: block;
  }
}

.margin_auto {
  margin: auto !important;
}

.margin_left_auto {
  margin-left: auto !important;
}

.margin_right_auto {
  margin-right: auto !important;
}

.margin_none {
  margin: 0 !important;
}

.margin_top_none {
  margin-top: 0px !important;
}

.small_margin {
  margin-top: 0px !important;
  margin-bottom: 5px !important;
}

.margin_match_checkbox {
  margin-left: 28px;
}

.default_margin {
  margin-top: 0px !important;
  margin-bottom: 10px !important;
}

.margin_top {
  margin-top: 10px !important;
}

.margin_right {
  margin-right: 10px !important;
}

.margin_bottom {
  margin-bottom: 10px !important;
}

.margin_left {
  margin-left: 10px !important;
}

.margin_top_half {
  margin-top: 5px !important;
}

.margin_right_half {
  margin-right: 5px !important;
}

.margin_bottom_half {
  margin-bottom: 5px !important;
}

.margin_left_half {
  margin-left: 5px !important;
}

.padding_default {
  padding: 10px;
}

.padding_default_half {
  padding: 5px !important;
}

.padding_none {
  padding: 0 !important;
}

.padding_top {
  padding-top: 10px !important;
}

.padding_right {
  padding-right: 10px !important;
}

.padding_bottom {
  padding-bottom: 10px !important;
}

.padding_left {
  padding-left: 10px !important;
}

.padding_top_half {
  padding-top: 5px !important;
}

.padding_right_half {
  padding-right: 5px !important;
}

.padding_bottom_half {
  padding-bottom: 5px !important;
}

.padding_left_half {
  padding-left: 5px !important;
}

.width_100 {
  width: 100% !important;
}

.dropdown_width_100 {
  width: 100%;
}
.dropdown_width_100 > button.toolkit_dropdown_button {
  width: 100%;
  margin: 0px !important;
  justify-content: space-between;
}

.width_auto {
  width: auto !important;
}

.width_fit_content {
  width: fit-content;
}

.height_100 {
  height: 100% !important;
}

@media screen and (min-width: 961px) {
  .hide_on_desktop {
    display: none !important;
  }
}

@media screen and (min-width: 0px) and (max-width: 960px) {
  .hide_on_mobile {
    display: none !important;
  }
}

.cursor_pointer {
  cursor: pointer;
}

svg.svg_16 {
  width: 16px !important;
  height: 16px !important;
}

svg.svg_18 {
  width: 18px !important;
  height: 18px !important;
}

svg.svg_24 {
  width: 24px !important;
  height: 24px !important;
}

.clean_card {
  border-radius: 11px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
  padding: 8px 11px;
  margin-bottom: 10px;
}
/** source file: static/toolkit/modules/toolkit_inline_block.scss **/
/*
 * Copyright 2009 The Closure Library Authors. All Rights Reserved.
 *
 * Use of this source code is governed by an Apache 2.0 License.
 * See the COPYING file for details.
 */
/*
 * Cross-browser implementation of the "display: inline-block" CSS property.
 * See http://www.w3.org/TR/CSS21/visuren.html#propdef_display for details.
 * Tested on IE 6 & 7, FF 1.5 & 2.0, Safari 2 & 3, Webkit, and Opera 9.
 *
 * @author attila@google.com (Attila Bodis)
 */
/*
 * Default rule; only Safari, Webkit, and Opera handle it without hacks.
 */
.toolkit_inline_block {
  display: -moz-inline-box; /* Ignored by FF3 and later. */
  display: inline-block;
}
/** source file: static/toolkit/modules/toolkit_inline_block_layout.scss **/
/** @fileoverview Class for container of inline block elements */
html .toolkit_inline_block_layout > * {
  display: -moz-inline-box; /* Ignored by FF3 and later. */
  display: inline-block;
}
/** source file: static/toolkit/modules/toolkit_horizontal_rule.scss **/
.toolkit_horizontal_rule {
  border-style: solid;
  border-color: #D8D8D8;
}
/** source file: static/toolkit/modules/toolkit_text_label.scss **/
label.toolkit_text_label {
  display: block;
  margin: 0;
  cursor: inherit;
}

label.toolkit_text_label_major {
  font-weight: 500;
}

.toolkit_text_label_caution {
  color: #F83838;
  font-weight: 600;
}
/** source file: static/toolkit/modules/toolkit_tooltip.scss **/
.toolkit_tooltip {
  background-color: rgb(0, 136, 255);
  transition: background-color 100ms linear;
  color: #ffffff;
  border-radius: 9.5px;
  border: 0;
  box-shadow: 2px 2px 6px 0 rgba(41, 70, 97, 0.3);
  padding: 20px 10px;
  font: menu;
  max-width: 300px;
  white-space: normal;
  z-index: 2147483647;
  min-width: 38px;
  pointer-events: none;
}
.toolkit_tooltip.toolkit_tooltip_notice {
  background-color: rgb(255, 153, 51);
}

.toolkit_tooltip::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid rgb(0, 136, 255);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transition: border-top-color 100ms linear;
}
.toolkit_tooltip.toolkit_tooltip_notice::after {
  border-top-color: rgb(255, 153, 51);
}

.toolkit_tooltip.cardinal_direction_north::after,
.toolkit_tooltip.cardinal_direction_northeast::after,
.toolkit_tooltip.cardinal_direction_northwest::after {
  bottom: -20px;
  left: 20px;
}

.toolkit_tooltip.cardinal_direction_south::after,
.toolkit_tooltip.cardinal_direction_southeast::after,
.toolkit_tooltip.cardinal_direction_southwest::after {
  top: -20px;
  left: 20px;
  transform: rotate(180deg);
}

.toolkit_tooltip.cardinal_direction_east::after {
  top: 20px;
  left: -20px;
  transform: rotate(90deg);
}

.toolkit_tooltip.cardinal_direction_west::after {
  top: 20px;
  right: -20px;
  transform: rotate(270deg);
}
/** source file: static/toolkit/modules/toolkit_title_bar.scss **/
.toolkit_title_bar {
  background: #fff;
  min-height: 20px;
  font-size: 100%;
  font-weight: 500;
  padding: 4px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #293158;
  font-weight: 600;
}

.toolkit_title_bar_icon {
  margin-right: 8px;
  height: 22px;
}

.toolkit_title_bar_content {
  flex-grow: 1;
  font-size: 14px;
}

.toolkit_title_bar_close {
  background: url(/dg5_platform/assets_static/static/toolkit/assets/toolkit_modal_close_icon.svg) no-repeat 0 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-left: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}
/** source file: static/toolkit/modules/toolkit_popupbase.scss **/
/* CORE -- PopupBase */
.toolkit_popupbase {
  z-index: 2147483646;
  position: absolute;
  margin: 0;
  padding: 0;
}

/* THEME - PopupBase */
.toolkit_popupbase_theme {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  border-radius: 11px;
}
/** source file: static/toolkit/modules/toolkit_modalpopup.scss **/
.toolkit_modalpopup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}

.toolkit_modalpopup {
  display: flex;
  flex-direction: column;
}

.toolkit_modalpopup_content {
  flex-grow: 1;
  padding: 8px;
}

.toolkit_modalpopup {
  color: #000;
  padding: 10px;
  max-width: 90vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  outline: 0;
  min-width: clamp(200px, 500px, 90%);
}

.toolkit_modalpopup,
.toolkit_modalpopup_bg {
  z-index: 2147483646;
}
/** source file: static/toolkit/modules/toolkit_fullsize_popup.scss **/
html.toolkit_fullsize_popup_is_open {
  overflow: hidden;
}

.toolkit_popupbase.toolkit_fullsize_popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
/** source file: static/toolkit/modules/toolkit_closable_panel.scss **/
.toolkit_closable_panel {
  background: #fff;
  border-top-right-radius: 11px;
  border-top-left-radius: 11px;
  border: 1px #D8D8D8 solid;
  overflow: hidden;
  padding: 0 10px 10px 10px;
}
.toolkit_closable_panel .toolkit_title_bar {
  padding: 14px 8px;
  border-bottom: 1px solid rgb(216, 216, 216);
}
/** source file: static/toolkit/modules/toolkit_colour_swatch.scss **/
.toolkit_colour_swatch {
  box-sizing: border-box;
  background-size: 100% 100%;
  border: 0 solid #cccccc;
  transition: box-shadow linear 300ms;
  border-radius: 50%;
}
.toolkit_colour_swatch.border_needed {
  border-width: 1px;
}
.toolkit_colour_swatch > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
/** source file: static/toolkit/modules/toolkit_slider.scss **/
.toolkit_slider {
  position: relative;
  margin: 5px 10px;
}

.toolkit_slider_horizontal {
  width: calc(100% - 10px * 2);
  height: 24px;
}

.toolkit_slider_horizontal > * {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

/* Slider track in horizontal orientation */
.toolkit_slider_horizontal .toolkit_slider_track {
  width: 100%;
  height: 2px;
}

/* Slider track */
.toolkit_slider_track {
  background: #CBD1D6;
}

/* Mercury inside of slider */
.toolkit_slider_mercury {
  background-color: #0088FF;
  height: 100%;
}

.toolkit_slider_thumb {
  margin-left: -6px;
  width: 12px;
  height: 12px;
  cursor: -webkit-grab;
  border-radius: 50%;
  background-color: #0088FF;
}
/** source file: static/toolkit/modules/toolkit_datatable.scss **/
.toolkit_datatable {
  margin: 8px 0;
}
.toolkit_datatable .toolkit_datatable_selectable_row_component.selected {
  background-color: #eee8aa;
}
/** source file: static/toolkit/modules/toolkit_stickyfooter.scss **/
/** @fileoverview Sticky footer. Increase selector specificity to override PopupBase. */
.toolkit_popupbase.toolkit_stickyfooter {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 4px;
  transform-origin: bottom;
}
/** source file: static/toolkit/modules/toolkit_loading_component.scss **/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.toolkit_loading_component .toolkit_loading_component_loading_indicator_container {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 99999;
}

.toolkit_loading_component.toolkit_loading_component_loading .toolkit_loading_component_loading_indicator_container {
  display: block;
}

.toolkit_loading_component .toolkit_loading_component_loading_indicator {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@media (min-width: 800px) {
  .toolkit_loading_component .toolkit_loading_component_loading_indicator {
    border-top-width: 12px;
    border-width: 12px;
    width: 90px;
    height: 90px;
  }
}

.toolkit_loading_component.toolkit_loading_component_stand_alone {
  position: relative;
  width: 170px;
  height: 170px;
  margin: auto;
}
/** source file: static/toolkit/modules/toolkit_circle_countdown.scss **/
.toolkit_circle_countdown {
  position: relative;
  height: var(--circle-countdown-size);
  width: var(--circle-countdown-size);
  text-align: center;
}
.toolkit_circle_countdown svg {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--circle-countdown-size);
  height: var(--circle-countdown-size);
  transform: rotateY(-180deg) rotateZ(-90deg);
}
.toolkit_circle_countdown svg circle {
  stroke-dasharray: var(--circle-countdown-circumference);
  stroke-dashoffset: 0px;
  stroke-width: 2px;
  fill: none;
}
.toolkit_circle_countdown svg circle.track {
  stroke: #FFFFFF;
}
.toolkit_circle_countdown svg circle.progress {
  stroke-linecap: round;
  stroke: #0088FF;
}
.toolkit_circle_countdown svg circle.progress.toolkit_circle_countdown_animated {
  animation-name: toolkit_circle_countdown;
  animation-timing-function: linear;
  single-animation-iteration-count: infinite;
  single-animation-fill-mode: forwards;
}
@keyframes toolkit_circle_countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: var(--circle-countdown-circumference);
  }
}
.toolkit_circle_countdown .toolkit_circle_countdown_label {
  position: relative;
  color: #0088FF;
  display: inline-block;
  line-height: var(--circle-countdown-size);
}
/** source file: static/toolkit/modules/toolkit_field_text_label.scss **/
.toolkit_field_text_label {
  display: grid;
  align-items: center;
  gap: 6px;
}
.toolkit_field_text_label.horizontal_direction {
  grid-template-columns: auto auto;
  width: fit-content;
}
.toolkit_field_text_label.vertical_direction {
  grid-template-columns: auto;
}
/** source file: static/toolkit/modules/toolkit_powerled.scss **/
.toolkit_powerled {
  display: flex;
  align-items: center;
}
/** source file: static/toolkit/modules/toolkit_powerled_label.scss **/
.toolkit_powerled_label .toolkit_text_label {
  line-height: 10px;
}

/** Theme */
.toolkit_powerled_label .toolkit_text_label {
  margin-left: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
}
/** source file: static/toolkit/modules/toolkit_fixed_position_pane.scss **/
.toolkit_fixed_position_pane.active > .toolkit_fixed_position_pane_content_element {
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  top: 0;
}
/** source file: static/toolkit/modules/toolkit_simple_modal.scss **/
/** @fileoverview Stylesheet for ailabs simple modal */
.toolkit_simple_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.toolkit_simple_modal .toolkit_simple_modal_content {
  flex-grow: 1;
}

.toolkit_simple_modal.default_theme {
  background: none;
  transition: background, padding 2s ease-in-out;
}
@media (min-width: 900px) {
  .toolkit_simple_modal.default_theme {
    background: none;
    padding: 1em 0em;
  }
}
.toolkit_simple_modal.default_theme .toolkit_simple_modal_content {
  overflow: hidden;
  background: #ffffff;
  margin: auto;
  box-sizing: content-box;
}
@media (min-width: 900px) {
  .toolkit_simple_modal.default_theme .toolkit_simple_modal_content {
    border-radius: 11px;
  }
}
.toolkit_simple_modal.default_theme .toolkit_simple_modal_content.has_content_padding {
  padding: 14px;
}
.toolkit_simple_modal.default_theme .toolkit_simple_modal_content {
  border: 3px #BDDEFF solid;
  box-shadow: 0 10px 11px 0 rgba(18, 18, 18, 0.2);
}

.toolkit_simple_modal.alert_theme {
  background: none;
  transition: background, padding 2s ease-in-out;
}
@media (min-width: 900px) {
  .toolkit_simple_modal.alert_theme {
    background: none;
    padding: 1em 0em;
  }
}
.toolkit_simple_modal.alert_theme .toolkit_simple_modal_content {
  overflow: hidden;
  background: #ffffff;
  margin: auto;
  box-sizing: content-box;
}
@media (min-width: 900px) {
  .toolkit_simple_modal.alert_theme .toolkit_simple_modal_content {
    border-radius: 11px;
  }
}
.toolkit_simple_modal.alert_theme .toolkit_simple_modal_content.has_content_padding {
  padding: 14px;
}
.toolkit_simple_modal.alert_theme .toolkit_simple_modal_content {
  border: 3px #F83837 solid;
  box-shadow: 0 10px 11px 0 rgba(18, 18, 18, 0.2);
}

.toolkit_simple_modal.takeover_theme {
  background: #ffffff;
  transition: background, padding 2s ease-in-out;
}
@media (min-width: 900px) {
  .toolkit_simple_modal.takeover_theme {
    background: #4B4B4B;
    padding: 5em 0em;
  }
}
.toolkit_simple_modal.takeover_theme .toolkit_simple_modal_content {
  overflow: hidden;
  background: #ffffff;
  margin: auto;
  box-sizing: content-box;
}
@media (min-width: 900px) {
  .toolkit_simple_modal.takeover_theme .toolkit_simple_modal_content {
    border-radius: 5px;
  }
}
.toolkit_simple_modal.takeover_theme .toolkit_simple_modal_content.has_content_padding {
  padding: 40px 60px;
}
/** source file: static/toolkit/modules/toolkit_media_fullsize_popup.scss **/
.toolkit_media_fullsize_popup.toolkit_popupbase .toolkit_closebutton {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 2.5vw;
  min-width: 20px;
  max-width: 32px;
  z-index: 9999999;
}
.toolkit_media_fullsize_popup.toolkit_popupbase .toolkit_closebutton svg {
  fill: #ffffff;
}

/** I Bet You Rue The Day You Kissed A Writer In The Dark. */
.toolkit_media_fullsize_popup.toolkit_media_fullsize_popup_writerinthedark {
  background-color: rgb(0, 0, 0);
}
/** source file: static/toolkit/modules/toolkit_console.scss **/
.toolkit_console {
  overflow-y: scroll;
  overflow-x: hidden;
}
/** source file: static/toolkit/modules/toolkit_scroll_polyfill.scss **/
html.toolkit_scroll_polyfill {
  /* Customize website's scrollbar like Mac OS
     Not supports in Firefox and IE.
     source: https://medium.com/spemer/customize-websites-scrollbar-with-css-270ca436d6c1 https://codepen.io/Spemer/pen/baoKPK */
  /* total width */
  /* background of the scrollbar except button or resizer */
  /* scrollbar itself */
  /* set button(top and bottom of the scrollbar) */
}
html.toolkit_scroll_polyfill .toolkit_scroll::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}
html.toolkit_scroll_polyfill .toolkit_scroll::-webkit-scrollbar-track {
  background-color: #fff;
}
html.toolkit_scroll_polyfill .toolkit_scroll::-webkit-scrollbar-track:hover {
  background-color: #f4f4f4;
}
html.toolkit_scroll_polyfill .toolkit_scroll::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 5px solid #fff;
}
html.toolkit_scroll_polyfill .toolkit_scroll::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4;
}
html.toolkit_scroll_polyfill .toolkit_scroll::-webkit-scrollbar-button {
  display: none;
}
/** source file: static/toolkit/modules/toolkit_scroll.scss **/
.toolkit_scroll {
  overflow-x: hidden;
  overflow-y: hidden;
}
.toolkit_scroll.toolkit_scroll_x {
  overflow-x: auto;
}
.toolkit_scroll.toolkit_scroll_y {
  overflow-y: auto;
}
/** source file: static/toolkit/modules/toolkit_control_disabled.scss **/
.toolkit_control_disabled {
  opacity: 0.6;
  pointer-events: none;
}
/** source file: static/toolkit/modules/toolkit_control_width_type.scss **/
.toolkit_control_width_type_stretch {
  width: 100%;
}

.toolkit_control_width_type_input {
  width: 206px;
}
/** source file: static/toolkit/modules/toolkit_rolemenu_popup.scss **/
.toolkit_popupbase.toolkit_rolemenu_popup {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 11px;
}
/** source file: static/toolkit/modules/toolkit_input.scss **/
.toolkit_input {
  box-sizing: border-box;
  display: inline-block;
  margin: 0 !important;
  padding: 4px 6px;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  color: #000;
  border: 1px solid #CBD1D6;
  border-radius: 5px;
  background: #ffffff;
  /** Height */
  min-height: 30px;
  /** Hover/focus effect */
}
.toolkit_input:hover, .toolkit_input:focus, .toolkit_input.toolkit_control_has_focus {
  border-color: #0088FF;
}
/** source file: static/toolkit/modules/toolkit_select_input.scss **/
select.toolkit_input {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/dg5_platform/assets_static/static/toolkit/assets/toolkit_select_arrow.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  padding-right: 20px !important;
  border-radius: 5px;
  cursor: pointer;
}
select.toolkit_input:hover, select.toolkit_input:focus, select.toolkit_input.toolkit_control_has_focus {
  border: 1px solid #CBD1D6 !important;
  border-color: #CBD1D6 !important;
  box-shadow: inset 0 1px 0 #888e94, 0 1px 0 #ffffff !important;
}
/** source file: static/toolkit/modules/toolkit_number_input.scss **/
.toolkit_number_input.spin_control_disabled {
  -moz-appearance: textfield;
}
.toolkit_number_input.spin_control_disabled::-webkit-outer-spin-button, .toolkit_number_input.spin_control_disabled::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/** source file: static/toolkit/modules/toolkit_number_range_input.scss **/
.toolkit_number_range_input {
  display: grid;
  grid-template-columns: auto 60px;
  align-items: center;
  gap: 8px;
  max-width: 400px;
}
.toolkit_number_range_input .toolkit_number_input {
  width: auto;
}
/** source file: static/toolkit/modules/toolkit_text_slider_range_input.scss **/
.toolkit_text_slider_range_input .toolkit_genericrangecontrol {
  display: flex;
  align-items: center;
}
.toolkit_text_slider_range_input .toolkit_genericrangecontrol .toolkit_slider_range_input {
  flex-grow: 1;
}
.toolkit_text_slider_range_input .toolkit_genericrangecontrol .toolkit_number_input {
  width: 40px;
}
/** source file: static/toolkit/modules/toolkit_textarea_input.scss **/
.toolkit_input.toolkit_textareainput {
  height: initial;
}
/** source file: static/toolkit/modules/toolkit_checkbox_label.scss **/
/** @fileoverview Style for checkbox labels */
.toolkit_checkbox_label_description {
  color: #787878;
}
/** source file: static/toolkit/modules/toolkit_checkbox_input.scss **/
.toolkit_checkbox_input {
  display: block;
  min-width: 80px;
  margin-left: 4px;
  margin-bottom: 5px;
}

.toolkit_checkbox_input span {
  margin-left: 4px;
  min-width: 80px;
}
/** source file: static/toolkit/modules/toolkit_css3_checkbox_input.scss **/
.toolkit_css3_checkbox_input {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 8px 8px 8px 0;
  cursor: pointer;
  outline: 0 !important;
}

.toolkit_css3_checkbox_flexlayout {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.toolkit_css3_checkbox_input_checkbox {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border: 1px solid #8b9094;
  background-color: #ffffff;
  border-radius: 2px;
}

.toolkit_css3_checkbox_input:hover .toolkit_css3_checkbox_input_checkbox {
  border-color: #0088ff;
}

/* checkmark class */
.toolkit_css3_checkbox_input_checkmark {
  transform: scale(0);
  transition: transform 0.1s ease-in;
  line-height: 0;
  width: 10px;
  height: 10px;
  background-color: transparent;
}

.toolkit_css3_checkbox_input_isradio .toolkit_css3_checkbox_input_checkmark > svg {
  display: none;
}
.toolkit_css3_checkbox_input_isradio .toolkit_css3_checkbox_input_checkmark {
  margin: 2px;
  background-color: #0088ff;
}
.toolkit_css3_checkbox_input_isradio .toolkit_css3_checkbox_input_checkbox,
.toolkit_css3_checkbox_input_isradio .toolkit_css3_checkbox_input_checkmark {
  border-radius: 50%;
}

.toolkit_css3_checkbox_input_ischecked .toolkit_css3_checkbox_input_checkmark {
  transform: scale(1);
  transition: scale 0.1s ease;
}

.toolkit_css3_checkbox_input_is_tickbox.toolkit_css3_checkbox_input_ischecked .toolkit_css3_checkbox_input_checkbox {
  background: #0088ff !important;
  border-color: #0088ff;
}
/** source file: static/toolkit/modules/toolkit_svg_checkbox_input.scss **/
.toolkit_svg_checkbox_input {
  display: flex;
  cursor: pointer;
  outline: none;
}
/** source file: static/toolkit/modules/toolkit_flat_checkbox_input.scss **/
.toolkit_flat_checkbox_input {
  outline: none;
}

.toolkit_flat_checkbox_layout {
  display: flex;
  flex-direction: row;
  user-select: none;
  cursor: pointer;
}

.toolkit_flat_checkbox_input.theme_default {
  padding: 4px;
  margin: 2px 0;
  background-color: #FFFFFF;
}
.toolkit_flat_checkbox_input.theme_default.toolkit_flat_checkbox_input_ischecked {
  background-color: #E4F3FF;
}

.toolkit_flat_checkbox_input.theme_sassy {
  border: 1px solid #D8D8D8;
  border-radius: 12px;
  background-color: #F5F5F5;
  color: #787878;
  font-size: 14px;
  padding: 3px 12px;
  margin: 0px 5px 8px 0px !important;
}
.toolkit_flat_checkbox_input.theme_sassy.toolkit_flat_checkbox_input_ischecked {
  border: 1px solid #8CC9FF;
  background-color: #E4F3FF;
  color: #0088FF;
}
/** source file: static/toolkit/modules/toolkit_toggle_input.scss **/
/** @fileoverview Sassy's toggle input, adapted slightly to work with AbstractDHTMLCheckboxInput */
.toolkit_toggle_input {
  display: block;
  position: relative;
  height: 15px;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}
.toolkit_toggle_input.toolkit_toggle_input_on .puck {
  background-color: #00AB08;
}
.toolkit_toggle_input.toolkit_toggle_input_on .puck:after {
  left: 16px;
}
.toolkit_toggle_input .puck {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 30px;
  border-radius: 7.5px;
  background-color: #A5A5A5;
  transition: background-color 0.15s ease-in;
}
.toolkit_toggle_input .puck:after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 7.5px;
  background: #fff;
  transition: left 0.15s ease-in;
}
/** source file: static/toolkit/modules/toolkit_checkbox_group.scss **/
.toolkit_checkbox_group.use_horizontal_layout {
  display: flex;
  flex-wrap: wrap;
}

/** Zebra stripes */
.toolkit_checkbox_group.zebra_stripes > *:nth-child(odd) {
  background-color: rgba(173, 216, 230, 0.19);
}
/** source file: static/toolkit/modules/toolkit_time_input.scss **/
.toolkit_time_input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 4px;
}
.toolkit_time_input > .time_segment_label {
  padding: 0 4px;
}
.toolkit_time_input > .toolkit_input {
  flex-grow: 1;
}
/** source file: static/toolkit/modules/toolkit_money_input.scss **/
.toolkit_money_input {
  display: flex;
  align-items: baseline;
}
.toolkit_money_input > input:nth-child(1) {
  width: 74px;
}
.toolkit_money_input > span {
  font-weight: bold;
  font-size: 18px;
  padding: 0 4px;
}
.toolkit_money_input > input:nth-child(3) {
  width: 52px;
}
/** source file: static/toolkit/modules/toolkit_angle_input.scss **/
.toolkit_angle_input {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer;
}
.toolkit_angle_input .arrow_container {
  width: 100%;
  height: 100%;
  transition: transform ease-in-out 250ms;
}
.toolkit_angle_input svg {
  width: 100%;
  height: 100%;
  fill: #6BAFEB;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toolkit_angle_input:hover {
  box-shadow: inset 0 0 0 3px rgba(0, 136, 255, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.toolkit_angle_input:active {
  box-shadow: inset 0 0 5px 0 rgba(163, 163, 163, 0.5);
}
/** source file: static/toolkit/modules/toolkit_search_input.scss **/
.toolkit_input.toolkit_search_input {
  padding-left: 25px !important;
  background-repeat: no-repeat;
  background-position: 6px center;
  background-size: 16px;
  transition: background linear 270ms, box-shadow linear 0ms 270ms;
  border: 1px solid #D8D8D8 !important;
  border-radius: 15px !important;
}
.toolkit_input.toolkit_search_input.toolkit_control_has_focus {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
/** source file: static/toolkit/modules/toolkit_power_checkbox_input.scss **/
.toolkit_power_checkbox_input {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  /** Theme */
  border: 0;
  border-radius: 2px;
  padding: 3px 17px;
  color: #4e5665;
  font-family: helvetica, arial, sans-serif;
}
.toolkit_power_checkbox_input > .toolkit_text_label {
  margin: 0 5px 0 0;
}
.toolkit_power_checkbox_input:hover {
  background-color: #e9eaed;
}
/** source file: static/toolkit/modules/toolkit_linedtextarea.scss **/
.toolkit_linedtextarea {
  min-width: 500px;
  background: #ddd;
}

.toolkit_linedtextarea_ruler {
  width: 40px;
  float: left;
  padding: 6px 2px 0 2px;
  color: #999;
}

.toolkit_linedtextarea_ruler_line {
  padding: 0 0.5em 0 0.5em;
  text-align: right;
  white-space: nowrap;
  font-size: 12px;
  font-family: monospace;
  line-height: normal !important;
}

.toolkit_linedtextarea textarea {
  width: calc(100% - 44px);
  font-size: 12px;
  font-family: monospace;
  line-height: normal !important;
  border-radius: 0;
  margin: 0;
}
/** source file: static/toolkit/modules/toolkit_graphic_view_checkbox_input.scss **/
.toolkit_graphic_view_checkbox_input {
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0 3px 5px 0 rgba(120, 120, 120, 0.3);
  border-radius: 5px;
  padding: 7px;
  margin-right: 7px !important;
  margin-bottom: 7px !important;
  cursor: pointer;
}
.toolkit_graphic_view_checkbox_input.selected {
  box-shadow: 0 0 0 3px #0088ff, 0 3px 5px 0 rgba(120, 120, 120, 0.3);
}
.toolkit_graphic_view_checkbox_input.selected:hover {
  box-shadow: 0 0 0 3px #0088ff, 0 3px 5px 0 rgba(120, 120, 120, 0.3);
}
.toolkit_graphic_view_checkbox_input:hover {
  box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.5), 0 3px 5px 0 rgba(120, 120, 120, 0.3);
}
.toolkit_graphic_view_checkbox_input .graphic_choice {
  user-select: none;
  position: relative;
}
.toolkit_graphic_view_checkbox_input .graphic_choice .graphic_choice_view {
  width: 200px;
  height: 200px;
}
.toolkit_graphic_view_checkbox_input .graphic_choice span.label_on_graphic {
  background: rgba(77, 77, 77, 0.8117647059);
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
}
.toolkit_graphic_view_checkbox_input span.title_label {
  text-align: center;
  display: block;
  padding-top: 7px;
}

.media_only_component {
  flex-wrap: nowrap !important;
  justify-content: flex-start;
}
.media_only_component .toolkit_graphic_view_checkbox_input {
  width: 25% !important;
}
.media_only_component .graphic_choice_view {
  height: 100px !important;
}
.media_only_component span.title_label {
  line-height: 20px;
  font-size: 20px;
  font-weight: 500;
}
/** source file: static/toolkit/modules/toolkit_icon_checkbox_input.scss **/
.toolkit_icon_checkbox_input {
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px !important;
  padding: 3px 9px !important;
}
.toolkit_icon_checkbox_input:hover {
  box-shadow: inset 0 0 0 4px rgba(0, 136, 255, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}
.toolkit_icon_checkbox_input.toolkit_css3_checkbox_input_ischecked {
  box-shadow: inset 0 0 0 4px #0088FF, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.toolkit_icon_checkbox_input .toolkit_icon_checkbox_input_label_layout {
  display: flex;
  flex-direction: row;
  align-items: center;
}
/** source file: static/toolkit/modules/toolkit_image_checkbox_input.scss **/
.toolkit_image_checkbox_input {
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.toolkit_image_checkbox_input.selected {
  box-shadow: inset 0 0 0 2px #0088FF, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
/** source file: static/toolkit/modules/toolkit_editable_text_label.scss **/
.toolkit_editable_text_label > .toolkit_text_label {
  padding: 5px 7px;
}
.toolkit_editable_text_label.blue_bk {
  background: #f3f9fb;
  border-radius: 5px;
  min-height: 10px !important;
  margin: 5px 10px 5px 0px;
}
.toolkit_editable_text_label.blue_bk label.toolkit_text_label {
  color: rgb(41, 49, 88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: left;
}
/** source file: static/toolkit/modules/toolkit_slide_selector.scss **/
.toolkit_slide_selector {
  background-color: #ffffff;
  color: #293158;
  text-align: center;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  margin-bottom: 10px;
  height: 40px;
  padding: 0 5px;
}
.toolkit_slide_selector .relative_container {
  position: relative;
  overflow: hidden;
}
.toolkit_slide_selector .toolkit_slide_selector_option {
  width: var(--selector-option-width);
  box-sizing: border-box;
  padding: 5px;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  float: left;
  height: 100%;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: rgb(41, 49, 88);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  padding-left: 20px;
  margin-top: 4px;
}
.toolkit_slide_selector .toolkit_slide_selector_option svg {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.toolkit_slide_selector .toolkit_slide_selector_option span {
  vertical-align: middle;
}
.toolkit_slide_selector span.selection_indicator {
  background-color: #e5e5e5;
  text-align: center;
  display: block;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 1;
  width: var(--selector-option-width);
  height: 100%;
  background: #d8e3ed;
  border-radius: 11px;
  top: 5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/** source file: static/toolkit/modules/toolkit_promptvaluecontrol.scss **/
.toolkit_promptvaluecontrol {
  margin: 0 4px;
}
.toolkit_promptvaluecontrol.toolkit_control_width_type_stretch {
  margin: 0;
}
.toolkit_promptvaluecontrol > .toolkit_input_button {
  width: 100%;
}
/** source file: static/toolkit/modules/toolkit_text_length_counter.scss **/
.toolkit_text_length_counter {
  width: fit-content;
  font-size: 11px;
  padding: 2px 7px;
  cursor: default;
  background-color: #EEEEEE;
  color: #121212;
  border-radius: 3px;
  margin-bottom: 5px;
}
.toolkit_text_length_counter.warning {
  background-color: #FFEA83;
}
.toolkit_text_length_counter.exceeded {
  background-color: #FFC8C8;
  position: relative;
}
.toolkit_text_length_counter.exceeded:before {
  content: "Caution: Over character limit";
  position: absolute;
  right: calc(100% + 10px);
  padding-left: 25px;
  width: max-content;
  color: #F83838;
  background: blue;
  background: url("/dg5_platform/assets_static/static/toolkit/assets/toolkit_caution.svg");
  background-repeat: no-repeat;
  background-position: left;
}
/** source file: static/toolkit/modules/toolkit_button.scss **/
/** @fileoverview Style shared by all buttons */
.toolkit_button {
  cursor: pointer;
}
/** source file: static/toolkit/modules/toolkit_standard_button.scss **/
/** @fileoverview The default button theme, called "toolkit_standard_button" */
.toolkit_standard_button {
  outline: 0;
  border-style: none;
  background-color: #eef0f2;
  font-weight: 500;
  font-family: Montserrat;
  margin: 3px 3px 3px 13px;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 20px;
  transition: color 200ms ease-in-out;
}
.toolkit_standard_button.toolkit_control_width_type_stretch {
  margin-left: 0;
  margin-right: 0;
}

.toolkit_standard_button.toolkit_control_enabled:hover {
  background-color: #E5F2FF;
  color: #293158;
}

.toolkit_standard_button:active {
  background-color: #e6e6e6;
  color: #000000;
}

.toolkit_standard_button.toolkit_button_default {
  background-color: #0088ff;
  color: #fff;
}

.toolkit_standard_button.toolkit_button_default:focus, .toolkit_standard_button.toolkit_button_default:hover {
  color: #ffffff !important;
  background-color: #4cabff !important;
}

.toolkit_standard_button.toolkit_button_default:active {
  background-color: #0083f5 !important;
}

.toolkit_standard_button.toolkit_button_action {
  background-color: #7db500;
  color: #ffffff;
  font-weight: 400;
}

.toolkit_standard_button.toolkit_button_action:focus, .toolkit_standard_button.toolkit_button_action:hover {
  color: #ffffff !important;
  background-color: #8fcf00 !important;
}

.toolkit_standard_button.toolkit_button_action:active {
  background-color: #88c500 !important;
}

.toolkit_standard_button.toolkit_button_dangerous {
  background-color: #dc3545;
  color: #ffffff;
}

.toolkit_standard_button.toolkit_button_dangerous:focus, .toolkit_standard_button.toolkit_button_dangerous:hover {
  color: #ffffff !important;
  background-color: #c82333 !important;
}

/** Active button (as an active control) */
.toolkit_standard_button.toolkit_control_active {
  background-color: #cbd6e2;
  color: #506e91;
}

/** While chromed: Graphic button subclass */
.toolkit_standard_button > .toolkit_graphic_view {
  width: 16px;
  height: 18px;
  vertical-align: middle;
}

.toolkit_standard_button.svg_24 > .toolkit_graphic_view {
  width: 24px;
  height: 24px;
}

.toolkit_standard_button svg.toolkit_svgview {
  fill: #000000 !important;
  transition: fill 200ms ease-in-out;
}

.toolkit_standard_button:hover svg.toolkit_svgview {
  fill: #293158 !important;
}
/** source file: static/toolkit/modules/toolkit_seamless_button.scss **/
/** @fileoverview Seamless button style */
.toolkit_seamless_button {
  background: none;
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
/** source file: static/toolkit/modules/toolkit_subtle_button.scss **/
/** @fileoverview The subtle button style. Must set a button type class as seen below. */
.toolkit_subtle_button.toolkit_button_default {
  color: rgb(0, 136, 255);
  font-weight: 300;
  cursor: pointer;
  background: none;
  outline: none;
  border-radius: 31px;
  transition: all 0.2s ease 0s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}
.toolkit_subtle_button.toolkit_button_default svg {
  fill: rgb(0, 136, 255);
}
.toolkit_subtle_button.toolkit_button_default:hover {
  background: rgb(208, 228, 245);
}
.toolkit_subtle_button.toolkit_button_dangerous {
  color: rgb(248, 56, 56);
  font-weight: 300;
  cursor: pointer;
  background: none;
  outline: none;
  border-radius: 31px;
  transition: all 0.2s ease 0s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}
.toolkit_subtle_button.toolkit_button_dangerous svg {
  fill: rgb(248, 56, 56);
}
.toolkit_subtle_button.toolkit_button_dangerous:hover {
  background: rgb(208, 228, 245);
}
/** source file: static/toolkit/modules/toolkit_glyphbutton.scss **/
.toolkit_glyphbutton {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  line-height: 0 !important;
}
.toolkit_glyphbutton > * {
  display: flex;
  align-items: center;
}
.toolkit_glyphbutton .toolkit_glyphbutton_content {
  margin-left: 5px;
  flex-basis: 0;
  white-space: nowrap;
}
.toolkit_glyphbutton.toolkit_glyphbutton_reverse {
  flex-direction: row-reverse;
}
.toolkit_glyphbutton.toolkit_glyphbutton_reverse .toolkit_glyphbutton_content {
  margin-right: 5px;
}
/** source file: static/toolkit/modules/toolkit_iconbutton.scss **/
.toolkit_iconbutton {
  padding: 4px;
}
.toolkit_iconbutton svg {
  width: 16px !important;
  height: 16px !important;
}
.toolkit_iconbutton.enable_hover {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 5px;
}
.toolkit_iconbutton.enable_hover svg {
  width: 16px !important;
  height: 16px !important;
}
.toolkit_iconbutton.enable_hover:hover {
  background: #e5f2ff;
}
.toolkit_iconbutton.large_btn {
  width: 45px;
  height: 45px;
  padding: 5px;
}
.toolkit_iconbutton.large_btn svg {
  width: 30px !important;
  height: 30px !important;
}
.toolkit_iconbutton.medium_btn {
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 35px;
}
.toolkit_iconbutton.medium_btn svg {
  width: 25px !important;
  height: 25px !important;
}
.toolkit_iconbutton.svg_16 svg {
  width: 16px !important;
  height: 16px !important;
}
.toolkit_iconbutton.svg_18 svg {
  width: 18px !important;
  height: 18px !important;
}
.toolkit_iconbutton.svg_24 svg {
  width: 24px !important;
  height: 24px !important;
}
.toolkit_iconbutton.svg_30 svg {
  width: 30px !important;
  height: 30px !important;
}
/** source file: static/toolkit/modules/toolkit_checked_iconbutton.scss **/
/** Adds css to indicate whether the icon is active (useful in a ButtonGroupEnumeratedValueContro) */
.toolkit_checked_iconbutton svg {
  fill: #BFBFBF !important;
  stroke: #BFBFBF !important;
}
.toolkit_checked_iconbutton.toolkit_control_active svg {
  background-color: #DBEEFF;
}
.toolkit_checked_iconbutton:hover svg {
  fill: rgb(95, 95, 95) !important;
  stroke: rgb(95, 95, 95) !important;
}
/** source file: static/toolkit/modules/toolkit_link_button.scss **/
.toolkit_link_button {
  cursor: pointer;
  color: #0088FF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.toolkit_link_button:hover, .toolkit_link_button:focus {
  color: #4DADFF;
}
/** source file: static/toolkit/modules/toolkit_buttonset.scss **/
.toolkit_buttonset {
  display: flex;
  width: fit-content;
  margin-left: auto;
  padding: 8px;
}
/** source file: static/toolkit/modules/toolkit_buttongroup.scss **/
/** Margin is consistent with margin of toolkit_button */
.toolkit_buttongroup {
  display: flex;
}

.toolkit_buttongroup_coalesce {
  margin-left: 16px;
  margin-right: 16px;
}

/** Standard buttons have no margin within toolkit_buttongroup */
.toolkit_buttongroup_coalesce > .toolkit_standard_button {
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0;
  border-left-width: 0;
}

/** Class for horizontal (default) direction */
.toolkit_buttongroup_horizontal_direction {
  flex-direction: row;
}
.toolkit_buttongroup_horizontal_direction.toolkit_buttongroup_coalesce {
  /* First button has radius on left */
  /* Last button has radius on right */
}
.toolkit_buttongroup_horizontal_direction.toolkit_buttongroup_coalesce > .toolkit_standard_button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-left-width: 1px;
}
.toolkit_buttongroup_horizontal_direction.toolkit_buttongroup_coalesce > .toolkit_standard_button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/** Class for vertical direction */
.toolkit_buttongroup_vertical_direction {
  flex-direction: column;
}
/** source file: static/toolkit/modules/toolkit_external_link_button.scss **/
.toolkit_external_link_button {
  cursor: pointer;
  color: #0088cc;
  font-family: inherit !important;
  padding: 2px 0px;
}
.toolkit_external_link_button:hover {
  text-decoration: underline;
}
/** source file: static/toolkit/modules/toolkit_ellipsis_button.scss **/
button.toolkit_ellipsis_button {
  display: inline-flex;
  border-radius: 50%;
  padding: 6px;
  transition: background-color 0.2s ease-in-out;
}
button.toolkit_ellipsis_button svg {
  fill: #000000;
}
button.toolkit_ellipsis_button:hover {
  background: #E6F3FF;
}
/** source file: static/toolkit/modules/toolkit_add_button.scss **/
.toolkit_add_button .toolkit_glyphbutton_content {
  color: #0088FF;
}
/** source file: static/toolkit/modules/toolkit_dropdown_button.scss **/
/** @fileoverview Style for dropdown buttons */
.toolkit_dropdown_button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 4px !important;
  border: 1px solid #dcdcdc !important;
  outline: 0 !important;
  padding: 2px 10px !important;
  box-sizing: border-box;
  min-height: 30px;
  background-color: #ffffff !important;
  color: inherit;
  font-size: inherit;
  /* Dropdown caret */
}
.toolkit_dropdown_button:hover {
  box-shadow: inset 0 1px 0 #888e94, 0 1px 0 #ffffff;
}
.toolkit_dropdown_button .toolkit_dropdown_caret {
  padding: 0 0 0 5px;
  font-size: 16px;
  line-height: 16px;
}
/** source file: static/toolkit/modules/toolkit_input_button.scss **/
.toolkit_input_button {
  box-sizing: border-box;
  display: inline-block;
  margin: 0 !important;
  padding: 4px 6px;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  color: #000;
  border: 1px solid #CBD1D6;
  border-radius: 5px;
  background: #ffffff;
  /** Height */
  min-height: 30px;
  /** Hover/focus effect */
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
}
.toolkit_input_button:hover, .toolkit_input_button:focus, .toolkit_input_button.toolkit_control_has_focus {
  border-color: #0088FF;
}
.toolkit_input_button .toolkit_text_label {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toolkit_input_button .toolkit_svgview {
  margin-left: 5px;
}
/** source file: static/toolkit/modules/toolkit_slimbutton.scss **/
.toolkit_slimbutton {
  background-color: #EBEBEB;
  cursor: pointer;
  border-radius: 4px;
  margin: 0 4px;
  border: 0;
  outline: 0;
  padding: 8px 12px;
  color: #293158;
  font-family: Montserrat;
  font-size: 14px;
  background: #EBEBEB;
  font-weight: 600;
}
.toolkit_slimbutton:hover {
  background-color: #dedede;
}
/** source file: static/toolkit/modules/toolkit_player_seek_button.scss **/
/** Common theme */
button.toolkit_player_seek_button {
  user-select: none;
}

button.toolkit_player_seek_button {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.5s;
  text-align: center;
}

button.toolkit_player_seek_button:hover {
  opacity: 1;
}

button.toolkit_player_seek_button svg {
  fill: currentColor;
  margin: auto;
  margin-top: 6px;
}

/** The Royals Theme (Default and the original -- Lorde is forever the queen) */
.toolkit_player_seek_button_theme_royals {
  background-color: #ffffff !important;
  color: #757575 !important;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2) !important;
  border-radius: 50% !important;
  height: 48px;
  width: 48px;
}
.toolkit_player_seek_button_theme_royals:hover {
  color: #000;
}
.toolkit_player_seek_button_theme_royals svg {
  width: 24px !important;
  height: 24px !important;
}

/** The Melodrama Theme. Needs a dark background. */
.toolkit_player_seek_button_theme_melodrama {
  color: #ffffff;
}
.toolkit_player_seek_button_theme_melodrama svg {
  transition: transform 0.5s;
}
.toolkit_player_seek_button_theme_melodrama svg:hover {
  transform: scale(1.2);
}
.toolkit_player_seek_button_theme_melodrama svg {
  width: 48px !important;
  height: 48px !important;
}
@media screen and (min-width: 1025px) {
  .toolkit_player_seek_button_theme_melodrama svg {
    width: 72px !important;
    height: 72px !important;
  }
}
/** source file: static/toolkit/modules/toolkit_zoom_control.scss **/
.toolkit_zoom_control {
  display: flex;
  align-items: center;
}
/** source file: static/toolkit/modules/toolkit_combo_button.scss **/
.toolkit_combo_button {
  display: flex;
  align-items: stretch;
  color: #fff;
  cursor: pointer;
  width: fit-content;
}
.toolkit_combo_button .combo_button_text {
  background: var(--combo-btn-colour);
  padding-left: 10px;
  padding-right: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toolkit_combo_button .combo_button_text:hover {
  background: var(--combo-btn-colour-hover);
}
.toolkit_combo_button .combo_button_dropdown_trigger {
  border-left: 1px #fff solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--combo-btn-colour);
}
.toolkit_combo_button .combo_button_dropdown_trigger:hover {
  background: var(--combo-btn-colour-hover);
}
/** source file: static/toolkit/modules/toolkit_image.scss **/
img.toolkit_image {
  pointer-events: none;
  max-width: 100%;
}
/** source file: static/shopwindow/modules/shared/redeem_ui_placeholder.scss **/
.presentation_web .redeem_ui_placeholder {
  overflow: hidden;
  text-align: center;
}
.presentation_web .redeem_ui_error_msg {
  padding-top: 5px;
}
/** source file: static/shopwindow/modules/rating_widget.scss **/
.shallow_button, .rating_widget .rating_container.mood .rating_input .toolkit_button, .rating_widget .rating_container.mood .rating_input.selected .toolkit_button {
  outline: 0;
  border: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 7px;
  color: #2a3158;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  margin: 0px;
}
.shallow_button:hover, .rating_widget .rating_container.mood .rating_input .toolkit_button:hover {
  color: #2a3158 !important;
  background-color: #ffffff !important;
  box-shadow: inset 0 0 0 3px rgba(0, 136, 255, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}
.shallow_button.toolkit_control_active, .rating_widget .rating_container.mood .rating_input .toolkit_control_active.toolkit_button, .rating_widget .rating_container.mood .rating_input.selected .toolkit_button {
  box-shadow: inset 0 0 0 3px #0088ff, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  color: #2a3158;
}
.shallow_button.circle, .rating_widget .rating_container.mood .rating_input .circle.toolkit_button {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0px 5px;
}
.shallow_button.jumbo_circle, .rating_widget .rating_container.mood .rating_input .jumbo_circle.toolkit_button {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shallow_button.jumbo_circle svg, .rating_widget .rating_container.mood .rating_input .jumbo_circle.toolkit_button svg {
  width: 40px !important;
  height: 40px !important;
}
.shallow_button.square, .rating_widget .rating_container.mood .rating_input .square.toolkit_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.rating_widget .rating_text {
  display: block;
  text-align: center;
  color: #293158;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}
.rating_widget .rating_container {
  display: flex;
  margin: auto;
  padding: 5px;
  flex-direction: row-reverse;
  width: fit-content;
}
.rating_widget .rating_input .container_txt {
  white-space: nowrap;
  margin-top: 5px;
  visibility: hidden;
}
.rating_widget .rating_input:hover div.container_txt, .rating_widget .rating_input.selected div.container_txt {
  visibility: visible;
}
.rating_widget .rating_container.star .rating_input {
  margin-right: 5px;
  cursor: pointer;
}
.rating_widget .rating_container.star .rating_input svg polygon {
  fill: var(--rating_field_colour1);
  transition: fill 0.4s ease;
}
.rating_widget .rating_container.star .rating_input:hover svg polygon {
  fill: var(--rating_field_colour2);
}
.rating_widget .rating_container.star .rating_input:hover ~ .rating_input svg polygon {
  fill: var(--rating_field_colour2);
}
.rating_widget .rating_container.star .rating_input.selected svg polygon {
  fill: var(--rating_field_colour2);
}
.rating_widget .rating_container.star .rating_input.selected ~ .rating_input svg polygon {
  fill: var(--rating_field_colour2);
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .rating_widget .rating_container.mood {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.rating_widget .rating_container.mood .rating_input {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  position: relative;
}
.rating_widget .rating_container.mood .rating_input .toolkit_button {
  border-radius: 50%;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating_widget .rating_container.mood .rating_input .toolkit_button svg {
  width: 50px !important;
  height: 50px !important;
}
.rating_widget .rating_container.thumb .rating_input svg {
  margin-right: 45px;
  cursor: pointer;
}
.rating_widget .rating_container.thumb .rating_input svg path {
  fill: var(--rating_field_colour1);
  transition: fill 0.4s ease;
}
.rating_widget .rating_container.thumb .rating_input svg:hover path {
  fill: var(--rating_field_colour2);
}
.rating_widget .rating_container.thumb .rating_input svg.selected path {
  fill: var(--rating_field_colour2);
}
/** source file: static/toolkit/modules/toolkit_collapsible.scss **/
/** for collapse button */
.toolkit_collapse_button {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}
.toolkit_collapse_button > * {
  display: inline-block;
}
.toolkit_collapse_button .toolkit_collapse_icon {
  width: 28px;
  height: 20px;
  min-width: 28px;
  -webkit-mask: url(/dg5_platform/assets_static/static/toolkit/assets/toolkit_material_arrow_right.svg) 50% 50%;
  mask: url(/dg5_platform/assets_static/static/toolkit/assets/toolkit_material_arrow_right.svg) 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #000000;
  transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 360ms;
}
.toolkit_collapse_button .toolkit_collapse_icon.toolkit_collapse_icon_expanded {
  transform: rotate(90deg);
}
.toolkit_collapse_button > svg {
  margin-right: 8px;
}

/** base, common css regardless of theme */
.toolkit_collapsible_body {
  display: grid;
  gap: 10px;
  padding: 10px;
}

/** Standard */
.toolkit_collapsible {
  background: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.1411764706), 0 1px 5px rgba(0, 0, 0, 0.1215686275);
  border-radius: 5px;
  margin: 5px 5px 10px 5px;
  padding: 0;
}
.toolkit_collapsible > .toolkit_collapsible_header {
  padding: 10px;
}
.toolkit_collapsible .toolkit_collapsible_icon {
  margin-right: 4px;
}
.toolkit_collapsible .toolkit_collapsible_header .toolkit_text_label {
  flex-grow: 1;
}

/** card style theme */
.toolkit_collapsible.collapsible_theme_card_style .toolkit_collapsible_body {
  background: #f7f7f7;
  padding: 10px;
}
/** source file: static/toolkit/modules/toolkit_accordion.scss **/
.toolkit_accordion {
  max-width: 600px;
  background: #f1f1f1;
  padding: 1px;
}
/** source file: static/toolkit/modules/toolkit_layout_common.scss **/
/** This class is used in editor, but may also be used in renderer. */
/** Any layout node */
div.toolkit_layout_node {
  box-sizing: border-box;
  overflow: hidden;
}

/** Root layout node for table layouts */
div.toolkit_layout_table_page_node {
  display: grid;
  justify-items: center;
}

/** Tables & sections */
div.toolkit_layout_table_node {
  display: grid;
  justify-items: center;
}

/** Row */
div.toolkit_layout_row_node.row_has_flex_layout {
  display: flex;
  flex-direction: row;
}
div.toolkit_layout_row_node.row_has_flex_layout > * {
  flex-grow: 1;
}
div.toolkit_layout_row_node.row_has_grid_layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

/** Layout column  */
div.toolkit_layout_column_node {
  /** Columns use grid display so cell alignment works */
  display: grid;
}

div.toolkit_layout_cell_node {
  word-wrap: break-word;
  /** Do not exceed this max width */
  max-width: 100%;
}

.toolkit_layout_column_span1 {
  grid-column: span 1;
}

.toolkit_layout_column_span2 {
  grid-column: span 2;
}

.toolkit_layout_column_span3 {
  grid-column: span 3;
}

.toolkit_layout_column_span4 {
  grid-column: span 4;
}

.toolkit_layout_column_span5 {
  grid-column: span 5;
}

.toolkit_layout_column_span6 {
  grid-column: span 6;
}

.toolkit_layout_column_span7 {
  grid-column: span 7;
}

.toolkit_layout_column_span8 {
  grid-column: span 8;
}

.toolkit_layout_column_span9 {
  grid-column: span 9;
}

.toolkit_layout_column_span10 {
  grid-column: span 10;
}

.toolkit_layout_column_span11 {
  grid-column: span 11;
}

.toolkit_layout_column_span12 {
  grid-column: span 12;
}

@media (max-width: 600px) {
  .toolkit_layout_responsive_columns {
    /** Only acts if column is contained by a top-level which has responsive enabled. */
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive {
    /** Responsive column sizing classes. Had to add a prefix to make sure it doesn't conflict with "grid" frameworks. */
    /** Reverses order when stacked if this class is present on the row node. */
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span1, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span2, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span3, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span4, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span5, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span6,
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span7, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span8, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span9, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span10, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span11, .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive .toolkit_layout_column_span12 {
    grid-column: span 12;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(1) {
    order: -1;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(2) {
    order: -2;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(3) {
    order: -3;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(4) {
    order: -4;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(5) {
    order: -5;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(6) {
    order: -6;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(7) {
    order: -7;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(8) {
    order: -8;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(9) {
    order: -9;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(10) {
    order: -10;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(11) {
    order: -11;
  }
  .toolkit_layout_responsive_columns .toolkit_layout_row_node.responsive.reverse > .toolkit_layout_column_node:nth-of-type(12) {
    order: -12;
  }
}
/** Aspect-based sizing helping classes */
.toolkit_layoutdocument_limit_aspect_sizing div.toolkit_layout_aspect_sizing_limit_height > .toolkit_aspect_sizing_object {
  max-height: 90vh;
}
.toolkit_layoutdocument_limit_aspect_sizing.toolkit_layoutdocument_editor div.toolkit_layout_aspect_sizing_limit_height > .toolkit_aspect_sizing_object {
  max-height: 600px !important;
}

div.toolkit_layout_aspect_sizing_height {
  position: relative;
  line-height: 0;
}
div.toolkit_layout_aspect_sizing_height > .toolkit_aspect_sizing_object {
  width: 100%;
  height: auto;
}
/** source file: static/toolkit/modules/designsystem/cards/simple_card.scss **/
.simple_card {
  background: #fff;
  padding: 10px;
  width: fit-content;
  margin: auto;
  border-radius: 11px;
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
  box-sizing: border-box;
  cursor: pointer;
}
.simple_card.no_hover {
  cursor: auto;
}
.simple_card.no_hover:hover {
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
}
.simple_card.no_hover.selected {
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
}
.simple_card:hover {
  box-shadow: inset 0 0 0 3px rgba(0, 136, 255, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.simple_card.selected {
  box-shadow: inset 0 0 0 3px #0088FF, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
/** source file: static/toolkit/modules/toolkit_layout_editor_array_member_hiding.scss **/
.toolkit_layoutdocument_editor.toolkit_layout_editor_array_member_hiding .toolkit_layout_array_member_editor_hidden {
  display: none;
}
/** source file: static/toolkit/modules/toolkit_layout_array_controls.scss **/
.toolkit_layout_array_controls {
  padding: 10px;
}
.toolkit_layout_array_controls .app_header {
  width: 100%;
  border-bottom: 1px #cbd1d6 solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.toolkit_layout_array_controls .app_header .settings_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toolkit_layout_array_controls .app_header .app_nav button.toolkit_iconbutton {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}
.toolkit_layout_array_controls .app_header .app_nav button.toolkit_iconbutton:hover {
  background: #ffe8d2;
}
.toolkit_layout_array_controls .app_header .app_nav button.toolkit_iconbutton.add {
  background: #fe9a33;
}
.toolkit_layout_array_controls .app_header .app_nav button.toolkit_iconbutton.add:hover {
  background: #ffb66b;
}
.toolkit_layout_array_controls .app_header .member_indicators > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}
.toolkit_layout_array_controls .app_header .member_indicators > div div.indicator {
  background: #cbd1d6;
  width: 25px;
  height: 25px;
  margin-right: 6px;
  border-radius: 25px;
  cursor: pointer;
}
.toolkit_layout_array_controls .app_header .member_indicators > div div.indicator.active {
  background: #fe9a33;
}
.toolkit_layout_array_controls .app_header .member_indicators > div div.indicator.default {
  border-radius: 0px;
  background: transparent;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 12px;
  border-right-width: 12px;
  border-top: 25px solid #cbd1d6;
}
.toolkit_layout_array_controls .app_header .member_indicators > div div.indicator.default.active {
  border-top-color: #fe9a33;
}
.toolkit_layout_array_controls .content_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toolkit_layout_array_controls .member_state_label {
  color: #00bcb2;
}
/** source file: static/shopwindow/modules/crm/crm_field_block_component.scss **/
.crm_field_block_component .field_label {
  margin-bottom: 5px;
}
.crm_field_block_component.crm_field_invalid {
  border: 2px #FF0000 solid;
}
/** source file: static/shopwindow/modules/shared/typography.scss **/
.lrg_heading {
  color: #293158;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 37px;
}

.lrg_container_txt {
  color: #293158;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 22px;
}

.lrg_supp_txt {
  color: #9aa4ae;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
}

.medium_heading {
  color: #293158;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 37px;
}

.heading_txt {
  color: #293158;
  font-size: 18px;
  font-weight: bold;
}

.body_txt {
  color: #293158;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.bold_body_txt {
  color: #293158;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.supp_txt {
  color: #9aa4ae;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
}

.container_txt {
  color: #293158;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
}

.orange_container_txt {
  color: #e98825;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
}

.orange_body_txt {
  color: #e98825;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.green_container_txt {
  color: #01a601;
  font-size: 14px;
  font-weight: 700;
}

.red_container_txt {
  color: #e94545;
  font-size: 14px;
  font-weight: 700;
}

.red_txt {
  color: #e94545;
}

.white_txt {
  color: #fff;
}

.small_text {
  font-size: 12px !important;
}

.light_bold {
  font-weight: 500;
}

.slightly_bold,
.medium_bold {
  font-weight: 600;
}

.semi_bold {
  font-weight: 700 !important;
}

.normal_bold {
  font-weight: 800 !important;
}

.extra_bold {
  font-weight: 900 !important;
}
/** source file: static/shopwindow/modules/crm/crm_field_component.scss **/
.crm_field_component .toolkit_input {
  width: 100%;
}
/** source file: static/shopwindow/modules/crm/crm_date_field_control.scss **/
.crm_date_field_control .toolkit_date_input {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/** source file: static/shopwindow/modules/crm/crm_datetime_field_control.scss **/
.crm_datetime_field_control {
  position: relative;
}

.crm_datetime_field_control .toolkit_datetime_input > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.crm_datetime_field_control .toolkit_closebutton {
  position: absolute;
  top: 4px !important;
  right: 22px !important;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.crm_datetime_field_control .toolkit_closebutton svg {
  width: 100% !important;
  height: 100% !important;
}

.crm_datetime_field_control:hover button.toolkit_closebutton {
  opacity: 1;
}
/** source file: static/shopwindow/modules/crm/crm_subobject_field_control.scss **/
.crm_subobject_field_control .toolkit_link_button {
  text-transform: capitalize;
  text-decoration: none;
  color: #0088FF;
  font-size: 14px;
  font-weight: bold;
}

.crm_subobject_field_control {
  padding: 0 0 0 6px;
}
.crm_subobject_field_control > .add_button::before {
  content: "+ ";
}

.crm_subobject_field_control_child {
  border: 2px solid rgba(62, 63, 66, 0.1);
  border-radius: 5px;
  box-shadow: 0 3px 5px 0 rgba(120, 120, 120, 0.3);
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px;
  margin-bottom: 10px;
}

form .crm_subobject_field_control {
  padding: 0;
}
/** source file: static/shopwindow/modules/crm/crm_choice_field_media_checkbox_group.scss **/
.crm_choice_field_media_checkbox_group {
  container-type: inline-size;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content {
  padding: 5px;
  display: grid !important;
  grid-gap: 8px;
  overflow-x: auto;
  grid-template-columns: 1fr;
  width: 100%;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.mobile_1 {
  grid-template-columns: 1fr;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.mobile_2 {
  grid-template-columns: 1fr 1fr;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.mobile_3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.mobile_4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.mobile_5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.mobile_6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
@container (min-width: 600px) {
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.desktop_1 {
    grid-template-columns: 1fr;
  }
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.desktop_2 {
    grid-template-columns: 1fr 1fr;
  }
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.desktop_3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.desktop_4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.desktop_5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .crm_choice_field_media_checkbox_group .crm_choice_field_media_checkbox_group_content.desktop_6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.crm_choice_field_media_checkbox_group .ailabs_graphic_view_checkbox_input {
  margin: 0 !important;
}
.crm_choice_field_media_checkbox_group .ailabs_graphic_view_checkbox_input .title_label {
  margin: auto;
}
.crm_choice_field_media_checkbox_group .graphic_choice_view {
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 100%;
  position: relative;
}
.crm_choice_field_media_checkbox_group .graphic_choice_view .media_widget {
  width: 100%;
  height: 100%;
  position: absolute;
}

.personalisation_fields_indicator .crm_field_type_multichoice .crm_choice_field_media_checkbox_group {
  grid-template-columns: 1fr 1fr !important;
}
/** source file: static/shopwindow/modules/crm/crm_field_type_file_default.scss **/
.crm_field_type_file_default {
  display: flex;
  flex-direction: row;
}
.crm_field_type_file_default .toolkit_input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crm_field_type_file_default .files_container {
  display: flex;
  flex-wrap: wrap;
}
.crm_field_type_file_default .ailabs_media_graphicview_live_component {
  margin-right: 4px;
  width: 58px;
  height: 58px;
}
.crm_field_type_file_default .attached_label {
  color: green;
  font-weight: 600;
}
.crm_field_type_file_default button.choose_file_button {
  white-space: nowrap;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .crm_field_type_file_default {
    flex-direction: column;
  }
  .crm_field_type_file_default button.choose_file_button {
    margin: 10px 0px 0px 0px;
  }
}
/** source file: static/toolkit/modules/toolkit_datepicker.scss **/
.toolkit_datepicker {
  z-index: 9999;
  display: block;
  position: relative;
  width: fit-content;
}

.toolkit_datepicker:before,
.toolkit_datepicker:after {
  content: " ";
  display: table;
}

.toolkit_datepicker_lendar {
  margin: 8px;
}

.toolkit_datepicker_title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.toolkit_datepicker_title .toolkit_datepicker_title_select_container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 4px;
  padding: 0 12px;
}

.toolkit_datepicker_title_select_container select {
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  -webkit-appearance: none !important;
  background-color: transparent !important;
}

.toolkit_datepicker .toolkit_datepicker_month_button {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
}
.toolkit_datepicker .toolkit_datepicker_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.toolkit_datepicker .toolkit_datepicker_table th {
  text-align: center;
}
.toolkit_datepicker .toolkit_datepicker_button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0 !important;
  width: 100%;
  font-family: inherit;
}
.toolkit_datepicker .toolkit_datepicker_table abbr {
  border-bottom: none;
  cursor: help;
  text-decoration: none;
}

.toolkit_datepicker.default_theme {
  color: #333;
  background-color: #fff;
  border: 4px solid #BDDEFF;
  border-radius: 11px;
  box-shadow: 0 15px 18px 0 rgba(18, 18, 18, 0.3);
}
.toolkit_datepicker.default_theme .toolkit_datepicker_lendar {
  width: 240px;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_month_button.prev {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAAGAAAAADiNXWtAAABAklEQVRIDWNgGAXDPgQYyfFh39SpKv/+/N8I1Hu6JD8nAZ8ZLPgkscmBDf/NcOA/A4M0IwPjQ2xqkMWYkDmE2AjD/0sD1Z7jYmOMJqSH6CBCN5ybjcklKyvrPVUsINdwkOUEfUCJ4SALCEbyv98MG/4z/JdmZGS4yMVKXLCADIYBYiL5EUgxMNVIff3NCIpckgBBCzhZGcKAJh4F2iDKwPB3X/fE6Tqk2EAwDkCGTZ06lefb7/87gExrYKy9ZmBgdirNz7xCjEVEWUCJJURbQK4lBOMAORiys7O/cLEyegDFwHHCyPBvAbI8NjZJFoAMgFkCTLZzgNloITZDR8VGWAgAAMMxa1v4wQsCAAAAAElFTkSuQmCC);
  order: -1;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_month_button.next {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAAGAAAAADiNXWtAAABAElEQVRIDWNgGAXDPgQYCfmwZ+LULf///xfnYOb0z81NfkZIPbo8E7oAOh9kOFDM5Oe/7/snT54rhS5PiE/QApDLGRkZbv3/z6BGjiUEgwjkQpDLQYaDLAFZxs7E6UhscBFlASWWEG0BuZYQjAOQwTAAChZQ8DAyMN4Dx8nf70thcrhokiwAGfLr3w+F/wwMomADGZke4zIYJk6SBb0Tp1r9+8+wg4HhPy8DI+M2NkaFVJhBuGii4wDdcHZGxaC8PK+fuAyGiRNlAbmGgywhaAElhoMsYAER+MA/hv/LgfLgMCc2WJDNI2gBMOfOZvzPKMrKqFhGTJgjGz7KHiEhAAABWXVTR4jXAwAAAABJRU5ErkJggg==);
}
.toolkit_datepicker.default_theme .toolkit_datepicker_title select {
  color: #293158 !important;
  font-family: Montserrat !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_month_button {
  opacity: 0.5;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_month_button:hover {
  opacity: 1;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_table abbr {
  text-decoration: none;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_table th,
.toolkit_datepicker.default_theme .toolkit_datepicker_table td {
  width: 14.2857142857%;
  padding: 1px;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_button {
  padding: 5px;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  color: #666;
  background-color: #F3F9FB !important;
  color: #293158;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 600;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_button.toolkit_datepicker_is_today {
  color: #FF8100;
  font-weight: bold;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_button.toolkit_datepicker_is_selected {
  font-weight: bold;
  color: #fff !important;
  background-color: #0088FF !important;
  box-shadow: none !important;
  border-radius: 3px !important;
}
.toolkit_datepicker.default_theme .toolkit_datepicker_button:hover {
  color: #fff !important;
  background-color: #0088FF !important;
  box-shadow: none !important;
  border-radius: 3px !important;
}

.toolkit_datepicker.braun_theme .toolkit_datepicker_title select {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #293158;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_month_button {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  font-weight: 500;
  color: #0088FF;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='12px' height='20px' viewBox='0 0 12 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-832.000000, -169.000000)' stroke='%230088FF' stroke-width='2'%3E%3Cg transform='translate(499.000000, 145.000000)'%3E%3Cg transform='translate(335.000000, 24.000000)'%3E%3Cg transform='translate(5.000000, 9.500000) rotate(90.000000) translate(-5.000000, -9.500000) translate(-4.500000, 4.500000)'%3E%3Cpolyline transform='translate(9.833333, 5.333333) rotate(-270.000000) translate(-9.833333, -5.333333) ' points='5.33333333 -3.66666667 14.3333333 5.33333333 5.33333333 14.3333333'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 12px;
  background-position: 16px center;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .toolkit_datepicker.braun_theme .toolkit_datepicker_month_button {
    font-weight: 700 !important;
    width: auto;
    height: auto;
  }
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_month_button.toolkit_control_enabled {
  color: #0088FF;
  background-color: #F6FBFF;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_month_button.toolkit_control_enabled:hover {
  background-color: #D1EAFF;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_month_button.next {
  transform: rotate(180deg);
  margin-left: 12px;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_table th {
  color: #8B9094;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_table td {
  padding: 6px;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .toolkit_datepicker.braun_theme .toolkit_datepicker_table td {
    padding: 0;
  }
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_button {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  font-weight: 500;
  color: #0088FF;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
  background-color: transparent;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .toolkit_datepicker.braun_theme .toolkit_datepicker_button {
    font-weight: 700 !important;
    width: auto;
    height: auto;
  }
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_button.toolkit_control_enabled {
  color: #0088FF;
  background-color: #F6FBFF;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_button.toolkit_control_enabled:hover {
  background-color: #D1EAFF;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_button.toolkit_datepicker_is_today {
  color: #ffa500;
  font-weight: bold;
}
.toolkit_datepicker.braun_theme .toolkit_datepicker_button.toolkit_datepicker_is_selected {
  color: #FFFFFF;
  background-color: #0088FF !important;
}

.toolkit_datepicker.braun_theme.braun_mini {
  transform: scale(0.8);
  margin-top: -15px;
  margin-left: -20px;
  margin-bottom: -15px;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .toolkit_datepicker.braun_theme.braun_mini {
    transform: scale(0.9);
    margin: auto;
  }
}
.toolkit_datepicker.braun_theme.braun_mini .toolkit_datepicker_lendar {
  margin: 0px;
}
/** source file: static/toolkit/modules/toolkit_date_input.scss **/
.toolkit_date_input button.toolkit_closebutton {
  width: 24px;
  height: 24px;
}
/** source file: static/toolkit/modules/toolkit_time_ranges_input.scss **/
.toolkit_time_ranges_input {
  display: grid;
  row-gap: 10px;
  min-width: 476px;
}
.toolkit_time_ranges_input .no_time_ranges_label {
  border: 1px dashed #979797;
  padding: 20px;
  text-align: center;
}
.toolkit_time_ranges_input .toolkit_repeater {
  display: grid;
  row-gap: 8px;
}
/** source file: static/shopwindow/modules/mediasystem2/media_widget.scss **/
/** @fileoverview For MediaComponent */
.media_widget {
  position: relative;
  overflow: hidden;
}

.media_widget {
  /** MediaObject style */
}
.media_widget > .media_fit_decorator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.media_widget .media_widget_cropmask_box {
  overflow: hidden;
}
.media_widget > .decoration-toolkit-focalpoint-mask > .media_widget_cropmask_box > .media_widget_mediaobject {
  position: absolute;
  object-fit: cover;
  pointer-events: none;
}
/** source file: static/shopwindow/modules/mediasystem2/ailabs_media_player_widget.scss **/
.ailabs_media_player_widget {
  height: 100%;
  position: relative;
}
.ailabs_media_player_widget > iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
/** source file: static/toolkit/modules/designsystem/buttons/shallow_btn.scss **/
.shallow_button {
  outline: 0;
  border: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 7px;
  color: #2a3158;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  margin: 0px;
}
.shallow_button:hover {
  color: #2a3158 !important;
  background-color: #ffffff !important;
  box-shadow: inset 0 0 0 3px rgba(0, 136, 255, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}
.shallow_button.toolkit_control_active {
  box-shadow: inset 0 0 0 3px #0088ff, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  color: #2a3158;
}
.shallow_button.circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0px 5px;
}
.shallow_button.jumbo_circle {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shallow_button.jumbo_circle svg {
  width: 40px !important;
  height: 40px !important;
}
.shallow_button.square {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
/** source file: static/shopwindow/modules/shared/split_screen.scss **/
.split_screen {
  display: grid;
  grid-template-columns: 500px 500px;
  padding: 8px;
}
@media screen and (min-width: 0px) and (max-width: 960px) {
  .split_screen {
    display: block;
  }
}
.split_screen .split_screen_content {
  margin: 0px 10px 0px 0px;
  padding: 10px;
}
.split_screen .split_screen_preview {
  background: #f3f9fb;
  padding: 20px;
  border-radius: 5px;
}
.split_screen .split_screen_preview .split_screen_preview_header {
  color: #787878;
  font-size: 12px;
  font-weight: 500;
}
.split_screen .split_screen_preview .split_screen_preview_holder {
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  padding: 25px;
  margin-top: 15px;
  position: sticky;
  top: 20px;
}
.split_screen .split_screen_preview .split_screen_preview_holder img {
  margin: auto;
  display: block;
}
/** source file: static/shopwindow/modules/shopwindow_upload_dragover.scss **/
.shopwindow_upload_droptarget {
  transform: scale(1);
  transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 400ms;
}

.shopwindow_upload_dragover {
  transform: scale(1.2);
}
/** source file: static/shopwindow/modules/mediasystem2/ailabs_media_graphicview_live_component.scss **/
.ailabs_media_graphicview_live_component {
  overflow: hidden;
}
.ailabs_media_graphicview_live_component .media_widget_container {
  position: relative;
}
.ailabs_media_graphicview_live_component .media_widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/** source file: static/shopwindow/modules/mediasystem2/ailabs_media_player_live_component.scss **/
.ailabs_media_player_live_component {
  position: relative;
}
.ailabs_media_player_live_component .ailabs_media_player_widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/** source file: static/shopwindow/modules/mediasystem2/media_library.scss **/
/** @fileoverview This mixin must be placed on the MobileScrollNavigator to configure spacing adjustment & to set section widths.

      Assumes that MobileScrollNavigator's width is the width of the viewport.
 */
.media_library {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.media_library_navigator {
  --toolkit_mobile_scroll_navigator_space:10;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .media_library_navigator {
    --toolkit_mobile_scroll_navigator_active:1;
  }
  .media_library_navigator .toolkit_mobile_scroll_navigator_control {
    display: flex !important;
  }
  .media_library_navigator .toolkit_mobile_scroll_navigator_content {
    overflow: auto hidden;
    white-space: nowrap;
  }
  .media_library_navigator .toolkit_mobile_scroll_navigator_content > * {
    white-space: normal;
  }
  .media_library_navigator .toolkit_directory_tree_control {
    box-sizing: border-box;
    width: calc(100vw - 10px) !important;
    min-width: calc(100vw - 10px) !important;
  }
  .media_library_navigator .media_library_view {
    box-sizing: border-box;
    width: calc(100vw - 10px) !important;
    min-width: calc(100vw - 10px) !important;
  }
  .media_library_navigator .composite_media_type_selector {
    box-sizing: border-box;
    width: calc(100vw - 10px) !important;
    min-width: calc(100vw - 10px) !important;
  }
}
.media_library_navigator .toolkit_mobile_scroll_navigator_content {
  display: flex;
  flex-direction: column;
}

/** Size when in dialog */
.media_library_dialog .media_library {
  padding-top: 0px;
  height: 100%;
}
.media_library_dialog .toolkit_modalpopup_content {
  height: 80vh;
  width: 80vw;
}

.media_library_application_component > * {
  height: 100%;
  width: 100%;
}

.media_library {
  /** Top controls container */
  /** flex css */
}
.media_library .media_option_button {
  display: flex;
}
.media_library .media_option_button svg {
  width: 24px !important;
  height: 24px !important;
}
.media_library .media_library_search_controls_component {
  align-items: center;
  padding: 0 0 5px 0;
}
@media screen and (min-width: 0px) and (max-width: 730px) {
  .media_library .media_library_search_controls_component {
    overflow-x: scroll;
  }
}
.media_library .media_library_search_controls_component > * {
  padding: 5px;
}
.media_library .toolkit_search_input {
  width: 160px !important;
}
.media_library .media_library_dashboard .toolkit_progressbar {
  margin-left: auto;
}
.media_library .media_library_main_layout {
  display: flex;
  height: 0;
  flex-grow: 1;
}
.media_library div.media_library_layout_left {
  border: 1px #CBD1D6 solid;
  padding: 8px 10px;
  flex-direction: column;
  align-items: center;
}
.media_library div.media_library_layout_left > button.new_folder_button {
  margin-bottom: 10px;
}
.media_library .media_library_centre_layout {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 16px;
}
.media_library .toolkit_directory_tree_control {
  width: 260px;
  padding: 1px;
}
.media_library .composite_media_type_selector {
  margin-left: auto;
}
.media_library .composite_media_type_selector .media_option_button {
  margin-top: 10px;
  width: 60px;
  height: 60px;
  flex-direction: column;
  justify-content: center;
}
.media_library .composite_media_type_selector .media_option_button .toolkit_glyphbutton_content {
  margin: 0 !important;
  font-size: 10px;
  line-height: 12px;
  white-space: normal;
  text-align: center;
}

/** Media query to make Media Library display well on tablet. */
@media screen and (min-width: 0px) and (max-width: 1200px) {
  .media_library .media_library_dashboard {
    flex-direction: column;
    height: 220px;
  }
}
@media screen and (min-width: 0px) and (max-width: 730px) {
  .media_library_main_layout .media_library_view {
    min-width: 90vw;
  }
  .media_library_main_layout .composite_media_type_selector {
    background: #F3F9FB;
  }
  .media_library_main_layout .composite_media_type_selector .toolkit_buttongroup {
    min-width: 90vw;
    display: flex;
    flex-wrap: wrap;
  }
  .media_library_main_layout .composite_media_type_selector .toolkit_buttongroup .media_option_button {
    width: 40%;
    flex-grow: 1;
    margin: 10px !important;
  }
}
/** source file: static/shopwindow/modules/mediasystem2/media_library_editmediafields_dialog.scss **/
.media_library_editmediafields_dialog {
  min-width: clamp(200px, 700px, 90%);
}
.media_library_editmediafields_dialog .toolkit_powerled_label {
  width: 195px;
}
.media_library_editmediafields_dialog button.cs2_connections_button {
  width: fit-content;
  margin: 10px 0px;
}
.media_library_editmediafields_dialog .toolkit_editable_text_label {
  background: #F3F9FB;
  border-radius: 5px;
  min-height: 10px !important;
  margin: 5px 10px 5px 0px;
}
.media_library_editmediafields_dialog .media_graphicview_ui_component {
  width: 100%;
}
/** source file: static/shopwindow/modules/mediasystem2/media_library_view_controls_component.scss **/
.media_library_view_controls_component {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /** Draggable selection display */
}
.media_library_view_controls_component .media_library_selection_display {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 500ms linear;
}
.media_library_view_controls_component .media_library_selection_display .simple_card {
  padding: 4px 10px;
}
.media_library_view_controls_component .media_library_selection_display.selection_nonempty {
  opacity: 1;
}
/** source file: static/shopwindow/modules/mediasystem2/ms2_media_player_popup.scss **/
.toolkit_modalpopup_bg {
  background-color: rgba(18, 18, 18, 0.689);
  opacity: 1;
}

.ms2_media_player_popup {
  position: fixed !important;
  top: 10vh;
  bottom: 10vh;
  left: 10vh;
  right: 10vh;
}
.ms2_media_player_popup .close_button {
  position: absolute;
  top: -50px;
  right: -50px;
}
.ms2_media_player_popup .close_button svg {
  width: 32px !important;
  height: 32px !important;
}
.ms2_media_player_popup .ailabs_media_player_live_component {
  width: 100%;
  height: 100%;
}
/** source file: static/shopwindow/modules/mediasystem2/ms2_mini_media_player.scss **/
.ms2_mini_media_player {
  width: 350px;
  height: 200px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  background-color: rgb(227, 227, 227);
  overflow: hidden;
  position: relative;
}
.ms2_mini_media_player img.toolkit_image {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.ms2_mini_media_player .mini_video_player_play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(18, 18, 18, 0.5019607843);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.ms2_mini_media_player .mini_video_player_play_button:hover {
  background: rgba(18, 18, 18, 0.5843137255);
}
.ms2_mini_media_player .mini_video_player_play_button > svg {
  width: 44px !important;
  height: 44px !important;
  margin-left: 4px;
}
/** source file: static/toolkit/modules/toolkit_layered_layout.scss **/
.toolkit_layered_layout {
  position: relative;
}
.toolkit_layered_layout > * {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
/** source file: static/toolkit/modules/toolkit_block_layout.scss **/
.toolkit_block_layout > * {
  box-sizing: border-box;
}
/** source file: static/toolkit/modules/toolkit_flex_layout.scss **/
.toolkit_flex_layout {
  display: flex;
  flex-direction: row;
}
/** source file: static/toolkit/modules/toolkit_css_grid_layout.scss **/
.toolkit_css_grid_layout {
  display: grid;
}
/** source file: static/toolkit/modules/toolkit_section_layout.scss **/
.toolkit_section_layout .toolkit_section_child_container {
  padding: 6px 0 10px 4px;
}
/** source file: static/toolkit/modules/toolkit_zoom_container.scss **/
.toolkit_zoom_container {
  position: relative;
}
.toolkit_zoom_container .toolkit_zoom_container_content {
  position: absolute;
  min-width: 100%;
  transform-origin: top left;
}
/** source file: static/toolkit/modules/toolkit_progressbar.scss **/
.toolkit_progressbar {
  position: relative;
  width: 146px;
  margin: 6px 0;
  overflow: hidden;
}

.toolkit_progressbar_mercury {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.toolkit_progressbar_mercury.transition {
  transition: width 400ms linear;
}

.toolkit_progressbar .toolkit_text_label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  transform: translate(-50%, -50%);
}

.toolkit_progressbar.default_theme {
  height: 16px;
  border: 1px solid #CBD1D6;
  border-radius: 5px;
  padding: 5px 2px;
  color: #293158;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
}
.toolkit_progressbar.default_theme .toolkit_progressbar_mercury {
  background-color: #D8E3ED;
}

.toolkit_progressbar.curved_theme {
  height: 24px;
}
.toolkit_progressbar.curved_theme .toolkit_progressbar_mercury {
  background: #0088FF;
  color: #fff;
}
.toolkit_progressbar.curved_theme .toolkit_progressbar_mercury.incomplete {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.toolkit_progressbar.modern_theme {
  background: #D8D8D8;
  width: 100%;
  box-sizing: border-box;
  height: 8px !important;
  border: none !important;
  padding: 2px;
}
.toolkit_progressbar.modern_theme .toolkit_progressbar_mercury {
  background: #2BD02B !important;
}
.toolkit_progressbar.modern_theme .toolkit_progressbar_mercury.incomplete {
  background: #0088FF !important;
}
.toolkit_progressbar.modern_theme .toolkit_text_label {
  display: none !important;
}
/** source file: static/toolkit/modules/toolkit_removable_repeater_child.scss **/
.toolkit_removable_repeater_child {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  margin-bottom: 10px;
  font-weight: 500;
}
.toolkit_removable_repeater_child.has_border {
  border: 1px solid #BBBBBB;
  border-radius: 11px;
}
.toolkit_removable_repeater_child > *:first-child {
  flex-grow: 1;
}
.toolkit_removable_repeater_child > .remove_child_button {
  align-self: start;
}
/** source file: static/toolkit/modules/toolkit_searchable_repeater.scss **/
.toolkit_searchable_repeater .toolkit_block_layout {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.toolkit_searchable_repeater .toolkit_block_layout > div {
  display: flex;
}
.toolkit_searchable_repeater .toolkit_block_layout > div:last-child {
  flex-grow: 1;
}
.toolkit_searchable_repeater .toolkit_block_layout > div > * {
  width: 100%;
}
.toolkit_searchable_repeater .toolkit_block_layout > div > .toolkit_scrollablebox {
  margin-top: 4px;
}
/** source file: static/toolkit/modules/toolkit_task_monitor.scss **/
.toolkit_task_item_monitor {
  overflow: hidden;
}

.toolkit_task_item_monitor .toolkit_flex_layout {
  align-items: center;
}
.toolkit_task_item_monitor .toolkit_flex_layout > * {
  margin: 4px;
}
.toolkit_task_item_monitor .task_name_label {
  width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/** source file: static/toolkit/modules/toolkit_html5_target_dragover.scss **/
/** @fileoverview This is added when an element which is a drop target is in a drag operation so that children don't mess with dragleave event. */
.toolkit_html5_target_dragover > * {
  pointer-events: none;
}
/** source file: static/shopwindow/modules/mediasystem2/media_item_card_checkbox.scss **/
.media_item_card_checkbox .media_item_card_action {
  display: flex;
  align-items: flex-end;
  padding-right: 5px;
}
.media_item_card_checkbox .media_item_card_action button {
  margin: 0;
  padding: 3px;
}
.media_item_card_checkbox .media_item_card_action button svg {
  width: 20px !important;
  height: 20px !important;
}
/** source file: static/shopwindow/modules/mediasystem2/ms2_folder_selector.scss **/
.ms2_folder_selector_popup {
  width: 206px;
  height: 30px;
}
.ms2_folder_selector_popup .create_folder_button {
  background: #0188FF;
  border: none;
  color: #fff;
  font-family: "Montserrat", Helvetica, sans-serif;
  padding: 5px 40px;
  font-size: 12px;
}

.ms2_folder_selector_popup .toolkit_directory_tree_control {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  border: 1px solid #ccc;
  border-top-color: transparent;
}
.ms2_folder_selector_popup .toolkit_directory_tree_control .toolkit_text_label {
  font-size: 14px !important;
}

.ms2_folder_selector .toolkit_input_button {
  background-image: url(/dg5_platform/assets_static/static/shopwindow/assets/shared/dropdown_arrow.svg);
  background-repeat: no-repeat;
  background-position: 98% 50%;
}
/** source file: static/shopwindow/modules/mediasystem2/media_contextual_selector.scss **/
.media_contextual_selector {
  display: flex;
  flex-direction: column;
  min-width: 225px;
  margin-right: 15px;
}
.media_contextual_selector .cards_container {
  background: #F5F5F5;
  padding: 10px;
  margin-top: 10px;
  max-height: 100vh;
}
/** source file: static/shopwindow/modules/mediasystem2/document_media_contextual_selector.scss **/
/** @fileoverview Style for docuemnt media contextual selector */
.document_media_contextual_selector > .toolkit_css_grid_layout button.toolkit_button {
  margin: 0 !important;
  width: 100%;
}
/** source file: static/shopwindow/modules/mediasystem2/media_resource_input.scss **/
.media_resource_input {
  width: fit-content;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
  margin-left: 2px;
  color: #787878;
  padding: 2px;
  cursor: pointer;
}
.media_resource_input .add_media_button::before {
  content: "+";
  color: #787878;
}
.media_resource_input .add_media_button svg {
  vertical-align: text-bottom;
}
.media_resource_input .ailabs_media_graphicview_live_component {
  width: 30px;
  height: 24px;
}
/** source file: static/shopwindow/modules/shared/ailabs_conditionally_hidden.scss **/
.ailabs_conditionally_hidden {
  display: none !important;
}
/** source file: static/shopwindow/modules/crm2/forms/viewer/dedicated_page/form_dedicated_page.scss **/
/** @fileoverview Style for the form's dedicated page. Runs outside the form's shadow DOM, so cannot NOT affect form itself. */
html.form_dedicated_page {
  font-family: "Montserrat";
}
html.form_dedicated_page, html.form_dedicated_page body {
  margin: 0;
  padding: 0;
}
html.form_dedicated_page body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
html.form_dedicated_page body .embeddable_content_shadow_root_host {
  flex-grow: 1;
  display: grid;
  align-items: center;
}
/** source file: static/shopwindow/modules/crm2/forms/viewer/dedicated_page/form_error_alert_bar.scss **/
.form_error_alert_bar {
  background: #0088FF;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: 150px;
  padding: 0px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.form_error_alert_bar p {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.form_error_alert_bar button.close_error_alert {
  border: 1px solid #0088FF;
  color: #293158 !important;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border-radius: 30px;
  color: #293158;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 18px;
  padding: 15px;
  min-width: 100px;
}
.form_error_alert_bar button.close_error_alert:hover {
  color: #293158 !important;
  border: 1px solid #0088FF;
  background: #E6F3FF !important;
}
.form_error_alert_bar button.close_error_alert.toolkit_control_active {
  background-color: #fff;
}
.form_error_alert_bar button.close_error_alert svg.toolkit_svgview {
  fill: #0088FF !important;
}
/** source file: static/shopwindow/modules/crm2/forms/viewer/dedicated_page/form_progress_bar.scss **/
.form_progress_bar {
  position: sticky;
  top: 0;
  z-index: 300;
}
.form_progress_bar .toolkit_progressbar {
  width: 100%;
  margin: 0;
}
/** source file: static/toolkit/modules/toolkit_draggable.scss **/
html.toolkit_draggable_dragging_active {
  user-select: none;
}
html.toolkit_draggable_dragging_active iframe[src] {
  pointer-events: none;
}

.toolkit_draggable_dragging_element {
  cursor: move;
}
/** source file: static/toolkit/modules/toolkit_gripped_draggable_trait.scss **/
.toolkit_gripped_draggable_trait {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
/** source file: static/toolkit/modules/toolkit_dragdrop_item.scss **/
.toolkit_dragdropitem {
  /** Not redundant because while we set user-select: none on document during dragging, it is necessary to prevent text selection before dragStart
     due to hystersis setting potentially delaying drag response long enough that browser would select text */
  user-select: none;
}

.toolkit_dragdropitem_dragging {
  opacity: 0;
  pointer-events: none;
}

.toolkit_dragdropitem_ghost {
  box-sizing: border-box;
  z-index: 2147483647;
  pointer-events: none;
  transition: none !important;
  opacity: 0 !important;
}

.toolkit_dragdropitem_ghost_dragging {
  opacity: 0.82 !important;
}
/** source file: static/toolkit/modules/toolkit_dragdrop_simpletarget.scss **/
.toolkit_dragdrop_simpletarget {
  transition: transform linear 200ms;
}

.toolkit_dragdrop_simpletarget.active {
  transform: scale(1.1);
}
/** source file: static/toolkit/modules/toolkit_draglist_interloper.scss **/
.toolkit_draglist_interloper {
  display: inline-block;
  background-color: #eee;
}
/** source file: static/toolkit/modules/toolkit_resizable_frame.scss **/
.toolkit_resizable_frame {
  position: relative;
  border-color: transparent;
  border-width: 2px;
  border-style: solid;
  transition: border-color 500ms ease-out;
  box-sizing: border-box;
}
.toolkit_resizable_frame > .content_element {
  width: 100%;
  height: 100%;
}

.toolkit_resizable_frame_handle {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 32px;
  height: 32px;
  background-image: url(/dg5_platform/assets_static/static/toolkit/assets/toolkit_resizable_frame_handle.svg);
  background-size: 32px 32px;
  background-position: bottom right;
  background-repeat: no-repeat;
  cursor: move;
  transition: opacity 500ms ease-out;
}

/* Show handle on hover */
.toolkit_resizable_frame:hover div.toolkit_resizable_frame_handle {
  opacity: 1;
}

/* Border on hover */
.toolkit_resizable_frame:hover {
  border-color: #0088cc;
}
/** source file: static/toolkit/modules/toolkit_dialog.css **/
.modal_dialog a,
.modal_dialog a:link,
.modal_dialog a:visited {
  color: #06c;
  cursor: pointer;
}
/** source file: static/toolkit/modules/toolkit_fullsize_dialog.scss **/
.toolkit_fullsize_dialog {
  display: flex;
  flex-direction: column;
}

.toolkit_fullsize_dialog_topbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.toolkit_fullsize_dialog_topbar_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.toolkit_fullsize_dialog_content {
  height: 0;
  flex-grow: 1;
  overflow: auto;
}
/** source file: static/toolkit/modules/toolkit_dialog_prompt_message.scss **/
@media screen and (min-width: 0px) and (max-width: 730px) {
  .toolkit_dialog_prompt .chat_message_composer .message_block_editor .simple_card {
    width: fit-content !important;
  }
}
.toolkit_dialog_prompt .toolkit_dialog_prompt_message {
  padding: 0 0 4px 0;
  font-weight: bold;
}
/** source file: static/shopwindow/modules/fancy_credit_card_number_input.scss **/
.fancy_credit_card_number_input {
  position: relative;
}
.fancy_credit_card_number_input .toolkit_spriteview {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translate(0, -50%);
  transition: opacity 1s ease-in-out;
}
/** source file: static/shopwindow/modules/payment_component.scss **/
.payment_component .payment_eftpos_image {
  display: block;
  margin: auto;
  height: 60px;
}
.payment_component > label {
  margin-top: 12px;
}
.payment_component .expiration_input_container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.payment_component .expiration_input_container input {
  width: 80px;
}
.payment_component .expiration_input_container label {
  padding: 0 8px;
}
/** source file: static/shopwindow/modules/offer_checkout_dialog.scss **/
.offer_checkout_dialog .toolkit_modalpopup_content > .toolkit_scrollablebox {
  display: grid;
  grid-gap: 10px;
}
.offer_checkout_dialog .offer_cart_container {
  display: grid;
  gap: 20px;
}
.offer_checkout_dialog .offer_cart_container .ailabs_media_graphicview_live_component {
  height: 30vh;
}
.offer_checkout_dialog .options_quantity_checkout_step .quantity_controls {
  display: flex;
}
.offer_checkout_dialog .options_quantity_checkout_step .quantity_controls .quantity_display {
  flex-grow: 1;
  text-align: center;
}
.offer_checkout_dialog .payment_checkout_step {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
@media (min-width: 960px) {
  .offer_checkout_dialog .toolkit_modalpopup_content > .toolkit_scrollablebox {
    padding: 12px;
  }
  .offer_checkout_dialog .offer_cart_container {
    grid-template-columns: 1fr 1fr;
  }
  .offer_checkout_dialog .options_quantity_checkout_step {
    width: 400px;
  }
}
/** source file: static/toolkit/modules/toolkit_media_player/toolkit_media_player.scss **/
.toolkit_media_player {
  display: flex;
  flex-direction: column;
  position: relative;
}
.toolkit_media_player .toolkit_media_player_container {
  flex-grow: 1;
}
.toolkit_media_player .toolkit_media_player_container iframe.toolkit_rotatable_video_container {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.toolkit_media_player .toolkit_media_player_overlaid_play_pause_button {
  background: rgba(18, 18, 18, 0.6);
  color: #fff;
  transition: opacity ease 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  max-width: 20vw;
  max-height: 20vw;
  border-radius: 50%;
  opacity: 1;
}
.toolkit_media_player .toolkit_media_player_overlaid_play_pause_button button,
.toolkit_media_player .toolkit_media_player_overlaid_play_pause_button svg {
  width: 100%;
  height: 100%;
}
.toolkit_media_player .toolkit_media_player_controls {
  background: rgba(18, 18, 18, 0.6);
  color: #fff;
  transition: opacity ease 0.6s;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
}
.toolkit_media_player.show_controls_always .toolkit_media_player_controls {
  position: static;
  flex-basis: 52px;
}
.toolkit_media_player.show_controls_always .toolkit_media_player_controls, .toolkit_media_player.show_controls .toolkit_media_player_controls {
  opacity: 1;
}
.toolkit_media_player.media_player_playing .toolkit_media_player_overlaid_play_pause_button {
  opacity: 0;
}
/** source file: static/toolkit/modules/toolkit_media_player/toolkit_media_player_controls.scss **/
.toolkit_media_player_controls {
  display: flex;
  align-items: center;
}
.toolkit_media_player_controls .toolkit_duration_data {
  margin-right: 5px;
  font-family: monospace;
  white-space: pre;
}
.toolkit_media_player_controls .toolkit_duration_data span {
  margin-right: 5px;
}
.toolkit_media_player_controls .toolkit_duration_data span:last-of-type:before {
  content: "/";
  margin-right: 5px;
}
.toolkit_media_player_controls .toolkit_slider {
  width: auto;
}
.toolkit_media_player_controls .toolkit_slider .toolkit_slider_thumb {
  display: none;
}
.toolkit_media_player_controls .toolkit_slider .toolkit_slider_track {
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.toolkit_media_player_controls .toolkit_slider .toolkit_slider_mercury {
  background: rgba(255, 255, 255, 0.5);
}
.toolkit_media_player_controls .progress_slider {
  flex-grow: 1;
  min-width: 64px;
}
.toolkit_media_player_controls .volume_slider {
  width: 80px;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .toolkit_media_player_controls .volume_slider {
    display: none;
  }
}
/** source file: static/toolkit/modules/toolkit_media_player/toolkit_media_player_controls_theme.scss **/
.toolkit_media_player_controls.theme_default .toolkit_duration_data {
  color: #fff;
}
.toolkit_media_player_controls.theme_default svg {
  fill: #fff;
  width: 50px;
  height: 50px;
}

.toolkit_media_player_controls.theme_light {
  color: #000;
  background: none;
}
.toolkit_media_player_controls.theme_light .toolkit_duration_data {
  color: #000;
}
.toolkit_media_player_controls.theme_light svg {
  fill: #000;
  width: 32px;
  height: 32px;
}
/** source file: static/shopwindow/modules/cmr_subscriber_dialog.scss **/
.cmr_subscriber_preferences_dialog {
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cmr_subscriber_preferences_dialog canvas {
  margin-top: -9px;
  margin-left: -3px;
}

.cmr_subscriber_preferences_dialog img.cmr_business_logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cmr_subscriber_preferences_dialog .subscription_message {
  display: block;
  font-weight: 700;
  font-size: 17px !important;
  margin-top: 22px !important;
  text-align: center;
  color: #333333;
}

.cmr_subscriber_preferences_dialog .legal_section {
  display: block;
  padding: 2px;
  font-style: italic;
  text-align: left;
  margin-bottom: 4px;
  font-size: 12px !important;
}

.cmr_subscriber_preferences_dialog .subscription_message,
.cmr_subscriber_preferences_dialog .legal_section {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 20px;
  margin-top: 8px;
}

.cmr_subscriber_preferences_dialog .freq_heading {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px !important;
  font-style: italic !important;
  margin: 40px 0 10px 0 !important;
}

.cmr_subscriber_preferences_dialog .freq_explain {
  font-size: 10px !important;
}
/** source file: static/toolkit/modules/toolkit_editorfield.scss **/
.toolkit_editorfield {
  /** Style the text variable tag. May be used outside of editor when showing preview to user, so is in a reusable mixin. */
  cursor: text;
  outline: none;
  /** Do not let editor to get too smaller for user to click in, when running in inline mode. */
  min-width: 4px;
}
.toolkit_editorfield var {
  user-select: all;
  font-style: normal;
  cursor: pointer;
}
.toolkit_editorfield var:before {
  content: "{";
}
.toolkit_editorfield var:after {
  content: "}";
}
.toolkit_editorfield .toolkit_editorfield var:hover:before {
  color: silver;
}
.toolkit_editorfield .toolkit_editorfield var:hover:after {
  color: silver;
}
.toolkit_editorfield a {
  text-decoration: underline;
  cursor: pointer;
}
/** source file: static/toolkit/modules/toolkit_editor.scss **/
.toolkit_editor {
  padding: 4px;
}

.toolkit_editor .toolkit_editorfield {
  background-color: #fff;
  color: #000;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 4px 6px;
}
.toolkit_editor .toolkit_editorfield:hover, .toolkit_editor .toolkit_editorfield:focus {
  border-color: #4d90fe;
}
/** source file: static/toolkit/modules/toolkit_texteditor_typography_base.scss **/
.toolkit_texteditor_typography_base p, .toolkit_texteditor_typography_base h1, .toolkit_texteditor_typography_base h2, .toolkit_texteditor_typography_base h3, .toolkit_texteditor_typography_base h4, .toolkit_texteditor_typography_base h5, .toolkit_texteditor_typography_base h6 {
  margin: 4px 0;
}
.toolkit_texteditor_typography_base p {
  line-height: 1.3;
}
.toolkit_texteditor_typography_base h1, .toolkit_texteditor_typography_base h2, .toolkit_texteditor_typography_base h3, .toolkit_texteditor_typography_base h4, .toolkit_texteditor_typography_base h5, .toolkit_texteditor_typography_base h5, .toolkit_texteditor_typography_base h6 {
  line-height: 1.2;
}
/** source file: static/shopwindow/modules/crm/crm_end_user_appointment_application.scss **/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -80%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.jflutterdoc_EndUserAppointmentApplication {
  margin: 0;
  background: #F6F5F5;
  font-family: "Tahoma", Verdana, Segoe, sans-serif;
}
.jflutterdoc_EndUserAppointmentApplication .appointment_display_component {
  margin: auto;
  padding: 15px 40px;
  border: 1px solid #B9DFFF;
  border-radius: 11px;
  margin: 10px;
  font-weight: 600;
  text-align: center;
}
.jflutterdoc_EndUserAppointmentApplication .appointment_management_card {
  background: #fff;
  width: fit-content;
  min-width: 300px;
  max-width: 1200px;
  margin: 40px auto 30px auto;
  padding: 20px;
  border-radius: 11px;
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
  text-align: center;
}
.jflutterdoc_EndUserAppointmentApplication .appointment_management_card button.cancel_appointment_btn {
  background-color: #E94545;
  color: #fff;
}
.jflutterdoc_EndUserAppointmentApplication .appointment_management_card button.cancel_appointment_btn:hover {
  background-color: #FE7E7E;
}
.jflutterdoc_EndUserAppointmentApplication .appointment_management_card button {
  max-width: 500px;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component {
  width: fit-content;
  margin: auto;
  min-height: 566px;
  box-sizing: border-box;
  padding: 16px;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component p.red_note {
  color: #E94545;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .crm_appointment_root_component_layout {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}
@media (max-width: 1024px) {
  .jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .crm_appointment_root_component_layout {
    grid-template-columns: auto !important;
  }
}
@media (min-width: 600px) {
  .jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .crm_appointment_type_card_component {
    width: 490px;
  }
  .jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .crm_book_appointment_component {
    min-width: 490px;
  }
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .go_back_button {
  position: absolute;
  top: 4px;
  left: 4px;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .staff_picker {
  display: inline-block;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .toolkit_datepicker_lendar {
  border: 1px #D8D8D8 solid;
  border-radius: 11px;
  padding: 8px 18px 18px 18px !important;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .jflutterdoc_EndUserAppointmentApplication .crm_appointment_root_component .toolkit_datepicker_lendar {
    padding: 2px !important;
  }
}
.jflutterdoc_EndUserAppointmentApplication .crm_book_appointment_component {
  border: 1px solid #D8D8D8;
  border-radius: 11px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
}
@media (min-width: 600px) {
  .jflutterdoc_EndUserAppointmentApplication .crm_book_appointment_component .staff_picker_container {
    max-width: 490px;
  }
  .jflutterdoc_EndUserAppointmentApplication .crm_book_appointment_component .toolkit_datepicker {
    width: 490px;
  }
}
.jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component {
  position: relative;
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}
@media screen and (min-width: 601px) {
  .jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component {
    padding: 40px;
  }
}
@media (min-width: 650px) {
  .jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component {
    min-width: 600px;
  }
}
.jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component .crm_form_field_blocks_container {
  font-family: Montserrat;
}
.jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component .toolkit_scrollablebox {
  max-height: 486px;
  padding: 4px;
}
.jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component .form_component {
  border: 1px #D8D8D8 solid;
  border-radius: 11px;
  margin-top: 16px;
  padding: 16px;
}
.jflutterdoc_EndUserAppointmentApplication .confirm_book_appointment_component .toolkit_button_default {
  display: block !important;
  width: fit-content !important;
  margin-left: auto !important;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_time_picker .toolkit_flat_checkbox_input {
  transition: all 0.2s ease;
  color: #787878;
  font-size: 14px;
  padding: 0px;
}
.jflutterdoc_EndUserAppointmentApplication .crm_appointment_time_picker .toolkit_flat_checkbox_input .toolkit_flat_checkbox_layout {
  padding: 15px 0px;
  margin: 0px;
}
/** source file: static/toolkit/modules/toolkit_richtext_media.scss **/
figure.toolkit_richtext_media img {
  width: 100%;
}
/** source file: static/ella/modules/ella_metric_component.scss **/
/** @fileoverview Themes for ella_metric_component */
.ella_metric_component > * {
  word-wrap: break-word;
}

.ella_metric_component.theme_inline {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ella_metric_component.theme_huge {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 4px;
}
.ella_metric_component.theme_huge > * {
  text-align: center;
  margin: 0 !important;
}
.ella_metric_component.theme_huge dt {
  font-weight: normal;
  font-size: 10px;
  line-height: 120%;
  text-transform: uppercase;
}
.ella_metric_component.theme_huge dd {
  font-size: 26px;
  line-height: 120%;
  font-weight: bold;
}
/** source file: static/ella/modules/ella_card_checkbox.scss **/
.ella_card_checkbox {
  margin-bottom: 8px !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
/** source file: static/ella/modules/ella_file_card_checkbox.scss **/
.ella_file_card_checkbox {
  width: 100% !important;
  margin-bottom: 8px !important;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 5px !important;
}
.ella_file_card_checkbox img {
  width: 64px;
  height: 50px;
  margin: 5px;
  object-fit: cover;
}
.ella_file_card_checkbox .file_card_data {
  flex-grow: 1;
  padding-left: 5px;
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
}
.ella_file_card_checkbox .file_card_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/** source file: static/ella/modules/ella_control_group.scss **/
.ella_control_group {
  border: 1px solid #D8D8D8;
  border-radius: 11px;
  margin: 8px 0;
  padding: 4px 6px;
}
.ella_control_group:last-child {
  margin-bottom: 0;
}
/** source file: static/ella/modules/ella_icon_layout.scss **/
.ella_icon_layout {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 4px;
}
.ella_icon_layout svg {
  width: 18px;
  height: 18px;
}
/** source file: static/ella/modules/ella_icon_text_label.scss **/
.ella_icon_text_label {
  width: fit-content;
  align-items: center;
}
/** source file: static/ella/modules/ella_flash_notification.scss **/
.ella_flash_notification {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}
/** source file: static/ella/modules/ella_curved_button.scss **/
/** @fileoverview Makes a button curved */
button.ella_curved_button {
  border-radius: 22px;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_type_card_component.scss **/
.crm_appointment_type_card_component {
  position: relative;
  min-width: 303px;
  padding-bottom: 45px;
  border-radius: 11px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
}
.crm_appointment_type_card_component .ailabs_media_graphicview_live_component {
  height: 216px !important;
}
.crm_appointment_type_card_component .card_content {
  padding: 19px;
}
.crm_appointment_type_card_component .appointment_type_title {
  border-radius: 18px;
  background-color: #BFE9FF;
  width: fit-content;
  padding: 10px 20px;
  color: #121212;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
}
@media screen and (min-width: 601px) {
  .crm_appointment_type_card_component .appointment_type_title {
    font-weight: 500;
  }
}
.crm_appointment_type_card_component .appointment_type_call_to_action {
  margin: 16px 0;
  color: #121212;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 25px;
  margin-bottom: 10px !important;
}
.crm_appointment_type_card_component .appointment_type_duration {
  color: #A5A5A5;
  font-size: 16px;
  font-weight: 500;
  line-height: 15px;
}
.crm_appointment_type_card_component .appointment_type_duration svg {
  width: 18px;
  fill: #A5A5A5;
}
.crm_appointment_type_card_component .appointment_type_description {
  color: #787878;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
  margin: 10px 0;
  font-size: 16px;
}
@media screen and (min-width: 601px) {
  .crm_appointment_type_card_component .appointment_type_description {
    font-size: 14px;
  }
}
.crm_appointment_type_card_component .appointment_type_find_times {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
}
.crm_appointment_type_card_component .appointment_type_find_times svg {
  width: 14px;
  height: 14px;
}
/** source file: static/ella/modules/ella_dashboard.scss **/
/** @fileoverview. Dedicated to kindest woman, Ella Yelich-O'Connor.
      "The notes from my admirers fill the dashboard just the same.
 */
.ella_dashboard {
  background-color: #f3f9fb;
  padding: 20px 10px 10px 10px;
}

.ella_dashboard .ella_dashboard_heading {
  font-weight: bold;
  font-size: 24px;
  margin: 20px 0;
}
/** source file: static/shopwindow/modules/shared/person_link.scss **/
.toolkit_link_button.person_link {
  color: #0088FF;
  text-decoration: none;
}
.toolkit_link_button.person_link:hover, .toolkit_link_button.person_link:focus {
  text-decoration: underline;
}
/** source file: static/shopwindow/modules/card_icon_btn.scss **/
.card_icon_btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-sizing: border-box;
  padding: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.card_icon_btn:hover {
  background: #e4f3ff;
  box-shadow: inset 0 0 0 3px rgba(0, 136, 255, 0.3) !important;
}
.card_icon_btn svg {
  width: 100% !important;
  height: auto !important;
}
.card_icon_btn span.indicator {
  background: #ff8100;
  width: 15px;
  height: 15px;
  padding: 2px;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: -5px;
  right: -2px;
  font-size: 11px;
  line-height: 15px;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_time_picker.scss **/
.shallow_button, .crm_appointment_time_picker .toolkit_flat_checkbox_input {
  outline: 0;
  border: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 7px;
  color: #2a3158;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  margin: 0px;
}
.shallow_button:hover, .crm_appointment_time_picker .toolkit_flat_checkbox_input:hover {
  color: #2a3158 !important;
  background-color: #ffffff !important;
  box-shadow: inset 0 0 0 3px rgba(0, 136, 255, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}
.shallow_button.toolkit_control_active, .crm_appointment_time_picker .toolkit_control_active.toolkit_flat_checkbox_input {
  box-shadow: inset 0 0 0 3px #0088ff, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  color: #2a3158;
}
.shallow_button.circle, .crm_appointment_time_picker .circle.toolkit_flat_checkbox_input {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0px 5px;
}
.shallow_button.jumbo_circle, .crm_appointment_time_picker .jumbo_circle.toolkit_flat_checkbox_input {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shallow_button.jumbo_circle svg, .crm_appointment_time_picker .jumbo_circle.toolkit_flat_checkbox_input svg {
  width: 40px !important;
  height: 40px !important;
}
.shallow_button.square, .crm_appointment_time_picker .square.toolkit_flat_checkbox_input {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/** @fileoverview Css for appointment date time picker */
.crm_appointment_time_picker {
  padding: 0 30px;
  overflow: auto;
}
.crm_appointment_time_picker .toolkit_flat_checkbox_input {
  margin-bottom: 10px !important;
}
.crm_appointment_time_picker .toolkit_flat_checkbox_input {
  text-align: center;
  padding: 15px 0px;
  cursor: pointer;
}
.crm_appointment_time_picker .toolkit_flat_checkbox_input.toolkit_flat_checkbox_input_ischecked {
  box-shadow: inset 0 0 0 3px #0088FF, 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  background: #fff;
}
.crm_appointment_time_picker .toolkit_flat_checkbox_input .toolkit_flat_checkbox_layout {
  justify-content: center;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_datetime_picker.scss **/
.crm_appointment_datetime_picker {
  display: flex;
  flex-direction: row;
}
.crm_appointment_datetime_picker > .timeofday_picker_column {
  max-height: 420px;
  flex-direction: column;
  white-space: nowrap;
}
.crm_appointment_datetime_picker > .timeofday_picker_column > .crm_appointment_time_picker {
  flex-grow: 1;
}
.crm_appointment_datetime_picker > .timeofday_picker_column > .selected_date_label {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 700;
  color: #293158;
}
.crm_appointment_datetime_picker .right_column {
  border-radius: 11px;
  background-color: #F3F9FB;
  padding: 10px;
  box-sizing: border-box;
}
.crm_appointment_datetime_picker .placeholder_container {
  text-align: center;
  position: relative;
}
.crm_appointment_datetime_picker .placeholder_container p.supp_txt {
  max-width: fit-content;
}
.crm_appointment_datetime_picker .placeholder_container .placeholder_svg_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 60px);
}
.crm_appointment_datetime_picker .timeofday_picker_column {
  overflow: scroll;
}
@media (max-width: 1024px) {
  .crm_appointment_datetime_picker {
    flex-direction: column !important;
  }
  .crm_appointment_datetime_picker .toolkit_datepicker {
    width: auto !important;
  }
  .crm_appointment_datetime_picker .timeofday_picker_column {
    width: 100% !important;
  }
}
@media (min-width: 1025px) {
  .crm_appointment_datetime_picker .right_column {
    width: 50%;
    min-width: 210px;
  }
}
.crm_appointment_datetime_picker div.timeofday_picker_column {
  display: none;
}
.crm_appointment_datetime_picker.has_date_selected div.placeholder_container {
  display: none;
}
.crm_appointment_datetime_picker.has_date_selected div.timeofday_picker_column {
  display: flex;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_type_row_component.scss **/
.crm_appointment_type_row_component .copy_share_link_button {
  margin-right: 16px !important;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_schedule_type_chooser_dialog.scss **/
@charset "UTF-8";
.crm_appointment_schedule_type_chooser_dialog .toolkit_scrollablebox {
  display: flex;
  flex-direction: row;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice {
  display: flex;
  flex-direction: column;
  margin: 20px;
  padding: 20px;
  border: 1px solid #D8D8D8;
  border-radius: 11px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice:hover {
  background-color: #E4F3FF;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice:hover .toolkit_button:after {
  content: "✓";
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: inherit;
  width: 100%;
  height: 100%;
  font-size: 36px;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice .schedule_type_title {
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice .schedule_type_image {
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice .schedule_type_description {
  flex-grow: 1;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice .schedule_type_example {
  padding: 20px 0;
  color: #787878;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
}
.crm_appointment_schedule_type_chooser_dialog .crm_appointment_schedule_type_choice .toolkit_button {
  position: relative;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_customer_notification_parameters_editor.scss **/
.crm_appointment_customer_notification_parameters_editor {
  width: clamp(0px, 1200px, 80vw);
}
.crm_appointment_customer_notification_parameters_editor h4 {
  font-weight: 500;
  color: #121212;
  margin-bottom: 5px !important;
}
.crm_appointment_customer_notification_parameters_editor .document_explanation {
  color: #787878;
  font-weight: 500;
}
.crm_appointment_customer_notification_parameters_editor .removable_repeater_child {
  max-width: 450px;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_staff_notification_subscription_interval_editor.scss **/
.crm_appointment_staff_notification_subscription_interval_editor {
  display: flex;
  flex-direction: row;
  align-items: center;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_selected_staff_display_component.scss **/
.crm_appointment_selected_staff_display_component {
  display: flex;
  align-items: center;
  margin: auto;
  width: fit-content;
}
.crm_appointment_selected_staff_display_component .with_label {
  margin-right: 6px;
}
/** source file: static/shopwindow/modules/crm/crm_appointment_status_button.scss **/
.crm_appointment_status_button {
  margin: 3px 0;
}
/** source file: static/shopwindow/modules/crm/crm_appointments_centre.scss **/
.crm_appointments_centre {
  background: #fff;
  padding: 20px 0;
}
.crm_appointments_centre > .toolkit_tab_layout > .toolkit_tab_pane {
  background-color: #fff;
  padding: 0;
}
@media screen and (min-width: 961px) {
  .crm_appointments_centre > .toolkit_tab_layout > .toolkit_tab_pane {
    background-color: #F5F5F5;
  }
}
.crm_appointments_centre > .toolkit_tab_layout > .toolkit_tab_pane .paging_controls_component {
  background: #fff;
  padding: 10px;
}
/** source file: static/shopwindow/modules/crm/crm_person_appointments_manager.scss **/
.crm_person_appointments_manager {
  text-align: right;
}
/** source file: static/shopwindow/modules/wide_appointment_card.scss **/
.wide_card_container {
  max-width: 1400px;
  margin: auto;
}

.wide_appointment_card {
  background: #fff;
  transition: transform 0.5s;
  padding: 10px;
  margin: 10px;
  border-radius: 6px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
  /*
    17/4/22 Commented out as is causing issue with person button on wide_todo_card. Where is this needed, perhaps it can be moved there?
    button.toolkit_iconbutton {
    padding: 0px;
    margin: 0px;
    width: 40px;
    height: 40px;
    svg {
      width: 30px !important;
      height: 30px !important;
    }
  }*/
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.wide_appointment_card div[class*=container_] {
  display: flex;
  align-items: center;
  padding: 4px;
}
@media screen and (min-width: 0px) and (max-width: 1200px) {
  .wide_appointment_card div[class*=container_] {
    justify-content: center;
  }
}
.wide_appointment_card div[class*=container_] span {
  display: block;
}
.wide_appointment_card .title_with_svg {
  display: flex;
  align-items: center;
}
.wide_appointment_card .title_with_svg span {
  margin-left: 3px;
}
.wide_appointment_card .supp_txt {
  font-size: 11px;
  font-weight: 700;
}
.wide_appointment_card .jmultitenant_person_avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 10px;
}
.wide_appointment_card:hover {
  cursor: pointer;
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.3);
}
.wide_appointment_card:hover {
  box-shadow: inset 0 0 0 2px #0088FF, 0 2px 4px 1px rgba(0, 0, 0, 0.3);
}
.wide_appointment_card .crm_appointment_status_button {
  margin: 0 !important;
  border: 2px #ccc solid;
  background: none;
  outline: none;
  padding: 14px;
  width: 100%;
  color: #293158 !important;
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: bold !important;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: background 0.7s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wide_appointment_card .crm_appointment_status_button span {
  display: inline-block !important;
}
.wide_appointment_card .crm_appointment_status_button:hover {
  background: #E6F3FF !important;
}
.wide_appointment_card .crm_appointment_status_button span.status_indicator {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.wide_appointment_card label.appointment_type_title {
  background: #FFF487;
  color: #7E6700;
  padding: 12px;
  width: fit-content;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
}
.wide_appointment_card.person_appointment_card_component .container_2,
.wide_appointment_card.person_appointment_card_component .container_8 {
  display: none;
}
.wide_appointment_card .container_3 {
  flex-grow: 1;
  justify-content: flex-end;
}
.wide_appointment_card .container_4 {
  flex-grow: 1;
}
.wide_appointment_card .container_5 {
  flex-grow: 1;
}
.wide_appointment_card .container_6 {
  flex-grow: 1;
}
.wide_appointment_card .appointment_icon_controls {
  display: flex;
}
@media screen and (min-width: 0px) and (max-width: 1400px) {
  .wide_appointment_card [class*=container_] {
    justify-content: center;
  }
  .wide_appointment_card .container_3 {
    justify-content: center;
  }
  .wide_appointment_card .container_4,
  .wide_appointment_card .container_6 {
    justify-content: flex-start;
  }
  .wide_appointment_card .appointment_icon_controls {
    position: absolute;
    top: 5px;
    right: 5px;
  }
}
@media screen and (min-width: 0px) and (max-width: 960px) {
  .wide_appointment_card .container_1, .wide_appointment_card .container_2 > .jmultitenant_person_avatar, .wide_appointment_card .container_5 > .jmultitenant_person_avatar, .wide_appointment_card .container_6 {
    display: none !important;
  }
  .wide_appointment_card [class*=container_] {
    width: 100%;
    text-align: center;
  }
}
/** source file: static/shopwindow/modules/jmultitenant/authn_user_logout_button.scss **/
/** @fileoverview User log out button */
.authn_user_logout_button {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.authn_user_logout_button .user_name_label {
  margin-right: 6px;
}
/** source file: static/shopwindow/modules/jmultitenant/jmultitenant_person_avatar.scss **/
.jmultitenant_person_avatar {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.jmultitenant_person_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jmultitenant_person_avatar.small {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
/** source file: static/shopwindow/modules/jmultitenant/jmultitenant_person_badge.scss **/
.jmultitenant_person_badge {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 6px;
  align-items: center;
}
/** source file: static/shopwindow/modules/jmultitenant/jmultitenant_user_account_item_component.scss **/
.jmultitenant_user_account_item_component {
  margin: 4px;
  box-sizing: border-box;
  padding: 0 5px;
  height: 36px;
  width: 210px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 18px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
  color: #121212;
  font-weight: 500;
  line-height: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08px;
  line-height: 18px;
}
.jmultitenant_user_account_item_component.selected {
  background-color: #E4F3FF;
}
.jmultitenant_user_account_item_component:hover {
  background: #E4F3FF;
}
.jmultitenant_user_account_item_component .jmultitenant_person_avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
}
.jmultitenant_user_account_item_component .title_component {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-left: 6px;
}
