.cf_draw_tools {
  position: absolute;
  top: 80px;
  display: none;
  background-color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  pointer-events: all;
}

.cf_draw_tools--open {
  display: block;
}

.cf_draw_tools__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
}

.cf_draw_tools__heading {
  padding: 0 8px;
  margin: 0;
}

.cf_draw_tools__button_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .cf_draw_tools {
    position: relative;
    top: 20px;
    left: 20px;
  }
}
.cf_footer {
  font-family: MainLight;
  /* flex: 0 0 50px; */
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  flex-direction: column;
  color: #c0c0c0;
  /* font-weight: bold; */
  font-size: 0.6em;
  text-align:center;   
  z-index:5;
}

.cf_footer_links {
  margin-bottom: 5px;
  display:none !important;
}

.cf_footer_links a:not(:last-child)::after {
  content: '|';
  margin: 0 5px;
}

@media (min-width: 768px) {
  .cf_footer {
    font-family: MainBold;
    /* flex: 0 0 50px; */
    /* display: flex; */
    flex-direction: row;
    /*justify-content: space-between;*/
    /* align-items: center; */
    /* padding: 0 20px; */
    font-weight: bold;
    font-size: 0.6em;
    color: initial;
  }

  .cf_footer_links {
    margin-bottom: 0;
  }
}
.cf_language_select {
  /* position: absolute; */
  position: relative;
  top: 10px;
  margin-left: 10px;
  background-color: white;
  overflow: hidden;
  will-change: transform;
  transform-origin: top left;
  pointer-events: all;
  display:none !important;
}

.cf_language_select--expanded {
  animation-name: cfLanguageSelectOpenAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;

  /* padding: 20px; */
}

.cf_language_select--hidden {
  display: none;
}

.cf_language_select--collapsed{
  animation-name: cfLanguageSelectCloseAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;

  /* padding: 20px; */
}

.cf_language_select__contents {
  transform-origin: top left;
  contain: content;
  will-change: transform;
  /* padding: 10px;
  box-sizing: border-box; */

}

.cf_language_select--expanded .cf_language_select__heading {
  border-bottom: 1px solid #c3c3c3;
}

.cf_language_select__contents--expanded {
  animation-name: cfLanguageSelectContentsOpenAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;
}

.cf_language_select__contents--collapsed {
  animation-name: cfLanguageSelectContentsCloseAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;
}
@media (min-width: 768px) {
  .cf_language_select {
    right: 10px;
  }
}
.cf_recommendations_modal {
  /* display: none; */
  visibility: hidden;
  z-index: -1;
  transform: translate(-10000px, 0);

  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  justify-content: center;
  align-items: center;
}

.cf_recommendations_modal--open {
  display: flex;
  visibility: visible;
  z-index: 10;
  transform: translate(0, 0);
}

.cf_recommendations_modal__backdrop {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cf_recommendations_modal__content {
  z-index: 2;
  position: relative;

  height: 80%;
  width: 80%;
  background-color: white;
  padding: 10px;
  box-sizing: border-box;

  display: grid;

  grid-template-columns: auto;
  grid-template-rows: repeat(4, 1fr);
  gap: 5px;

  opacity: 0;
  /* transform: translate(0, -100px); */

  transition: opacity 400ms ease, transform 400ms ease-out;
}

.cf_recommendations_modal--open .cf_recommendations_modal__content {
  opacity: 1;
  /* transform: translate(0, 0); */
}

.cf_recommendations_modal--closing .cf_recommendations_modal__content {
  opacity: 0;
}

.cf_recommendations_modal__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(70%, -100%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cf_recommendations_modal__content {
    height: 600px;
    width: 600px;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .cf_recommendations_modal__close {
    transform: translate(100%, -100%);
  }
}
.cf_navbar {
  padding: 8px 30px;
  box-sizing: border-box;
  /* flex: 0 0 70px; */
  height: 70px;
  /* max-height: 70px; */
  text-align: center;
  display: flex;
  justify-content: center;
}

.cf_navbar__content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.cf_navbar__logo {
  height: 100%;
  flex: 0 0 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

.cf_navbar__search {
	padding:10px 15px;
	width:26px;
	height:26px;
   border:1px solid #DFDFDF;
   border-radius:10px;
}

.cf_navbar__phone {
	padding:10px 15px;
	width:26px;
	height:26px;
   border:1px solid #DFDFDF;
   border-radius:10px;
}

.cf_navbar__weather {
  display: flex;
  align-items: center;
  background:#fff;
  position:fixed;
  left:30px;
  bottom:30px;
  border-radius:4px;
  padding:9px 10px;
  width:90px;
  -moz-box-shadow: 0 0 2px rgba(0,0,0,.1);
  -webkit-box-shadow: 0 0 2px rgba(0,0,0,.1);
  box-shadow: 0 0 0 2px rgba(0,0,0,.1);
}

.cf_navbar__weather_icon {
  height: 32px;
  margin-right:14px;
  border-radius: 50%;
  overflow: hidden;
}

.cf_navbar__weather_temp {
  font-weight: 600;
  color: #000;
  font-size: 1.5em;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .cf_navbar {
    /* flex: 0 0 100px; */
    /* max-height: 100px; */
    height: 100px;
  }
}
@media (max-width: 520px) {
  .cf_navbar {
     padding: 8px 15px;
  }
}
.cf_toolbar {
  display: flex;
  padding: 0;
  background-color: white;
  top: 10px;
  position: relative;
  flex-direction: column;
  transform-origin: top left;
  overflow: hidden;
  contain: content;
  will-change: transform;
  pointer-events: all;
  width: 200px;
  display:none !important;
}

.cf_toolbar--fixed {
  display: none;
}


.cf_toolbar--expanded {
  animation-name: cfToolbarOpenAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;
}


.cf_toolbar--collapsed{
  animation-name: cfToolbarCloseAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;
}

.cf_toolbar__heading {
  cursor: pointer;
  margin: 0;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}

.cf_toolbar__heading--collapsible {
  box-sizing: unset;
}

.cf_toolbar__heading:not(.cf_toolbar__heading--collapsible), .cf_toolbar--expanded .cf_toolbar__heading--collapsible {
  border-bottom: 1px solid #c7c7c7;
}

.cf_toolbar__heading_content {
  padding: 10px;
}

.cf_toolbar__heading_text {
  /* flex: 1; */
  margin: 0;
  font-size: 1em;
  grid-column: 2;
}

.cf_toolbar__contents {
  transform-origin: top left;
  contain: content;
  will-change: transform;
  
}

.cf_toolbar__contents--expanded {
  animation-name: cfToolbarContentsOpenAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;
}

.cf_toolbar__contents--collapsed {
  animation-name: cfToolbarContentsCloseAnimation;
  animation-duration: 400ms;
  animation-timing-function: step-end;
  animation-fill-mode: forwards;
}

.cf_toolbar__btn {
  display: flex;
  grid-column: 3;
  justify-self: center;
  background-color: rgb(23, 23, 23);
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.cf_toolbar__btn--hidden {
  display: none;
}

.cf_toolbar__button_container, .cf_toolbar__heading_fixed {
  padding: 0;
  box-sizing: border-box;
  font-size: 0.7em;
  width: 100%;
}


@media (min-width: 768px) {

  .cf_toolbar__container {
    justify-content: space-between;
  }

  .cf_toolbar {
    left: 20px;
    transform: translate(0, 0);
    width: 270px;
  }

  .cf_toolbar--fixed {
    display: block;
  }

  .cf_toolbar__block{
    display: none;
  }

  .cf_toolbar--collapsible {
    display: none;
  }

  .cf_toolbar__heading {
    display: flex;
    height: auto;
  }

  .cf_toolbar__heading_text {
    text-align: center;
    flex: 1;
  }

  .cf_toolbar__button_container, .cf_toolbar__heading_fixed {
    font-size: 0.8em;
  }
}

.cf_toolbar--hidden {
  display: none;
}

.cf_touch_sketch_tools {
  position: absolute;
  top: 80px;
  display: none;
  background-color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  pointer-events: all;
}

.cf_touch_sketch_tools--open {
  display: block;
}

.cf_touch_sketch_tools__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
}

.cf_touch_sketch_tools__heading {
  padding: 0 8px;
  margin: 0;
}

.cf_touch_sketch_tools__button_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px 8px 8px;
  background-color: #f7f7f7;
}

.cf_touch_sketch_tools__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(70%, -100%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}


@media (min-width: 768px) {
  .cf_touch_sketch_tools {
    position: relative;
    top: 20px;
    left: 20px;
  }
}
.cf_draw_tool_button {
  background-color: white;
  height: 50px;
  width: 50px;
  
  box-sizing: border-box;
  border-radius: 35px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  text-transform: uppercase;
  cursor: pointer;
  font-size: 1em;
  padding: 0;

}

.cf_draw_tool_button:not(:last-child) {
  margin-right: 8px;
}

.cf_draw_tool_button--active {
  background-color: rgb(23, 23, 23);
}



.cf_draw_tool_button:hover {
  box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}


.cf_draw_tool_button__icon {
  /* width: 50px; */
  height: 50px;
  flex: 0 0 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf_draw_tool_button__icon--active {
  display: none;
}

.cf_draw_tool_button--active .cf_draw_tool_button__icon:not(.cf_draw_tool_button__icon--active) {
  display: none;
}

.cf_draw_tool_button--active .cf_draw_tool_button__icon--active {
  display: flex;
}


.cf_draw_tool_button__icon > svg {
  width: 100%;
  height: 100%;
}
.cf_language_option {
  display: flex;
  align-items: center;
  padding: 3px 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.cf_language_option:not(first-child):hover {
  background-color: #f3f3f3;
}

.cf_language_option__icon {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.cf_language_option__label{
  display: none;
}

@media (min-width: 768px) {
  .cf_language_option {
    display: flex;
    width: 170px;
  }

  .cf_language_option__icon {
    flex: 0 0 50px;
    margin-right: 8px;
  }

  .cf_language_option__label{
    display: block;
  }
}
.cf_icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.cf_link {
  text-decoration: none;
}
.cf_main_menu_button {
  background-color: white;
  height: 60px;
  padding: 4px;
  box-sizing: border-box;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;

  text-transform: uppercase;
  cursor: pointer;

  font-size: 1em;
  background-color: #f7f7f7;
  margin-bottom: 0;
}

.cf_main_menu_button:not(:last-child) {
  margin-bottom: 4px;
}

.cf_main_menu_button--text {

  width: 100%;
  height: 100%;
  flex: 1;
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
}

.cf_main_menu_button--header {
  background-color: white;
  /* height: auto; */
  /* padding: 0; */
}


.cf_main_menu_button:hover {
  background-color: #e7e7e7;
}


.cf_main_menu_button__icon {
  height: 50px;
  flex: 0 0 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;

}

.cf_main_menu_button__icon > svg {
  width: 100%;
  height: 100%;
}
.cf_modal_tile {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;

  
  background-color: rgb(255, 255, 255);
  background-blend-mode: multiply;
  transition: background-color 400ms, color 400ms;

  font-weight: bold;
  color: white;
  cursor: pointer;
}

.cf_modal_tile:hover {
  background-color: rgb(223, 223, 223);
  color: rgb(243, 243, 243);
}

.cf_modal_tile__button {
  position: absolute;
  bottom: 50px;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid white;
  color: white;

  display: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 0.8em;

  transition: background-color 400ms;
  left: 50%;
  transform: translate(-50%, 0);
}

.cf_modal_tile:hover > .cf_modal_tile__button {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .cf_modal_tile {
    padding: 0 40px;
    box-sizing: border-box;
  }

  .cf_modal_tile__button {
    display: inline-block;
  }
  
}
.cf_topbar_button {
  background-color: rgb(23, 23, 23);
  height: 40px;
  width: 40px;
  /* padding: 8px; */
  box-sizing: border-box;
  border: none;
  
  display: flex;
  align-items: center;
  justify-content: center;

  text-transform: uppercase;
  cursor: pointer;

  margin: 0;
  padding: 0;
  font-size: 1em;

}

.cf_topbar_button:not(:last-child) {
  margin-right: 8px;
}


.cf_topbar_button:hover {
  box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}

.cf_topbar_button__icon {
  /* width: 50px; */
  height: 40px;
  flex: 0 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* .cf_topbar_button__icon > svg {
  width: 100%;
  height: 100%;
} */
.cf_dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.cf_dialog__modal {
  position: relative;
  width: 90%;
  max-width: 280px;
  padding: 20px 20px;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  animation-name: cf_dialog_fade_in;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
  border-radius:16px;
}

.cf_dialog__header {
  font-size: 1.2em;
  font-family: MainBold;
  text-align: center;
  margin:15px 0;
}

.cf_dialog__message {
  font-size: 1em;
  font-family: Main;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  line-height:1.4;
}

.cf_dialog__button_container {
  display: flex;
  justify-content: space-around;
}

.cf_dialog__button {
  margin: 20px 10px;
  width:100%;
}

@keyframes cf_dialog_fade_in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .cf_input_bar__modal {
    width: 500px;
  }  
}
.cf_directions_panel {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf_directions_panel__content {
  border-bottom: 1px solid #c2c2c2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 8px;
  box-sizing: border-box;
  flex: 0 1 600px;
}

.cf_directions_panel__summary_element {
  width: 100%;
  height: 60px;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.cf_directions_panel__summary_details {
  grid-column: 1;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto;
  justify-content: center;
  border-right: 1px solid #c3c3c3;


}

.cf_directions_panel__icon_container {
  padding: 0 8px;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  grid-column: 1;
  border-right: 1px solid #c3c3c3;
}

.cf_directions_panel__icon_container--instruction {
  height: 40px;
  flex: 0 0 40px;
}

.cf_directions_panel__summary_text_container {
  grid-column: 2;
}

.cf_directions_panel__summary_text {
  text-align: center;
}

.cf_directions_panel__summary_distance {
  font-size: 1em;
  font-family: MainBold;
  padding: 0 8px;
  box-sizing: border-box;
}

.cf_directions_panel__summary_time {
  font-size: 0.8em;
}

.cf_directions_panel__action_btn_container {
  /* flex: 1; */
  grid-column: 2;
  display: grid;
  gap: 8px;
  padding: 0 8px;
  box-sizing: border-box;
}

.cf_directions_panel__action_btn_container--1 {
  grid-template-columns: 1fr;
}

.cf_directions_panel__action_btn_container--2 {
  grid-template-columns: 1fr 1fr;
}

.cf_directions_panel__action_btn_container--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.cf_directions_panel__detail {
  flex: 0 0 100px;
  padding-left: 8px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 600;
  border-left: 1px solid #c2c2c2;
  margin-left: 8px;
  border-right: 1px solid #c2c2c2;
  margin-right: 8px;
}


.cf_directions_panel__instruction {
  width: 100%;
  display: flex;
  align-items: center;
}

.cf_directions_panel__instruction_text_container {
  border-right: 1px solid #c2c2c2;
  flex: 1;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8px;
  box-sizing: border-box;
}

.cf_directions_panel__instruction_line1 {
  font-size: 0.7em;
  margin-bottom: 4px;
}

.cf_directions_panel__instruction_line2 {
  font-size: 1em;
  font-weight: 600;
}

.cf_directions_panel__instruction_details_container {
  flex: 0 0 70%;
  display: flex;
  align-items: center;
}

.cf_directions_panel__distance {
  text-align: center;
  flex: 1;
  font-size: 1em;
  font-weight: 600;
  padding: 0 8px;
  box-sizing: border-box;
}


.cf_directions_panel__nav_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.cf_directions_panel__nav_actions {
  flex: 0 1 600px;
  display: grid;
  grid-template-columns: 80% auto;
  grid-template-rows: 40px;
  gap: 8px;
}

.cf_directions_panel__nav_overlay > * {
  pointer-events: all;
}

.cf_directions_panel__location_unavailable {
  flex: 0 0 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cf_directions_panel__location_unavailable_line_1 {
  font-family: MainBold;
}
.cf_working_overlay {
  z-index: 1000;
  background-color: rgba(23, 23, 23, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.cf_working_overlay__message {
  color: white;
  font-size: 2em;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 50px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.cf_icon_button {
  border: none;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(131,46,97);
  color: white;
  text-transform: none;
  display: flex;
  height:50px;
  cursor: pointer;
  font-size: 1em;
  letter-spacing:1px;
  font-weight:700;
  padding: 0;
  margin: 0;
  border-radius:8px;
}


.cf_icon_button__text {
  color: inherit;
  flex: 0 1 100%;
  font-size:14px;
}

.cf_icon_button__text--hide_mobile {
  display: none;
}


.cf_icon_button__icon_container {
  height: 25px;
  flex: 1 0 25px;
  padding: 5px;
  box-sizing: border-box;
}

.cf_icon_button__icon {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.cf_icon_button__icon_container--no_text {
  flex: 1;
}


@media (min-width: 540px) {
  .cf_icon_button__text--hide_mobile {
    display: block;
  }
}

@media (min-width: 540px) {
  .cf_icon_button__icon_container {
    flex: 1 0 40px;
  }

  .cf_icon_button__text--hide_large {
    display: none;
  }


}
.cf_direction_type_select__root {
  position:fixed;
  background:rgba(0, 0, 0, 0.3);
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:1000;
}

.cf_direction_type_select {
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
 	display:flex;
	flex-direction:column;
	background:#fff;
	z-index:1001;
	padding:20px;
	border-radius:16px;
	width:320px;
	max-width:calc(100% - 80px);
}

.cf_direction_type_select__text {
  grid-column: 1;
  border-right: 1px solid #c3c3c3;
  padding: 8px;
  box-sizing: border-box;
}

.cf_direction_type_select__text_header {
  font-family: MainBold;
}

.cf_direction_type_select__text_instruction {
  font-size: 0.8em;
}

/* .cf_direction_type_select__btn_container {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  box-sizing: border-box;
} */

.cf_direction_type_select__btn {
  grid-column: 3;
  height:50px !important;
}
/* .cf_direction_type_select__btn--1 {
  grid-column: 1; */
/* } */

/* .cf_direction_type_select__btn--2 {
  grid-column: 2;
} */

.cf_selector {
  position: relative;
  border: 2px solid rgb(23, 23, 23);
  
}

.cf_selector__options_container {
  position: absolute;
  top: -2px;
  left: 0;
  transform: translate(0, -100%);
  display: none;
  background-color: white;
  width: 100%;
}

.cf_selector__options_container--open {
  display: block;
}

.cf_selector, .cf_selector__entry {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  box-sizing: border-box;
  height: 44px;
}

.cf_selector__entry {
  background-color: #f7f7f7;
  margin-bottom: 4px;
}

.cf_selector__entry:hover {
  background-color: #e7e7e7;
  margin-bottom: 4px;
}

.cf_selector__value_container {
  display: grid;
  grid-template-columns: 1fr 15px;
  grid-template-rows: auto;
  width: 100%;
  align-items: center;
}

.cf_selector__value {
  display: flex;
  align-items: center;
}

.cf_selector__value, .cf_selector__entry {
  font-size:14px;
  font-weight: 600;
}

.cf_selector__chevron {
  width: 100%;
  height: 15px;
  background: url('../assets/images/chevron.svg') no-repeat center center;
  background-size: contain;
}

@media (min-width: 768px) {
  .cf_selector__value_container {
    grid-template-columns: 1fr 20px;
  }

  .cf_selector__chevron {
    height: 20px;
  }

  .cf_selector__value, .cf_selector__entry {
    font-size:14px;
  }
}
.cf_image_scroller {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: rgb(23, 23, 23);
  border-radius:10px;
}

.cf_image_scroller__btn_container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.cf_image_scroller__btn {
  width: 30px;
  height: 30px;
  background: url('../../assets/images/gallery_button.svg') no-repeat center center;
  pointer-events: all;
}

.cf_image_scroller__btn--back {
  left: 0;
  transform: rotate(180deg);
}

.cf_image_scroller__btn--forward {
  right: 0;
}

.cf_image_scroller__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(23, 23, 23);
  z-index: 1;
  will-change: opacity;
  /* transform: translate(100%, 0); */
  transition: opacity 150ms ease-in-out;
  opacity: 0;
  border-radius:8px;
}

.cf_image_scroller__image--deactivating {
  z-index: 1;
}

.cf_image_scroller__image--active {
  z-index: 2;
  opacity: 1;
}

.cf_image_scroller_image--video {
  padding: 0;
}

.cf_image_scroller_image--video video {
  height: fit-content;
}

.cf_image_scroller__video_play_button_container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cf_image_scroller__video_play_button {
  height: 50px;
  width: 50px;
  background-image: url('../assets/images/play_button.svg');
}

.cf_image_scroller__tab_container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 5px;
  box-sizing: border-box;
}

.cf_image_scroller__tab_container--hidden {
  display: none;
}

.cf_image_scroller__tab {
  flex: 0 0 7px;
  border-radius: 50% 50%;
  /* border: 1px solid white; */
  background-color: white;
  opacity: 0.5;

  height: 7px;
  margin: 5px;
  pointer-events: all;
  cursor: pointer;
}

.cf_image_scroller__tab--active {
  opacity: 1;
}
.cf_input_bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.cf_input_bar__modal {
  position: relative;

  width: 80%;
  padding: 10px 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 40px;
  box-sizing: border-box;

  animation-name: cf_input_bar_fade_in;
  animation-duration: 400ms;
  animation-fill-mode: forwards;

  fill: white;
  height: 100px;

  display: flex;
  align-items: center;
}

.cf_input_bar__input {
  flex: 1;
  background-color: transparent;
  border: none;
  height: 100%;
  font-size: 1.2em;
  width: calc(100% - 30px);
}

.cf_input_bar__placeholder_icon {
  flex: 0 0 30px;
  height: 30px;
  cursor: pointer;
}

@keyframes cf_input_bar_fade_in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .cf_input_bar__modal {
    width: 500px;
  }  
}
.cf_highlight {
  padding: 8px 0;
  box-sizing: border-box;
}

.cf_highlight__heading {
  font-weight: 600;
  margin-bottom: 9px;
  font-size: 0.9em;
}

.cf_highlight__text {
  font-size: 0.8em;
  line-height: 1.4em;
}

@media (min-width: 768px) {
}
.cf_info_modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  font-size: 0.8em;
}

.cf_info_modal__modal {
  position: relative;

  width: 95%;
  padding: 10px 10px;
  background-color: white;
  box-sizing: border-box;

  animation-name: cf_info_modal_fade_in;
  animation-duration: 400ms;
  animation-fill-mode: forwards;

  fill: white;
  border-radius:16px;
}

@keyframes cf_info_modal_fade_in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cf_info_modal__header {
  display: flex;
  align-items: center; 
  margin-bottom:10px;
}

.cf_info_modal__details {
  flex: 1;
  padding: 8px 20px;
  box-sizing: border-box;
  text-align: left;
}

.cf_info_modal__details--no_pad {
  padding: 8px 0;
}

.cf_info_modal__name {
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 5px;
}

.cf_info_modal__address {
  font-style: normal;
  font-weight: 400;
  font-size: 0.8em;
	line-height:1.4;
}

.cf_info_modal__logo_container {
  flex: 1;
  height: 60px;
  border-right: 2px solid #c2c2c2;
  padding:8px 20px;
  box-sizing: border-box;
}

.cf_info_modal__logo {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.cf_info_modal__content {
  width: 100%;
  box-sizing: border-box;
}

.cf_info_modal__image_container {
  margin-bottom: 10px;
  position: relative;
}

/* .cf_info_modal__image--video {
  padding: 0;
}

.cf_info_modal__image--video video {
  height: fit-content;
} */

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}


.cf_info_modal__action_buttons {
  display: grid;
  grid-template-areas: 
    'directions'
    /* 'directions directions directions'
    'print email text' */
  ;
  /* grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr; */
  grid-template-rows: auto;
  grid-template-columns: auto;
  gap: 5px;
  grid-gap: 5px;
  margin-bottom: 5px;
}

.cf_info_modal__cta_buttons {
  display: grid;
  grid-template-rows: 40px 40px;
  grid-template-rows: auto;
  gap: 5px;
}


.cf_info_modal__cta_btn {
  width: 100%;
}

/*.cf_info_modal__cta_btn--reservations {
  grid-row: 2;
}

.cf_info_modal__cta_btn--website {
  grid-row: 1;
}*/

.cf_info_modal__close {
  position: absolute;
  /* top: -8px;
  right: -8px; */
  top: 0;
  right: 0;
  transform: translate(0, -110%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-image: url('../assets/images/cross.svg');
  width: 30px;
  height: 30px;
}


/* .cf_info_modal__video_play_button_container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cf_info_modal__video_play_button {
  height: 50px;
  width: 50px;
  background-image: url('../assets/images/play_button.svg');
}*/

.cf_info_modal__description {
  font-size: 0.9em;
  margin-bottom:10px;
  line-height: 1.4em;
  text-align:center;
}

.cf_info_modal__text_btn {
  grid-area: text;
}

/* .cf_info_modal__email_btn {
  grid-area: email;
}

.cf_info_modal__print_btn {
  grid-area: print;
}

.cf_info_modal__directions_btn {
  grid-area: directions;
} */

@media (min-width: 375px) {
  .cf_info_modal__modal {
    width: 90%;
    max-width: 500px;
  }
}


@media (min-width: 540px) {
  .cf_info_modal__modal {
    width: 90%;
    width: 500px;
    padding: 20px 20px;
  }

  .cf_info_modal__close {
    transform: translate(80%, -110%);
  }

  .cf_info_modal__logo_container {
    height: 80px;
  }

  .cf_info_modal__name {
    font-size: 1em;
  }
  
  .cf_info_modal__address {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8em;
	line-height:1.4;
  }

  .cf_info_modal__action_buttons {
    grid-template-areas: 
      'directions'
      /* 'directions print email text' */
    ;
    grid-template-rows: auto;
    /* grid-template-columns: 1fr repeat(3, 40px); */
    grid-template-columns: auto;
  }

  /*.cf_info_modal__cta_buttons {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .cf_info_modal__cta_btn--reservations {
    grid-column: 2;
    grid-row: 1;
  }

  .cf_info_modal__cta_btn--website {
    grid-column: 1;
    grid-row: 1;
  }

  .cf_info_modal__cta_btn--full-width {
    grid-column: 1 / 2;
  }*/
    
}

@media print {
  .cf_info_modal__modal {
    width: 150mm;
  }

  .cf_info_modal__image {
    height: 100mm;
  }
  
}
.cf_print_element {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media print {

  /* @page {
    size: A4 landscape;
    margin: 17mm;
  } */

  
  .cf_print_element {
    /* transform: rotate(-90deg) translate(100% 0);
    transform-origin: top left; */
    visibility: visible;
    height: 297mm;
    width: 210mm;
    padding: 17mm;
    box-sizing: border-box;
  }

  .cf_print_element * {
    display: block;
    font-family: Main;
  }

 

  .cf_print_element__map_container > * {
    position: absolute;
    top: 0;
    left: 0;
  }

  .cf_print_element__map {
    position: relative;
    margin-top: 10mm;
    width: 100%;
    height: 100%;
  }

  .cf_print_element__map_container {
    position: relative;
  }
}
.cf_navigation_marker {
  width: 30px;
  height: 50px;
  background-image: url('../assets/images/gps_marker.svg');
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-position: center center;
  opacity: 0.6,
}
.cf_map_textbox {
  padding: 5px 10px 5px 10px;
  box-sizing: border-box;
  background-color: rgb(23, 23, 23);
}

.cf_map_textbox__content {
  outline: none;
  color: white;
  background-color: transparent;
  border: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  font-family: Main;
  text-align: center;
  resize: none;
  overflow: hidden;
  line-height: 1.2em;
  font-weight: bold;
}

@media print {
  /* .cf_map_textbox {
    position: absolute;
    top: 0;
    left: 0;
  } */
}

.mapboxgl-ctrl-attrib{ display:none !important; }
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-group{ display:flex; flex-direction:row-reverse; margin:0 30px 30px 0 !important; }
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-group .mapboxgl-ctrl-zoom-in,
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-group .mapboxgl-ctrl-zoom-out{ width:50px; height:50px;  }
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-group button + button{ border-top:0 !important; border-right:1px solid #D8D8D8; }
.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-logo{ display:none !important; }