/** 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_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/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_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;
}

.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);
}
/** 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_properties_editor/toolkit_properties_editor.scss **/
.toolkit_properties_editor {
  /** Common to all property editors. */
  /** Common to all two column property editors */
  /** Specific: Dimension property editor */
}
.toolkit_properties_editor .toolkit_property_editor_container {
  padding: 0 5px;
}
.toolkit_properties_editor .toolkit_default_property_editor_container_grid_layout {
  display: flex;
  align-items: center;
}
.toolkit_properties_editor .toolkit_default_property_editor_container_grid_layout > div:first-child {
  flex-grow: 1;
}
.toolkit_properties_editor .toolkit_default_property_editor_container_grid_layout > svg {
  margin-left: 5px;
}
.toolkit_properties_editor .toolkit_property_editor_column_container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.toolkit_properties_editor .toolkit_property_editor_column_container .toolkit_property_editor_left_column {
  flex-grow: 1;
}
.toolkit_properties_editor .toolkit_property_editor_column_container .toolkit_property_editor_right_column {
  width: 60px;
  text-align: center;
}
.toolkit_properties_editor .toolkit_length_value_input {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
}
.toolkit_properties_editor .toolkit_length_value_input .toolkit_input {
  max-width: 120px;
}
/** source file: static/toolkit/modules/toolkit_properties_editor/toolkit_accordion_properties_editor.scss **/
.toolkit_accordion_properties_editor {
  /** Theme: Darker colour for background */
  /** Theme: Style around each properties editor */
}
.toolkit_accordion_properties_editor .toolkit_collapsible_body {
  background-color: #f5f5f5;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.toolkit_accordion_properties_editor .toolkit_property_editor_container {
  border-radius: 11px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 #B5B5B5;
  padding: 10px;
}
/** 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/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/shopwindow/modules/jmultitenant/authn_screen_base.scss **/
div.error_msg {
  padding: 6px 0 0 0;
  font-weight: 700;
}

body.authn_screen .toolkit_button {
  font-size: 16px;
  padding: 9px 32px;
}

/* Input container */
div.login_field_cont {
  padding: 6px 0;
}

/* Anchors */
a.authn_link {
  color: #fff;
}

/* Domain logo image */
img.authn_domainlogo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

div.authn_logo_caption {
  width: 100%;
  box-sizing: border-box;
  padding-left: 60px;
}

/* Select user menu */
ul.selectuser_menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li.selectuser_menuitem {
  padding: 3px 6px;
}

li.selectuser_menuitem:hover {
  background-color: rgba(41, 70, 97, 0.02);
}

a.selectuser_menuitem_anchor {
  position: relative;
  display: block;
  height: 60px;
  text-decoration: none;
}

li.selectuser_menuitem img.authn_domainlogo {
  width: 60px;
  height: 60px;
}

div.selectuser_menuitem_caption {
  text-align: left;
  padding-left: 76px;
}

div.selectuser_menuitem_title {
  font-size: 22px;
  color: #787878;
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

div.selectuser_menuitem_subtitle {
  font-size: 16px;
  color: #787878;
}

span.selectuser_menuitem_chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 18px;
}

span.selectuser_menuitem_chevron svg {
  fill: #787878;
  transform: scale(1);
}

a.selectuser_menuitem_anchor:hover span.selectuser_menuitem_chevron svg {
  transition: transform ease-in-out 300ms;
  transform: scale(2);
}

a.selectuser_menuitem_anchor img.authn_domainlogo {
  position: absolute;
  top: 0;
  left: 0;
}

/* Domain logo animation */
a.selectuser_menuitem_anchor img.authn_domainlogo,
div.current_user img.authn_domainlogo {
  transition: transform ease-in-out 400ms;
  transform: scale(1);
}

a.selectuser_menuitem_anchor:hover img.authn_domainlogo,
div.current_user:hover img.authn_domainlogo {
  transform: scale(1.4);
  z-index: 1;
}

/* Current User display */
div.current_user img.authn_domainlogo {
  margin-bottom: 20px;
  margin-top: 20px;
}

div.current_user > div {
  margin: 3px 0;
}

div.current_domain_caption {
  text-align: center;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 21px;
}

/* Switch accounts UI */
div.authn_switchaccounts_ui {
  padding: 18px 0;
}

/* Forgot password link */
div.forgot_passwd_cont {
  text-align: right;
}

div.forgot_passwd_cont a {
  font-size: 13px;
}
/** source file: static/shopwindow/modules/jmultitenant/authn_screen.scss **/
body.authn_screen {
  min-height: 100%;
  text-align: center;
  background-color: rgba(41, 70, 97, 0.02);
  font-family: Montserrat, Arial;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
}

.authn_modal {
  position: relative;
  display: table;
  vertical-align: top;
  border-radius: 11px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  margin: auto;
  margin-top: 5%;
  box-sizing: border-box;
  padding: 15px 20px;
  width: 92%;
}
.authn_modal a.authn_link {
  color: #ff0000;
}

.authn_modal_inside {
  vertical-align: middle;
  text-align: left;
}

body.authn_screen div.modal_dialog_buttons {
  padding-top: 16px;
}
body.authn_screen div.modal_dialog_buttons button {
  display: block;
  width: 100%;
  margin: 0 !important;
  font-size: 12px !important;
}

/* Form */
form.authn_form {
  padding: 0 0 30px 0;
}
form.authn_form .authn_domainlogo {
  display: block;
  margin: auto;
}

.authn_modal .authn_modal_applogo_container {
  text-align: center;
}

.authn_modal .current_user {
  text-align: center;
}

/** Spacer around domain logo, used by some subclasses like Community */
.authn_modal .domain_logo_standalone_box {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

/* Mobilize */
@media screen and (min-width: 961px) {
  .authn_modal {
    width: 418px;
    padding: 40px 35px 35px 35px;
  }
  .authn_modal .domain_logo_standalone_box {
    padding-bottom: 20px;
  }
}
/* Application logo */
div.authn_model_applogo_container {
  margin: 50px 0;
}

img.authn_modal_applogo {
  width: 70%;
  max-width: 235px;
  height: auto;
}

/* Label */
body.authn_screen label {
  text-align: left;
  display: block;
  padding: 4px 0;
  font-size: 12px;
}

/* Input fields */
input.authn_field {
  font-size: 16px;
  padding: 12px 8px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
  border: 1px solid #d9d9d9;
}

input.authn_field:focus, input.authn_field:hover {
  border-color: rgba(82, 168, 236, 0.8);
}
/** source file: static/shopwindow/modules/jmultitenant/authn_screen_colorful_theme.scss **/
body.authn_screen_colorful_theme {
  background-image: url(/www/swassets/authn-screen-colorful-theme-bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: initial;
}
/** source file: static/shopwindow/modules/shopwindow_login.scss **/
.shopwindow_login_app_tagline {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 28px;
  text-align: center;
  color: #787878;
  font-size: 14px;
}
/** source file: static/toolkit/modules/toolkit_directory_tree_control.scss **/
/** Controls entire tree */
.toolkit_directory_tree_control {
  background-color: #fff;
  padding: 4px;
  cursor: default;
}

.toolkit_directory_tree_control > .toolkit_selectable_container {
  height: 100%;
}

/** Is a node in the tree */
.toolkit_directory_tree_node {
  cursor: default;
}

.toolkit_directory_tree_node_item {
  display: flex;
  padding: 8px;
  box-sizing: border-box;
  cursor: pointer;
}

.toolkit_directory_tree_node_item_faded_appearance {
  opacity: 0.3;
}

.toolkit_directory_tree_node_item_icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-position: center;
}

.toolkit_directory_tree_node_item > .toolkit_text_label {
  line-height: 16px;
}

.toolkit_directory_tree_node_item_count_label {
  padding-left: 4px;
}

.toolkit_directory_tree_node_item button.toolkit_seamless_button {
  visibility: hidden;
  margin-left: 5px;
}
.toolkit_directory_tree_node_item button.toolkit_seamless_button svg {
  width: 16px !important;
  height: 16px !important;
}
.toolkit_directory_tree_node_item:hover {
  background: #D8E3ED !important;
}
.toolkit_directory_tree_node_item:hover button.toolkit_seamless_button {
  visibility: visible;
}
/** 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/shopwindow/modules/lordekit/lordekit_blocktype_PlaceholderBlock.scss **/
/** @fileoverview Style for the placeholder block */
.lordekit_builder_frame .blocktype_PlaceholderBlock {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/dg5_platform/assets_static/static/shopwindow/assets/shopwindow_logo.svg);
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_RichTextBlock.scss **/
.toolkit_layout_cell_node.blocktype_RichTextBlock {
  /** Style the text variable tag. May be used outside of editor when showing preview to user, so is in a reusable mixin. */
}
.toolkit_layout_cell_node.blocktype_RichTextBlock var {
  user-select: all;
  font-style: normal;
  cursor: pointer;
}
.toolkit_layout_cell_node.blocktype_RichTextBlock var:before {
  content: "{";
}
.toolkit_layout_cell_node.blocktype_RichTextBlock var:after {
  content: "}";
}
.toolkit_layout_cell_node.blocktype_RichTextBlock .toolkit_editorfield var:hover:before {
  color: silver;
}
.toolkit_layout_cell_node.blocktype_RichTextBlock .toolkit_editorfield var:hover:after {
  color: silver;
}
.toolkit_layout_cell_node.blocktype_RichTextBlock a {
  text-decoration: underline;
  cursor: pointer;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_MediaBlock.scss **/
/** Place on blockcontent- class */
.blocktype_MediaBlock {
  /** For email: Image fills space */
}
.blocktype_MediaBlock a {
  height: 100%;
  text-decoration: none;
}
.blocktype_MediaBlock a > div {
  height: 100%;
}
.presentation_email .blocktype_MediaBlock img {
  width: 100%;
}
/** source file: static/shopwindow/modules/lordekit/builder_media_player_placeholder_component.scss **/
/** @fileoverview Style for builder's placeholder used instead of loading video player in builder */
.builder_media_player_placeholder_component {
  position: relative;
  background-size: cover;
  box-shadow: inset 0 0 120px #000000;
}
.builder_media_player_placeholder_component .decoration-ailabs-shopwindow-media-display-caption-decorator {
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.builder_media_player_placeholder_component .player_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/dg5_platform/assets_static/static/shopwindow/assets/shared/youtube_player_icon.svg);
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_ButtonBlock.scss **/
/** @fileoverview A mixin for the button component's chrome (tightly integrated). Used both in Builder's buttons and the standalone Button component. */
.toolkit_layout_cell_node.blocktype_ButtonBlock {
  /** Style the text variable tag. May be used outside of editor when showing preview to user, so is in a reusable mixin. */
  /** Some common style that all button themes share */
  font-weight: 700;
  /** Text centered */
  text-align: center;
}
.toolkit_layout_cell_node.blocktype_ButtonBlock var {
  user-select: all;
  font-style: normal;
  cursor: pointer;
}
.toolkit_layout_cell_node.blocktype_ButtonBlock var:before {
  content: "{";
}
.toolkit_layout_cell_node.blocktype_ButtonBlock var:after {
  content: "}";
}
.toolkit_layout_cell_node.blocktype_ButtonBlock .toolkit_editorfield var:hover:before {
  color: silver;
}
.toolkit_layout_cell_node.blocktype_ButtonBlock .toolkit_editorfield var:hover:after {
  color: silver;
}
.toolkit_layout_cell_node.blocktype_ButtonBlock a {
  text-decoration: underline;
  cursor: pointer;
}
html .toolkit_layout_cell_node.blocktype_ButtonBlock {
  /** Width is width of content */
  display: inline-block;
  /** Transition to use */
  transition: background-color 500ms ease;
}
.presentation_web .toolkit_layout_cell_node.blocktype_ButtonBlock .lordekit_blockcontent_widget {
  display: flex;
  align-items: center;
  justify-content: center;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_MapBlock.scss **/
.blocktype_MapBlock .lordekit_blockcontent_widget > div {
  width: 100%;
  height: 100%;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_SlideshowGalleryBlock.scss **/
.blocktype_SlideshowGalleryBlock {
  /** Full width in email */
}
.blocktype_SlideshowGalleryBlock .htmlemail_media_widget_image {
  width: 100%;
}
.blocktype_SlideshowGalleryBlock .ms2document_slideshow_gallery_component {
  height: 100%;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_IntelligentPipelineBlock.scss **/
/** @fileoverview Css for intelligent content stand-in when block appears where no person is attached, such as in builder & preview */
@keyframes intelligent_content_animation {
  50% {
    background-position: 400% 50%;
  }
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person {
  padding: 23px;
  color: #fff;
  border-radius: 5px;
  background-image: linear-gradient(90deg, #FE8100 0%, #FFB500 13%, #FE8100 26%, #FFB800 39%, #FE8100 53%, #FFB800 65%, #FE8100 78%, #FFB800 89%, #FE8100 100%);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  background-size: 200% 100%;
  animation: intelligent_content_animation 15s linear infinite;
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person .intelligent_content_title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person .intelligent_content_title img {
  margin-right: 10px;
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person .intelligent_content_info {
  font-size: 14px;
  font-weight: 600;
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person h2 {
  margin: 0px;
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person .intelligent_content_fields {
  background: #fff;
  color: #121212;
  font-size: 14px;
  border: 2px #FFCF9D solid;
  padding: 8px;
  margin: 10px 0px;
  border-radius: 5px;
}
.blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person .intelligent_content_fields span, .blocktype_IntelligentPipelineBlock .intelligent_content_block_no_person .intelligent_content_fields strong {
  margin-right: 5px;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_blocktype_ContentCardBlock.scss **/
.blocktype_ContentCardBlock .lordekit_blockcontent_widget {
  padding: 8px;
}
.blocktype_ContentCardBlock .content_card_holder {
  margin: auto;
  max-width: 550px;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_block_component_embed.scss **/
.lordekit_block_component_embed div,
.lordekit_block_component_embed iframe.shopwindow_embed_decorator_iframe {
  width: 100%;
  height: 100%;
}
.lordekit_block_component_embed iframe.shopwindow_embed_decorator_iframe {
  border: 0;
}

/** For fullscreen mode so appears off screen. */
body > iframe.shopwindow_embed_decorator_iframe {
  position: absolute;
  left: -99999px;
  top: -99999px;
}
/** 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/toolkit_richtext_media.scss **/
figure.toolkit_richtext_media img {
  width: 100%;
}
/** source file: static/shopwindow/modules/shared/button_component.scss **/
/** @fileoverview A mixin for the button component's chrome (tightly integrated). Used both in Builder's buttons and the standalone Button component. */
/** @fileoverview Class for a standalone button */
.button_component {
  /** Some common style that all button themes share */
  font-weight: 700;
  /** Text centered */
  text-align: center;
}
html .button_component {
  /** Width is width of content */
  display: inline-block;
  /** Transition to use */
  transition: background-color 500ms ease;
}
/** source file: static/shopwindow/modules/icon_view.scss **/
svg.icon_view {
  box-sizing: border-box;
  padding: 8px;
}
/** source file: static/shopwindow/modules/mediasystem2/document_widgets/ms2document_slideshow_gallery_widget.scss **/
.ms2document_slideshow_gallery_widget {
  height: 100%;
}
.ms2document_slideshow_gallery_widget > .decoration-toolkit-fullsize {
  height: 100%;
}

.ms2document_slideshow_gallery_widget_contentelem {
  background-color: #000000;
}
.ms2document_slideshow_gallery_widget_contentelem, .ms2document_slideshow_gallery_widget_contentelem > .decoration-toolkit-slider-mask {
  height: 100%;
}
.ms2document_slideshow_gallery_widget_contentelem .ms2document_slideshow_gallery_widget_slide {
  background-color: #000000;
}
.ms2document_slideshow_gallery_widget_contentelem .ms2document_slideshow_gallery_widget_slide > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/** source file: static/shopwindow/modules/mediasystem2/document_widgets/ms2document_grid_mosaic_gallery_widget.scss **/
.ms2document_grid_mosaic_gallery_widget {
  display: grid;
}
@media screen and (min-width: 0px) and (max-width: 960px) {
  .ms2document_grid_mosaic_gallery_widget.mobile_single_column {
    grid-template-columns: 1fr !important;
  }
}
.ms2document_grid_mosaic_gallery_widget div {
  aspect-ratio: 1;
}
.ms2document_grid_mosaic_gallery_widget img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/** source file: static/shopwindow/modules/mediasystem2/document_widgets/ms2document_masonry_mosaic_gallery_widget.scss **/
.ms2document_masonry_mosaic_gallery_widget img {
  margin: calc(var(--masonry-gutter) / var(--masonry-columns));
  width: calc(100% / var(--masonry-columns) - var(--masonry-gutter));
}
/** source file: static/shopwindow/modules/share_board_preview_component.scss **/
.share_board_preview_component {
  border-radius: 11px;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.2);
  padding: 10px;
  max-width: 450px;
  margin: auto;
  background: #fff;
  font-family: "Montserrat", sans-serif;
}
.share_board_preview_component .shareboard_content_placeholder {
  border-radius: 11px;
  background-color: #f3f9fb;
  padding: 20px;
  text-align: center;
  margin: 10px 0px;
}
.share_board_preview_component .shareboard_content_preview {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.share_board_preview_component .shareboard_content_preview img {
  border-radius: 11px;
  box-shadow: 0px 1px 2px rgba(18, 18, 18, 0.3);
  width: 130px;
  height: 130px;
  margin: 5px 10px;
}
.share_board_preview_component .open_content_button {
  border: none;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  background-color: #eef0f2;
  cursor: pointer;
}
.share_board_preview_component .open_content_button:hover {
  background: #e4f2ff;
}
.share_board_preview_component .open_content_button a {
  display: block;
  padding: 15px 5px;
  color: #000000;
  text-decoration: none;
  text-align: center;
}
.presentation_email .share_board_preview_component .shareboard_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.presentation_email .share_board_preview_component .shareboard_header span {
  display: block;
}
.presentation_email .share_board_preview_component .shareboard_content_placeholder p {
  color: #9aa4ae;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 18px;
}
.presentation_email .share_board_preview_component .shareboard_content_preview {
  text-align: center;
}
.presentation_email .share_board_preview_component .shareboard_content_preview img {
  display: inline-block;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_layoutnode_has_background_media.scss **/
.lordekit_layoutnode_has_background_media {
  position: relative;
  transform: translate3d(0, 0, 0);
}
.lordekit_layoutnode_has_background_media > .lordekit_background_media_container {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lordekit_layoutnode_has_background_media > .lordekit_background_media_container > video {
  width: 100%;
  height: 100%;
  transition: opacity 600ms linear;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_body.scss **/
/** @fileoverview Css to ensure page-local theme renders consistently on body */
body.lordekit_body {
  margin: 0;
  padding: 0;
  background-attachment: fixed;
  background-size: cover;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_common_layout.scss **/
/** For error display */
div.toolkit_layout_cell_node .lordekit_blockcontent code {
  display: block;
  padding: 10px;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_htmlweb_layout.scss **/
/** @fileoverview Please see diagram pdf of block DOM structure. */
.presentation_web {
  /** Block content */
  /** Utility class used by a block to cause a div to become full height of its parent. */
  /** Block content within block. This node is needed to separate block content from that of child layouts. */
  /** To work with aspect sizing, should be posiiton absolute. */
}
.presentation_web .stretch_element_to_parent_height {
  height: 100%;
}
.presentation_web .lordekit_blockcontent {
  /** In the builder, this element is rendered to allow all block content thrown away */
  display: block;
  height: 100%;
  position: static;
}
.presentation_web .lordekit_blockcontent > .lordekit_blockcontent_widget {
  height: 100%;
}
.presentation_web .toolkit_layout_aspect_sizing_height > .lordekit_blockcontent {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
/** source file: static/shopwindow/modules/lordekit/lordekit_clip_path.scss **/
/** @fileoverview Clip path options for Lordekit layout nodes */
.lordekit_clip_path_circle {
  clip-path: circle(49% at 50% 50%);
}

.lordekit_clip_path_triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.lordekit_clip_path_close {
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 99%, 50% 70%, 80% 99%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.lordekit_clip_path_left_chevron {
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}

.lordekit_clip_path_right_chevron {
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

.lordekit_clip_path_left_point {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.lordekit_clip_path_right_point {
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.lordekit_clip_path_rabbet {
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.lordekit_clip_path_octagon {
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.lordekit_clip_path_diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.lordekit_clip_path_parallelogram {
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.lordekit_clip_path_nonagon {
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}

.lordekit_clip_path_bevel {
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.lordekit_clip_path_chat {
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.lordekit_clip_path_star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 84% 100%, 50% 70%, 13% 100%, 32% 57%, 2% 35%, 39% 35%);
}

.lordekit_clip_path_frame {
  clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 25% 25%, 75% 25%, 75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
}

.lordekit_clip_path_arc {
  clip-path: circle(70% at 0% 50%);
}

.lordekit_clip_path_shopwindow {
  clip-path: polygon(0 82%, 0 13%, 24% 21%, 50% 0, 67% 18%, 100% 6%, 100% 95%, 51% 71%, 30% 91%);
}

.lordekit_clip_path_slant_left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 87%);
}
@media screen and (max-width: 1200px) {
  .lordekit_clip_path_slant_left {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
  }
}

.lordekit_clip_path_slant_right {
  clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
}
@media screen and (max-width: 1200px) {
  .lordekit_clip_path_slant_right {
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  }
}

.lordekit_clip_path_slant_point_top_right {
  clip-path: polygon(0 100%, 100% 100%, 100% 15%, 78% 5%, 0 15%);
}
@media screen and (max-width: 1200px) {
  .lordekit_clip_path_slant_point_top_right {
    clip-path: polygon(0 100%, 100% 100%, 100% 15%, 78% 9%, 0 15%);
  }
}

.lordekit_clip_path_slant_point_top_left {
  clip-path: polygon(0 100%, 100% 100%, 100% 15%, 27% 5%, 0 15%);
}
@media screen and (max-width: 1200px) {
  .lordekit_clip_path_slant_point_top_left {
    clip-path: polygon(0 100%, 100% 100%, 100% 15%, 27% 9%, 0 15%);
  }
}
/** source file: static/shopwindow/modules/lordekit/lordekit_layout_tab_list.scss **/
.lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container {
    flex-direction: column;
  }
}
.lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container .tab_header_item {
  padding: 0.8rem;
  color: rgb(9, 30, 66);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fbfbfb;
  border-left: 8px #d7d7d7 solid;
}
.lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container .tab_header_item:hover {
  opacity: 90%;
}
.lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container .tab_header_item.open {
  border-left: 8px rgb(0, 199, 229) solid;
}
.lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container .tab_header_item .tab_header_item_title {
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}
.lordekit_layout_tab_list.tab_type_tab.default_style .tab_header_container .tab_header_item .tab_header_item_subtitle {
  white-space: nowrap;
}

.lordekit_layout_tab_list.tab_type_tab.side_style {
  background: #f4fdfe;
  padding: 30px;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .ailabs_layout_tab_body {
  display: grid;
  height: 100%;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .ailabs_layout_tab {
  flex-grow: 1;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .decoration-toolkit-tab-group {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .lordekit_layout_tab_list.tab_type_tab.side_style .decoration-toolkit-tab-group {
    flex-direction: column-reverse;
  }
}
.lordekit_layout_tab_list.tab_type_tab.side_style .decoration-toolkit-tab-list {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 0px) and (max-width: 730px) {
  .lordekit_layout_tab_list.tab_type_tab.side_style .decoration-toolkit-tab-list {
    flex-direction: column;
  }
}
.lordekit_layout_tab_list.tab_type_tab.side_style .decoration-toolkit-tab-list .ailabs_layout_tab_body {
  flex-grow: 1;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-width: 30% !important;
  max-width: 30% !important;
  cursor: pointer;
  padding-right: 20px;
}
@media screen and (min-width: 0px) and (max-width: 730px) {
  .lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container {
    max-width: 100% !important;
    padding-right: 0px;
  }
}
.lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container .tab_header_item {
  padding: 10px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: rgb(9, 30, 66);
  border-radius: 0.3rem;
  padding: 1rem 1rem 1rem 1.5rem;
  margin-bottom: 10px;
  transition: all 200ms ease-in-out;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container .tab_header_item:hover {
  background-color: rgba(255, 255, 255, 0.9803921569);
  box-shadow: rgba(9, 30, 66, 0.15) 0px 0.5rem 1rem 0px;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container .tab_header_item.open {
  background-color: #fff;
  border-left: 8px rgb(0, 199, 229) solid;
  box-shadow: rgba(9, 30, 66, 0.15) 0px 0.5rem 1rem 0px;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container .tab_header_item .tab_header_item_title {
  font-weight: 700;
  font-size: 18px;
}
.lordekit_layout_tab_list.tab_type_tab.side_style .tab_header_container .tab_header_item .tab_header_item_subtitle {
  margin-top: 10px;
  font-weight: 400;
  font-size: 20px;
}

.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}
.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab > div {
  margin: 0 3px;
}
.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab .ailabs_layout_tab_header {
  background: #bddeff;
  color: #293158;
  margin-left: 0px;
  margin-right: 0px;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  border: 2px solid rgb(240, 243, 248);
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab .ailabs_layout_tab_header .ailabs_layout_tab_chevron {
  transition: all ease 0.3s;
  transform: rotate(-90deg);
  fill: rgb(240, 243, 248);
}
.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab .ailabs_layout_tab_header.state_open .ailabs_layout_tab_chevron {
  transform: rotate(0deg);
}
.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab .ailabs_layout_tab_header .ailabs_layout_tab_title {
  font-size: 14px;
  font-weight: 600;
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.lordekit_layout_tab_list.tab_type_accordion.default_style .ailabs_layout_tab .ailabs_layout_tab_header .ailabs_layout_tab_subtitle {
  font-size: 11px;
  font-weight: 600;
}
/** source file: static/shopwindow/modules/shopwindow_brochure_showcase.scss **/
/** Common mixin for style common between email and web */
/** Common mixin for footer */
/** Style for footer, a shared component */
.shopwindow_brochure_showcase_footer {
  text-align: center;
  color: #294661;
  font-size: 0.8em;
}
.shopwindow_brochure_showcase_footer p.business_name {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.25em;
}
.shopwindow_brochure_showcase_footer p {
  margin-top: 0px;
  margin-bottom: 5px;
}

/** Style for HTMLWeb */
.htmlweb_shopwindow_brochure_showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /** Theme */
  /** Make business social wrap */
  /** Subscribe icon */
  /** Centre social icons */
}
.htmlweb_shopwindow_brochure_showcase .brochure_showcase_header a,
.htmlweb_shopwindow_brochure_showcase .shopwindow_brochure_showcase_footer a {
  color: #348eda;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.htmlweb_shopwindow_brochure_showcase > header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.htmlweb_shopwindow_brochure_showcase > header, .htmlweb_shopwindow_brochure_showcase > footer {
  background-color: #ffffff;
}
.htmlweb_shopwindow_brochure_showcase .footer_spacer {
  height: 54px;
}
.htmlweb_shopwindow_brochure_showcase > footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 601px) {
  .htmlweb_shopwindow_brochure_showcase .shopwindow_brochure_showcase_inner {
    width: 630px;
    padding: 15px;
    margin: 16px auto 0 auto;
    box-shadow: 0 1px 2px 0 #b9bdc6;
  }
}
.htmlweb_shopwindow_brochure_showcase > header, .htmlweb_shopwindow_brochure_showcase > footer {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  padding: 4px;
  box-sizing: border-box;
}
.htmlweb_shopwindow_brochure_showcase .shopwindow_brochure_showcase_footer {
  padding: 4px;
  max-width: 660px;
  margin: 8px auto 0 auto;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
}
.htmlweb_shopwindow_brochure_showcase .shopwindow_brochure_showcase_footer p.business_social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.htmlweb_shopwindow_brochure_showcase .slogo_webshowcase {
  margin-right: 3px;
}
.htmlweb_shopwindow_brochure_showcase .subscriber_prefs_open_button {
  margin: 0 10px 0 auto;
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(/dg5_platform/assets_static/static/shopwindow/assets/shared/info_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.htmlweb_shopwindow_brochure_showcase .social_widget {
  position: relative;
  top: 2px;
}

/** Style for HTMLEmail */
.htmlemail_shopwindow_brochure_showcase .brochure_showcase_header a,
.htmlemail_shopwindow_brochure_showcase .shopwindow_brochure_showcase_footer a {
  color: #348eda;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.htmlemail_shopwindow_brochure_showcase .brochure_showcase_root_table {
  width: 100%;
  background-color: #fafafa;
}
.htmlemail_shopwindow_brochure_showcase .brochure_showcase_header {
  padding: 5px;
  text-align: right;
}
.htmlemail_shopwindow_brochure_showcase .brochure_showcase_wrapper {
  border-width: 1px;
  border-style: solid;
  border-color: #f0f0f0;
}
.htmlemail_shopwindow_brochure_showcase div.brochure_showcase_wrapper {
  padding: 10px;
}
.htmlemail_shopwindow_brochure_showcase td.brochure_showcase_wrapper_td {
  padding: 10px;
}
/** source file: static/shopwindow/modules/form_toc_compliance_component.scss **/
.form_toc_compliance_component .terms_container {
  width: 80%;
  margin: auto;
  text-align: center;
}
.form_toc_compliance_component .terms_container .sw_link {
  text-decoration: none;
}
.form_toc_compliance_component .terms_container img {
  vertical-align: middle;
}
.form_toc_compliance_component .terms_container .sw_name_text {
  color: #9AA4AE;
  font-family: Montserrat-SemiBold, Montserrat, Arial;
  font-size: 10px;
  font-weight: 500;
  margin-left: 3px;
}
.form_toc_compliance_component .terms_container a.terms_link {
  color: #293158;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 13px;
  height: 40px;
}
.form_toc_compliance_component .terms_container a.terms_link:before {
  content: "-";
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
}
/** 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/trading_hours_widget.scss **/
.trading_hours_widget {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.trading_hours_widget dt {
  font-weight: bold;
}
/** source file: static/shopwindow/modules/cms/cms_menus/cms_mega_menu.scss **/
.cms_mega_menu {
  overflow: auto;
  max-height: calc(100vh - 48px);
}
@media screen and (min-width: 0px) and (max-width: 960px) {
  .cms_mega_menu {
    max-height: calc(100svh - 81px);
  }
}
.cms_mega_menu .card_flex_container {
  display: flex;
  align-items: center;
}
.cms_mega_menu a.card_link {
  display: block;
  text-decoration: none;
}
.cms_mega_menu .blocktype_MenuListBlock ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.cms_mega_menu .blocktype_MenuListBlock ul li {
  margin-bottom: 10px;
}
.cms_mega_menu .blocktype_MenuListBlock ul li a {
  color: #293058;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 17px;
  cursor: pointer;
  text-decoration: none;
}
.cms_mega_menu .blocktype_MenuListBlock ul li a:hover {
  border-bottom: 2px #293158 solid;
}
.cms_mega_menu .blocktype_LinkBlock {
  margin: 0px;
}
.cms_mega_menu .blocktype_LinkBlock a {
  color: #293058;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 17px;
  cursor: pointer;
  text-decoration: none;
}
.cms_mega_menu .blocktype_LinkBlock a:hover {
  border-bottom: 2px #293158 solid;
}
.cms_mega_menu .blocktype_TinyCardBlock {
  border-radius: 11px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
  padding: 10px;
  cursor: pointer;
  margin: 2px;
}
.cms_mega_menu .blocktype_TinyCardBlock .lordekit_blockcontent_widget {
  display: flex;
  align-items: center;
}
.cms_mega_menu .blocktype_TinyCardBlock:hover {
  background: #e5f2ff;
}
.cms_mega_menu .blocktype_TinyCardBlock img,
.cms_mega_menu .blocktype_TinyCardBlock svg.icon_view {
  width: 30%;
  max-width: 100px;
  aspect-ratio: 1/1;
  border-radius: 11px;
  object-fit: cover;
  min-width: 50px;
}
.cms_mega_menu .blocktype_TinyCardBlock img.card_image_size_small,
.cms_mega_menu .blocktype_TinyCardBlock svg.icon_view.card_image_size_small {
  width: 50px;
}
.cms_mega_menu .blocktype_TinyCardBlock img.card_image_size_medium,
.cms_mega_menu .blocktype_TinyCardBlock svg.icon_view.card_image_size_medium {
  width: 75px;
}
.cms_mega_menu .blocktype_TinyCardBlock img.card_image_size_large,
.cms_mega_menu .blocktype_TinyCardBlock svg.icon_view.card_image_size_large {
  width: 100px;
}
.cms_mega_menu .blocktype_TinyCardBlock .content_container {
  padding-left: 10px;
}
.cms_mega_menu .blocktype_TinyCardBlock .content_container .card_headline {
  display: block;
  color: #293158;
  font-size: 16px;
  font-weight: bold;
}
.cms_mega_menu .blocktype_TinyCardBlock .content_container .card_description {
  display: block;
  color: #293158;
  font-size: 12px;
  font-weight: 600;
}
.cms_mega_menu .blocktype_BigCardBlock {
  border-radius: 11px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(18, 18, 18, 0.3);
  display: block;
  padding: 10px;
  cursor: pointer;
  margin: 2px;
}
.cms_mega_menu .blocktype_BigCardBlock .lordekit_blockcontent_widget {
  display: flex;
  align-items: center;
}
.cms_mega_menu .blocktype_BigCardBlock .card_flex_container {
  display: flex;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .cms_mega_menu .blocktype_BigCardBlock .lordekit_blockcontent_widget {
    width: 100%;
  }
  .cms_mega_menu .blocktype_BigCardBlock .card_flex_container {
    width: 100%;
    flex-direction: column;
  }
  .cms_mega_menu .blocktype_BigCardBlock .card_flex_container .content_container {
    width: 100%;
  }
  .cms_mega_menu .blocktype_BigCardBlock .card_flex_container img,
  .cms_mega_menu .blocktype_BigCardBlock .card_flex_container svg.icon_view {
    width: 100% !important;
  }
}
.cms_mega_menu .blocktype_BigCardBlock:hover {
  background: #e5f2ff;
}
.cms_mega_menu .blocktype_BigCardBlock img,
.cms_mega_menu .blocktype_BigCardBlock svg.icon_view {
  aspect-ratio: 1/1;
  border-radius: 11px;
  object-fit: cover;
  margin: 0px;
  display: block;
}
.cms_mega_menu .blocktype_BigCardBlock img.card_image_size_small,
.cms_mega_menu .blocktype_BigCardBlock svg.icon_view.card_image_size_small {
  width: 125px;
}
.cms_mega_menu .blocktype_BigCardBlock img.card_image_size_medium,
.cms_mega_menu .blocktype_BigCardBlock svg.icon_view.card_image_size_medium {
  width: 150px;
}
.cms_mega_menu .blocktype_BigCardBlock img.card_image_size_large,
.cms_mega_menu .blocktype_BigCardBlock svg.icon_view.card_image_size_large {
  width: 200px;
}
.cms_mega_menu .blocktype_BigCardBlock .content_container {
  padding-left: 10px;
  word-break: keep-all;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .cms_mega_menu .blocktype_BigCardBlock .content_container {
    margin-top: 10px;
  }
}
.cms_mega_menu .blocktype_BigCardBlock .content_container .card_headline {
  display: block;
  color: #293158;
  font-size: 16px;
  font-weight: bold;
}
.cms_mega_menu .blocktype_BigCardBlock .content_container .card_description {
  display: block;
  color: #293158;
  font-size: 12px;
  font-weight: 600;
}
.cms_mega_menu .blocktype_TextAndButtonBlock {
  margin: 0px;
}
.cms_mega_menu .blocktype_TextAndButtonBlock span {
  color: #293158;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  line-height: 19px;
}
.cms_mega_menu .blocktype_TextAndButtonBlock button {
  border-radius: 5px;
  background-color: #0088ff;
  font-size: 16px;
  font-weight: 600;
  margin: 0px !important;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
.cms_mega_menu .blocktype_TextAndButtonBlock button:hover {
  background: #067de5;
}
.cms_mega_menu .blocktype_TextAndButtonBlock button a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.cms_mega_menu .blocktype_TextAndButtonBlock button:hover {
  background-color: #0e64af !important;
  color: #ffffff !important;
}
.cms_mega_menu .mega_menu_button_app {
  margin: 0px;
}
.cms_mega_menu .mega_menu_button_app button {
  border-radius: 5px;
  background-color: #0088ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0px !important;
}
.cms_mega_menu .mega_menu_button_app button:hover {
  background-color: #0e64af !important;
  color: #ffffff !important;
}
.cms_mega_menu .mega_menu_text_app {
  margin: 0px;
}
.cms_mega_menu .mega_menu_text_app .bold_large {
  display: block;
  color: #293158;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 17px;
}
.cms_mega_menu .mega_menu_text_app .normal {
  display: block;
  color: #293158;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 13px;
}
.cms_mega_menu .blocktype_DividerBlock .mega_menu_divider {
  border-bottom: 4px solid #f9c28a;
}
.cms_mega_menu .mega_menu_media_app {
  margin: 0px;
  width: 50%;
}
/** 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/shared/slick_hr.scss **/
hr.slick_hr {
  border: 1px solid #e0e0e0;
  margin: 10px 0px;
}
/** source file: static/shopwindow/modules/cms/cms_blog_article.scss **/
.cms_blog_article_header .article_feat_img {
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.cms_blog_article_header .article_feat_img .media_widget {
  height: 100%;
}
.cms_blog_article_header .article_headline {
  padding: 0 0 0 10px !important;
  box-sizing: border-box;
  width: 100% !important;
  color: inherit;
  font-weight: 600;
  font-size: 3.4em !important;
  margin-bottom: 15px;
}
.cms_blog_article_header input.article_headline {
  border: 0 !important;
  outline: 0 !important;
}

.cms_blog_article .article_content {
  max-width: 900px;
  padding: 10px 20px;
  margin: auto;
}
.cms_blog_article .more_articles {
  padding: 10px 20px;
  text-align: center;
}
/** source file: static/shopwindow/modules/cms/cms_site_navbar.scss **/
nav.cms_site_navbar {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0 1px 1px rgba(6, 8, 8, 0.1), 0 3px 10px rgba(6, 8, 9, 0.1);
}
nav.cms_site_navbar div.cms_site_navbar_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
@media screen and (min-width: 961px) {
  nav.cms_site_navbar div.cms_site_navbar_content {
    min-width: 960px;
    max-width: 90vw;
    margin: auto;
  }
}
@media screen and (min-width: 0px) and (max-width: 960px) {
  nav.cms_site_navbar div.cms_site_navbar_content {
    padding: 0 8px;
  }
}
nav.cms_site_navbar img.cms_site_logo {
  max-height: 38px;
}

.cms_site_content_wrapper {
  padding-top: 48px;
}
/** source file: static/shopwindow/modules/cms/cms_site_menu.scss **/
.cms_site_menu button.site_menu_hamburger_button svg {
  display: none;
}
.cms_site_menu button.site_menu_hamburger_button.state_closed svg:nth-child(1) {
  display: block;
}
.cms_site_menu button.site_menu_hamburger_button.state_opened svg:nth-child(2) {
  display: block;
}
.cms_site_menu .mega_menu_container.cms_mega_menu_full_width {
  left: 0;
  width: 100%;
}

@media screen and (min-width: 0px) and (max-width: 960px) {
  .cms_site_menu div.menu_container {
    display: none;
  }
  .cms_site_menu div.menu_container.opened {
    display: block;
  }
  .cms_site_menu .cms_site_menu_body {
    position: absolute;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  .cms_site_menu > div.menu_container {
    display: block;
  }
  .cms_site_menu ul.site_menu.root {
    display: flex;
    align-items: center;
  }
  .cms_site_menu ul.site_menu.root li > button.open_sub_menu_button {
    display: none;
  }
}
/** source file: static/shopwindow/modules/cms/cms_site_menu_look.scss **/
.cms_site_menu ul {
  padding: 0;
  margin: 0;
}
.cms_site_menu li.site_menu_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cms_site_menu li.site_menu_item > a {
  text-decoration: none;
}

@media screen and (min-width: 0px) and (max-width: 960px) {
  .cms_site_menu {
    margin-left: auto;
    margin-right: 0;
  }
  .cms_site_menu button {
    border: 0;
    background: none;
    outline: 0;
  }
  .cms_site_menu .site_menu_hamburger_button {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
  .cms_site_menu .site_menu_hamburger_button svg {
    width: 31px;
    height: 31px;
  }
  .cms_site_menu .cms_site_menu_body {
    background: #ffffff;
  }
  .cms_site_menu .cms_site_menu_body > .menu_container {
    box-sizing: border-box;
    padding: 0 15px 15px 15px;
  }
  .cms_site_menu .site_menu_back_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 7px;
    box-sizing: border-box;
  }
  .cms_site_menu .site_menu_back_button svg {
    width: 31px;
    height: 31px;
  }
  .cms_site_menu .site_menu_back_button .site_menu_back_button_label {
    margin-left: -31px;
    color: rgb(41, 49, 88);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
  .cms_site_menu ul.site_menu {
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .cms_site_menu li.site_menu_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
  }
  .cms_site_menu li.site_menu_item > a {
    color: rgb(41, 49, 88);
    font-size: 16px;
    font-weight: 600;
  }
  .cms_site_menu button.open_sub_menu_button svg {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 961px) {
  .cms_site_menu {
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
  }
  .cms_site_menu li.site_menu_item {
    display: block;
  }
  .cms_site_menu li.site_menu_item > a {
    display: block;
    box-sizing: border-box;
  }
  .cms_site_menu ul.site_menu.root > li.site_menu_item > a.display_type_text {
    height: 48px;
  }
  .cms_site_menu ul.site_menu.sub li.site_menu_item {
    display: block;
  }
  .cms_site_menu ul.site_menu.sub li.site_menu_item > a {
    border: 0 !important;
    font-size: 16px !important;
  }
  .cms_site_menu ul.site_menu.root > li.site_menu_item > div.menu_container {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.26s ease;
    pointer-events: none;
  }
  .cms_site_menu ul.site_menu.root > li.site_menu_item:hover > div.menu_container {
    transform: scaleY(1);
    pointer-events: all;
  }
}
a.display_type_text {
  color: #5a5a59;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  padding: 0.5em 1em;
}
a.display_type_text:hover {
  background-color: #eeeeee;
  border-color: #f1823c;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

a.display_type_button {
  line-height: 20px;
  outline: 0px;
  border-style: none;
  margin: 3px 3px 3px 13px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: color 200ms ease-in-out;
}
/** source file: static/shopwindow/modules/cms/cms_blog_card_v1.scss **/
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.cms_blog_card {
  display: inline-block;
  vertical-align: top;
  list-style-type: none;
  max-width: 526px;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 5px 0 rgba(120, 120, 120, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  box-sizing: border-box;
  margin: 30px;
}
.cms_blog_card:hover {
  box-shadow: 0 6px 9px 2px rgba(120, 120, 120, 0.3);
  margin-top: 10px;
}
.cms_blog_card:hover .blog_card_feat_image {
  height: 220px;
}
.cms_blog_card:hover .blog_card_time_to_read > span, .cms_blog_card:hover .blog_card_time_to_read > img, .cms_blog_card:hover .blog_card_date > span {
  animation: fadeOutDown forwards !important;
  animation-duration: 0.4s !important;
  -webkit-animation: fadeOutDown forwards !important;
  -webkit-animation-duration: 0.4s !important;
}
.cms_blog_card:hover .blog_card_title {
  margin: 0px 0px !important;
}
.cms_blog_card a.blog_card_link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.cms_blog_card .blog_card_feat_image {
  -webkit-mask-image: url(/dg5_platform/assets_static/static/shopwindow/assets/blog_image_mask.svg);
  mask-image: url(/dg5_platform/assets_static/static/shopwindow/assets/blog_image_mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  height: 200px;
  transition: height 0.4s ease;
}
.cms_blog_card .blog_card_feat_image img {
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}
.cms_blog_card .blog_card_content {
  font-weight: 600;
  letter-spacing: 0;
  padding: 10px 30px 20px 30px;
}
.cms_blog_card .blog_card_content .blog_card_time_to_read {
  color: #293158;
  font-size: 14px;
  line-height: 18px;
  opacity: 1;
  transform: translate3d(0, 0%, 0);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cms_blog_card .blog_card_content .blog_card_title {
  color: #293158;
  font-size: 26px;
  line-height: 28px;
  margin: 10px 0px;
  transition: all 0.4s ease;
}
.cms_blog_card .blog_card_content .blog_card_date {
  color: #8B9094;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}
/** source file: static/shopwindow/modules/markdown_messaging/markdown_carousel.scss **/
.markdown_carousel {
  display: block;
  width: fit-content;
  margin: 10px 0;
}
.markdown_carousel .markdown_carousel_layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.markdown_carousel .markdown_carousel_btn {
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: rgba(187, 187, 187, 0.39);
  align-items: center;
  justify-content: center;
}
.markdown_carousel .markdown_carousel_btn:hover {
  background: rgb(173, 173, 173);
}
.markdown_carousel .markdown_carousel_btn svg {
  pointer-events: none;
}
.markdown_carousel .markdown_carousel_btn:last-child {
  transform: rotate(180deg);
}
.markdown_carousel .markdown_carousel_pucks {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.markdown_carousel .markdown_carousel_pucks li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0px 3px;
  cursor: pointer;
}
.markdown_carousel .markdown_carousel_pucks li:hover, .markdown_carousel .markdown_carousel_pucks li.active {
  background: rgb(255, 255, 255);
}
.full_screen .markdown_carousel .markdown_carousel_btn {
  display: flex;
}
.full_screen .markdown_carousel .markdown_carousel_items {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  margin: 4px;
  margin-bottom: 8px;
  max-width: 415px;
  width: clamp(200px, 90%, 600px);
}
.full_screen .markdown_carousel .markdown_carousel_items ::-webkit-scrollbar {
  display: none;
}
.full_screen .markdown_carousel .markdown_carousel_items > * {
  flex: 0 0 auto;
  margin-left: 8px;
  margin-right: 8px;
  width: calc(100% - 8px * 2);
}
.full_screen .markdown_carousel .markdown_carousel_pucks {
  display: flex;
}
/** 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/review_platform_directory.scss **/
.review_platform_directory {
  font-family: "Montserrat";
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.review_platform_directory .review_platform_container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  text-align: center;
}
.review_platform_directory .review_platform_container img.company_logo {
  max-width: 200px;
}
.review_platform_directory .review_platform_container .social_review_buttons {
  display: flex;
  flex-direction: column;
}
.review_platform_directory .review_platform_container .social_review_buttons a {
  padding: 20px 15px;
  margin-top: 20px;
  clear: both;
  display: flex;
  align-items: center;
}
.review_platform_directory .review_platform_container .social_review_buttons a img {
  width: auto !important;
  margin-right: 10px;
  min-width: 90px;
  height: auto !important;
  max-height: 22px;
}
