﻿.canvas-layout-container {
  border: 1px solid var(--secondary-colour);
  box-shadow: 0 0.46875rem 2.1875rem rgba(31, 10, 6, 0.03), 0 0.9375rem 1.40625rem rgba(31, 10, 6, 0.03), 0 0.25rem 0.53125rem rgba(31, 10, 6, 0.05), 0 0.125rem 0.1875rem rgba(31, 10, 6, 0.03);
  background-color: #fff;
  container-type: inline-size;
  container-name: canvas;
  height: 100vh;
  overflow-y: auto;
  padding: 1rem;
}

.__default_block {
  /* border-style: solid;
  border-width: 2px;*/
  cursor: pointer;
  min-height: 10px;
  border-color: transparent;
}
.__default_block:hover {
  /* border-color: var(--brand-colour);
  border-style: solid;*/
  /*outline: 2px solid var(--brand-colour);*/
}

.tl-menu-toggler {
  display: none;
}

@container canvas (max-width : 501px) {
  /* .__default_block {
      border: 4px solid #f00 !important;
  }*/
  .tl-menu-toggler {
    display: block;
    font-size: 3.8rem;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 3.8rem !important;
    width: 3.8rem !important;
    background-image: url("/images/menu.svg");
    background-size: cover;
  }
}
.__default_height {
  min-height: 100px;
}

.__default-padding {
  padding: 5px;
}

.__default_div_class {
  /* width: auto;*/
  height: auto;
  /*margin: 5px;*/
  /*padding: 5px;*/
  /* border-style: solid;
  border-width: 1px;
  border-color: transparent; // rgba(0,0,0,0.1);*/
  outline: 1px dotted rgba(0, 0, 0, 0.4);
  transition: none;
}
.__default_div_class:not(:has(div:hover)):hover {
  outline-color: var(--primary-colour);
  outline-width: 2px;
  outline-style: solid;
}

.__default_form_class {
  outline: 2px dotted rgba(0, 0, 255, 0.4);
  width: 100%;
  padding: 5px;
}

.__default_input_class {
  outline: 1px dotted rgba(0, 0, 0, 0.4);
  background-color: unset;
}
.__default_input_class:hover {
  background-color: unset;
}

.__default_main_class {
  /* width: auto;*/
  height: auto;
  min-height: 100px;
  /*margin: 5px;*/
  padding: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  position: relative;
}
.__default_main_class:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  content: "Page Content Placeholder";
  font-size: 7px;
}
.__default_main_class:hover {
  border-color: var(--primary-colour);
}

.__component {
  width: 100%;
  background-color: inherit;
}

.__edit_component_link {
  color: var(--text-colour) !important;
  font-size: 0.9rem;
  padding-left: 0.3rem;
  background-color: var(--body-colour);
  color: var(--secondary-colour);
  padding: 0.3rem;
  border-radius: 0.3rem;
}

.__default_ul_class {
  width: auto;
  height: auto;
  min-height: 50px;
  /*border: 2px dotted #888;*/
  margin: 0;
  display: flex;
  flex-direction: column;
}

.__default_ol_class {
  width: auto;
  height: auto;
  min-height: 50px;
  /*border: 2px dotted #888;*/
  margin: 0;
  display: flex;
  flex-direction: column;
}

.__default_li_class {
  width: auto;
  height: auto;
  min-height: 10px;
  min-width: 100px;
  /*border: 2px dotted #888;*/
  margin: 2px 0;
  outline: 1px dotted rgba(0, 0, 0, 0.4);
}

.__default_header_class {
  min-height: 100px;
}
.__default_header_class:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "header";
  font-size: 8px;
  padding: 0;
}

.__default_nav_class {
  width: auto;
  height: auto;
  min-height: 100px;
  border: 2px dotted #888;
  margin: 5px;
  padding: 5px;
}
.__default_nav_class:before {
  content: "nav";
  font-size: 8px;
  padding: 0;
}

.__default_footer_class {
  min-height: 100px;
  margin: 5px;
  padding: 5px;
}
.__default_footer_class:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "footer";
  font-size: 8px;
  padding: 0;
}

.__default_img_class {
  /* min-width: 100px;
  min-height: 100px;*/
  max-width: 100%;
  /* background-color: #eee;*/
  border-radius: 5px;
  /* padding: 5px;
  margin: 5px;*/
}

.__default_a_class {
  text-decoration: underline;
}

.__selected {
  outline: 2px solid #FD643B;
}
