/* This file contains CSS that is shared between the React App and the Legacy Pages */
html {
  box-sizing: border-box;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: Helvetica;
  font-weight: lighter;
}

/* global */
* {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: lighter;
}

html {
  --color-core: #3c6fc8;
  --color-core-shade: #bfd9f6;
  --color-primary: #bfd9f6; /* #BFD9F6 */
  --color-primary-shade: lightgray;
  --color-secondary: hsl(218.2, 23.7%, 27.3%); /* #354156 */
  --color-background: hsl(210, 29%, 97%); /* #f5f7fa */
  --color-hover: var(--color-background);
  --color-navButtons: var(--color-secondary);
  --color-navIcons: var(--color-primary);
  --text-color-main: #141414; /* used only in Legacy.css */
  --color-background-darker: #f3faff; /* used only in Legacy.css */
  --color-background-blue: rgb(220, 238, 251); /* used only in react app */
  --text-color-dark: hsl(218.2, 23.7%, 27.3%); /* #354156 */
  --text-color-light: hsl(120, 1.2%, 66.3%); /* #a8aaa8 */
  --text-color-label: hsl(218.4, 10.1%, 51.6%); /* #778090 */
  --text-color-secondary-lighter: #b7cfc6; /* #b7cfc6 */
  --text-color-recordLabels: var(--text-color-main); /*used only in Legacy.css*/
  --text-color-adminPage: hsl(216.7, 8.7%, 40.4%); /* #5e6570 */
  --text-color-error: rgb(159, 6, 6);
  --grid-item-background: #eaedee; /* used only in Legacy.css */
  --message-banner-colour: #c1c5c7; /* used only in Legacy.css */
  background-color: var(--color-background);

  --font-size-xxxs: 0.75rem; /* 12px */
  --font-size-xxs: 0.875rem; /* 14px */
  --font-size-xs: 1rem; /* 16px */
  --font-size-s: 1.125rem; /* 18px */
  --font-size-m: 1.25rem; /* 20px */
  --font-size-l: 1.375rem; /* 22px */
  --font-size-xl: 1.5rem; /* 24px */
  --font-size-xxl: 1.625rem; /* 26px */
  --font-size-xxxl: 1.75rem; /* 28px */
}

a,
button {
  cursor: pointer;
  font-weight: lighter;
  font-family: inherit;
}

h3 {
  font-size: var(--font-size-xl);
}

/* overwriting the properties from honline.css 
 this can be moved to core css at the end of the projecg */
a {
  color: var(--color-core);
  text-decoration: none;
}

label {
  font-weight: lighter;
}

.hol38inputField {
  height: 28px;
  border: 1px solid #bfc1bf;
  border-radius: 4px;
}

.scrollable {
  overflow: scroll;
}

@media screen and (max-width: 35em) {
  .scrollable {
    overflow: initial;
  }
}

.max_width_wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* reader messages popup */
.RdrNoteAppear {
  position: fixed;
}

.svg_color_white {
  filter: invert(100%);
}

.svg_color_gray {
  filter: invert(46%);
}

.svg_icon_recordControls {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: cover;
}

/* consider unifying common CSS from different types of icons here below */
.svg_icon {
  display: block;
  background-size: cover;
  width: 30px;
  height: 30px;
}

/* Highlight On Hover. Add to any svg_icon element */
.svg_icon_hoverHighlight:hover,
.svg_icon_hoverHighlight:focus {
  filter: invert(50%);
}

.main_wrapper {
  width: 100vw;
  height: 100%;
}

/* Navbar38 */

.header {
  position: fixed;
  z-index: 2; /* this is necassary for the dropdown (hamburger) menu*/
  top: 0px;
  width: 100%;
  height: 180px;
}

.navbar_nametag {
  position: absolute;
  right: 0px;
  width: 282px;
  height: 22px;
  background-color: var(--color-secondary);
  color: var(--color-navIcons);
  text-align: center;
  padding-right: 5px;
}

.navbar_nametag a {
  color: var(--color-navIcons);
}

.box_angle_right {
  position: absolute;
  right: 282px;
  top: 0px;
  border-bottom: 22px solid transparent;
  border-right: 22px solid var(--color-secondary);
  height: 0;
  width: 0;
}

.navbar_nametag_link {
  color: #c7dcff;
}

@media only screen and (max-width: 58em) {
  .header {
    position: sticky;
    top: -55px;
    height: 110px;
  }
  .navbar_nametag {
    width: 220px;
    height: 16px;
    font-size: var(--font-size-xxxs);
  }
  .box_angle_right {
    right: 220px;
    border-bottom: 16px solid transparent;
    border-right: 16px solid var(--color-secondary);
  }
}

@media screen and (max-width: 35em) {
  .header {
    height: 137px;
  }
  .navbar_nametag {
    padding-right: unset;
    background-color: unset;
    right: 0;
    left: 0;
    width: 300px;
    top: 118px;
    margin: 0 auto;
  }

  .box_angle_right {
    display: none;
  }
}

@media screen and (max-width: 35em) {
  .navbar_nametag {
    width: 230px;
  }
}

.top_header_wrapper {
  background-color: var(--color-primary);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: center;
}

.top_header {
  width: 100%;
  height: 105px;
  /* temporary solution, discuss with Chris the indended behaviour */
  /* flex: 0 1 1612px; */
  display: flex;
  justify-content: space-between;
}

.top_header_leftMargin {
  flex: 1 1 107px;
}

.top_header_rightMargin {
  flex: 1 1 81px;
}

@media only screen and (max-width: 58em) {
  .top_header {
    height: 55px;
  }
  .top_header_leftMargin {
    flex: 1 1 5px;
  }

  .top_header_rightMargin {
    flex: 1 1 4px;
  }
}

.svg_button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0px 11px 0px 11px;
}

.site_name_title {
  font-size: var(--font-size-xxxl);
  color: var(--text-color-dark);
}

.navbar_icon {
  display: inline-block;
  width: 29px;
  height: 29px;
  background-color: var(--text-color-dark);
  /* mask-size: cover; */
}

.bottom_header_wrapper {
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: center;
}

.bottom_header_wrapper svg {
  fill: var(--color-navIcons);
}

.centre_section {
  width: 100%;
  height: 75px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.search_section {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}

@media only screen and (max-width: 73.5em) {
  .centre_section {
    padding: 0px 10px 0px 10px;
  }
}

@media only screen and (max-width: 58em) {
  .centre_section {
    height: 55px;
  }
  .search_section {
    flex: 1 1 496px;
    padding: 0px;
    gap: 1px;
  }
  .centre_section .svg_button {
    padding: 0px 5px 0px 5px;
  }
}

@media screen and (max-width: 35em) {
  .centre_section {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 10px 5px 10px;
    gap: 10px;
  }
}

.logo_container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo_container img {
  height: 85px;
}

@media only screen and (max-width: 58em) {
  .logo_container img {
    height: 40px;
  }
}

.watermark_container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: 13px;
}

.main_search_form {
  display: flex;
  justify-content: center;
  flex: 1 1 560px;
  max-width: 660px;
  position: relative;
  border-radius: 4px 4px 4px 4px;
  background-color: white;
}

.main_search_form input {
  width: 100%;
  margin-right: 7px;
}

.main_search_field {
  min-width: 205px;
  max-width: 577px;
  border-radius: 4px 0px 0px 4px;
  border: none;
  height: 32px;
  font-size: var(--font-size-m);
  padding-left: 19px;
  z-index: 3;
}

.clear_search_button_wrapper {
  width: 32px;
  height: 32px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5px;
}

#clear_search_button {
  border: none;
  background-color: transparent;
  color: #566b8e;
  font-weight: lighter;
}

#clear_search_button .svg_icon {
  width: 22px;
  height: 22px;
}

#clear_search_button:hover {
  color: var(--color-primary-shade);
}

/* Alternative Search */
.nav38_dropdownButton {
  /* flex: 0 0 45px; */
  background-color: var(--color-primary);
  border: none;
  padding: 0px 3px 0px 3px;
  border-radius: 3px;
  height: 32px;
}

.nav38_dropdownButton svg {
  height: 32px;
  width: auto;
  fill: var(--color-navButtons);
}

@media only screen and (max-width: 58em) {
  .main_search_form {
    border-radius: 4px 0px 0px 4px;
    justify-content: space-between;
  }
  .main_search_field {
    font-size: var(--font-size-xs);
    padding-left: 5px;
  }
  .nav38_dropdownButton {
    border-radius: 0px 3px 3px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #clear_search_button .svg_icon {
    width: 16px;
    height: 16px;
  }
  .nav38_dropdownButton svg {
    height: 23px;
  }
}

.nav38_alt_search_dropdown {
  position: absolute;
  display: none;
  justify-content: stretch;
  top: 32px;
  right: 0px;
  width: 659px;
  height: 380px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: transparent;
  border-radius: 0px 0px 4px 4px;
  z-index: 3;
}

@media only screen and (max-width: 73.5em) {
  .nav38_alt_search_dropdown {
    width: 100%;
  }
}

.nav38_alt_search_dropdown_left {
  height: 100%;
  flex-grow: 1;
  background-color: white;
  border-radius: 0px 0px 0px 4px;
  padding: 38px 0px 0px 43px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: scroll;
}

@media only screen and (max-width: 73.5em) {
  .nav38_alt_search_dropdown_left {
    padding: 15px 0px 0px 15px;
  }
}

.nav38_alt_search_dropdown_left p {
  margin-bottom: 15px;
}

.nav38_alt_search_dropdown_right {
  width: 46px;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 0px 0px 4px 0px;
}

.button_alternativeSearch {
  border: none;
  color: var(--color-core);
  background-color: transparent;
  font-size: var(--font-size-xs);
  padding-bottom: 10px;
}

@media only screen and (max-width: 58em) {
  .nav38_alt_search_dropdown_right {
    width: 40px;
  }
}

/*end Alternative Search  */

.search_button {
  min-width: 46px;
  flex-shrink: 0;
  height: 32px;
  border: none;
  border-radius: 0px 3px 3px 0px;
  font-size: var(--font-size-m);
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.search_button svg {
  height: 32px;
  width: auto;
  fill: var(--color-navButtons);
}

.search_separator {
  border: 1px solid var(--color-primary);
  width: 1px;
  height: 32px;
}

.build_search_button {
  font-size: var(--font-size-m);
  width: 178px;
  min-width: 145px;
  height: 32px;
  border: none;
  border-radius: 4px 4px 4px 4px;
  background-color: var(--color-primary);
  color: var(--color-navButtons);
  display: flex;
  justify-content: center;
  align-items: center;
}

.account_button svg {
  height: 33px;
  width: 33px;
}

@media only screen and (max-width: 58em) {
  .build_search_button,
  .search_separator {
    display: none;
  }

  .search_button {
    min-width: auto;
    border-radius: 0px;
    width: 40px;
    padding: 0px;
  }
  .search_button svg {
    height: 23px;
  }
  .account_button svg {
    height: 25px;
    width: 25px;
  }

  .account_button {
    height: 25px;
  }
}

/* Hamburger menu */

.hamburger_menu_wrapper {
  flex: 0 0 auto;
  position: relative;
  z-index: 10;
  display: inline-block;
}

.hamburger {
  padding-right: 0px;
}

.hamburger svg {
  margin: 0px;
  padding: 0px;
  width: 38px;
  height: 30px;
  background-size: cover;
}

@media only screen and (max-width: 58em) {
  .hamburger svg {
    width: 21px;
    height: auto;
  }
}

.hamburger_dropdown_menu {
  display: none;
  position: absolute;
  top: 99%;
  right: 0px;
  width: 400px;
  border-radius: 6px;
  padding: 50px 40px;
  z-index: 2;
  background-color: white;
  color: var(--color-core);
  box-shadow: 3px 3px 6px #00000029;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}

.hamburger_dropdown_menu_dialog {
  display: flex;
  position: absolute;
  top: 0px;
  right: -29px;
  width: 309px;
  border-radius: 6px;
  padding: 50px 40px;
  z-index: 2;
  background-color: white;
  color: var(--color-core);
  box-shadow: 3px 3px 6px #00000029;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  border: 0px;
  margin: 0px;
}

.hamburger_menu_wrapper dialog::backdrop {
  background: transparent;
}

/* .hamburger_menu_wrapper:hover .hamburger_dropdown_menu {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
} */

.hamburger_menu_item {
  cursor: pointer;
  border: none;
  background-color: transparent;
  font-size: var(--font-size-xs);
  color: var(--color-core);
  padding: 0px 11px 0px 11px;
}

.hamburger_menu_item:hover {
  color: var(--text-color-dark);
}

.main_content {
  position: fixed;
  top: 180px;
  width: 100%;
  height: calc(100vh - 180px);
  scrollbar-width: auto;
  overflow-x: auto;
}

.subPageWrapper {
  max-width: 1018px;
}

@media only screen and (max-width: 58em) {
  .main_content {
    top: 108px;
    height: calc(100vh - 108px);
  }
}

@media only screen and (max-width: 35em) {
  .hamburger_dropdown_menu {
    position: fixed;
    top: 104px;
    left: 15px;
    padding: 32px 22px;
    right: 15px;
    width: unset;
  }

  .main_content {
    /* top: 125px;
    height: calc(100vh - 125px); */
    position: initial;
    top: initial;
    width: initial;
    height: initial;
    scrollbar-width: initial;
    overflow-x: initial;
    position: relative;
  }
}

/* removing scrollbar which was causing content shift */
/* AK - we may have to added back - some people may need it */
/* .main_content::-webkit-scrollbar {
  display: none;
} */

/* modal  */
.modal_wrapper {
  z-index: 3;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;

  opacity: 0;
  transition: opacity 300ms ease-in-out;
  visibility: hidden;
}

.modal_wrapper_open {
  z-index: 3;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

/* #modal_handle {
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  visibility: hidden;
} */

.modal_outside_trigger {
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 0px;
  border: 0px;
}

.modal_outside_trigger_button {
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 0px;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.modal_window {
  /* opacity: 0;
  transition: opacity 300ms ease-in-out; */
  background-color: white;
  border-radius: 6px;
}

.modal_window_dialog {
  background-color: white;
  border-radius: 6px;
}

.modal_window_dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

/* end modal */

/* buildSearch menu */

.buildSearch_menu_dialog {
  position: fixed;
  width: min-content;
  min-width: 890px;
  height: 630px;
  z-index: 3;
  top: 3vh;
  left: 4vw;
  margin: 0;
  padding: 0px;
  border: 0px;
}

@media only screen and (max-width: 58em) {
  .buildSearch_menu {
    position: fixed;
    width: 100%;
    height: 90%;
  }

  .buildSearch_menu_dialog {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
    padding: 0px;
    border: 0px;
  }
}

.buildSearch_menu_header {
  font-size: var(--font-size-xl);
  height: 68px;
  border-bottom: solid 1px #c1c5c7;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px 0px 57px;
}

.buildSearch_menu_mainSection {
  width: 100%;
  padding: 8px 90px 0px 60px;
  font-size: var(--font-size-xl);
  color: var(--color-core);
}

.buildSearch_form {
  color: var(--text-color-dark);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 31px;
  margin-top: 30px;
}

.buildSearch_form_item {
  width: 730px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buildSearch_form_item input {
  font-size: var(--font-size-xs);
}

.buildSearch_form_buttonsWrapper {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.buildSearch_form_input {
  /* need this because of the clash with honline.css:708 */
  width: 550px !important;
}

.buildSearch_form_item_year {
  width: 730px;
  display: flex;
  justify-content: space-between;
}

.buildSearch_form_input_year {
  /* need this because of the clash with honline.css:708 */
  width: 136px !important;
  margin: 0px 0px;
}

.buildSearch_form_select {
  width: 400px;
  border: 1px solid #bfc1bf;
  border-radius: 4px;
}

/* end buildSearch  menu */

/* opening times menu */

#modal_handle_openingTimes:target {
  opacity: 1;
  visibility: visible;
}

#modal_handle_openingTimes:target,
#modal_handle_openingTimes.modal_window {
  opacity: 1;
  transform: translateY(1);
}

.opening_times {
  position: fixed;
  width: 507px;
  height: auto;
  padding-bottom: 50px;
  z-index: 3;
  top: 10vh;
  right: 10vw;
}

.opening_times_header {
  font-size: var(--font-size-l);
  height: 46px;
  border-bottom: solid 1px #c1c5c7;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 14px 0px 34px;
}

.opening_times_wrapper {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 35em) {
  .opening_times {
    width: 100%;
    top: 0px;
    right: 0px;
  }
  .opening_times_header {
    font-size: var(--font-size-s);
  }
}

/* end opening times menu */

/* contact page */

#modal_handle_contactPage:target {
  opacity: 1;
  visibility: visible;
}

#modal_handle_contactPage:target,
#modal_handle_contactPage.modal_window {
  opacity: 1;
  transform: translateY(1);
}

.contact_page {
  position: fixed;
  width: 500px;
  height: auto;
  padding-bottom: 100px;
  z-index: 3;
  top: 10vh;
  right: 10vw;
}

.contact_page_header {
  font-size: var(--font-size-l);
  height: 46px;
  border-bottom: solid 1px #c1c5c7;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 14px 0px 34px;
}

@media screen and (max-width: 35em) {
  .contact_page {
    width: 100%;
    top: 0px;
    right: 0px;
    font-size: var(--font-size-xs);
  }
  .contact_page_header {
    font-size: var(--font-size-s);
  }
}

/* end contact page */

/* Shared Elements */

.button {
  border: none;
  border-radius: 4px;
  color: white;
  background-color: var(--color-core);
  font-size: var(--font-size-s);
  padding: 7px 16px 7px 18px;
  cursor: pointer;
}

.button:hover {
  color: var(--color-core);
  background-color: var(--color-hover);
}

.button:disabled {
  color: var(--text-color-light);
}

/* AK - the name needs to stay camel case for back compat */
.ButtonSmall {
  border: 1px solid #bfc1bf;
  border-radius: 4px;
  color: white;
  background-color: var(--color-core);
  font-size: 0.9rem;
  padding: 4px 16px 4px 18px;
}

.ButtonSmall:hover {
  color: white;
  background-color: var(--color-hover);
}

.button_large {
  border: 1px solid #bfc1bf;
  border-radius: 4px;
  color: white;
  background-color: var(--color-core);
  font-size: var(--font-size-xl);
  padding: 4px 16px 4px 18px;
}

.button_large:hover {
  color: white;
  background-color: var(--color-hover);
}

.chat-bubble {
  position: fixed;
  bottom: 10px; /* Adjust the value as per your requirement */
  right: 10px; /* To horizontally center the bubble, you can adjust this value accordingly */
  width: 65px;
  height: 65px;
  background-color: var(--color-primary);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: none;
  z-index: 108;
  transition: all 0.2s;
}

.chat-bubble:hover {
  transform: scale(120%);
}

.chat-bubble svg {
  fill: var(--color-secondary);
}

/* OpeningTimes colour classes */

#libInfo .Today {
  color: #2ba62b;
}
#libInfo .OpenColour {
  word-wrap: no-wrap;
}
#libInfo .ClosedColour {
  color: Maroon;
  word-wrap: no-wrap;
}
#libInfo .HolidayColour {
  color: Sienna;
  word-wrap: no-wrap;
}
#libInfo .BankHolColour {
  color: Sienna;
  word-wrap: no-wrap;
}
#libInfo .Open24Colour {
  word-wrap: no-wrap;
}
#libInfo .DefaultTimesColour {
  color: gray;
  word-wrap: no-wrap;
}

/* end OpeningTimes colour classes */

/* end Shared Elements */

/* Utils (helper classes) */

.show {
  display: block;
}

.flex {
  display: flex;
}

.button_hover:hover,
.button_hover:focus {
  background-color: var(--color-hover);
}

.svg_button_hover:hover,
.svg_button_hover:focus {
  /* filter: brightness(200%); */
  fill: var(--color-hover);
}

.link_hover:hover,
.link_hover:focus {
  color: var(--color-hover);
}

.custom_tooltip {
  display: none;
}

.hidden {
  display: none;
}

.openModal {
  opacity: 1;
  visibility: visible;
}

.clearDialog {
  border: 0px;
  margin: 0px;
  background-color: transparent;
  padding: 0px;
}

.clearButton {
  border: none;
  background: transparent;
}

/* accessibility - screen reader only */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* end Utils */
