.transition {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu_transition {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.modal > h5 {
  margin-bottom: 0.5em;
}
#blkEstimate {
  display: block;
}
#blkEstimate > div.table > div.data {
  display: block;
}
#blkEstimate > div.table > div.data > div:nth-child(2n+1) {
  font-style: italic;
}
#blkEstimate > div.table > div.data > div:nth-child(2n) {
  text-align: right;
}
#blkEstimate > div.table > div.data > div:nth-child(2n):not(:last-child) {
  margin-bottom: 0.5em;
}
#blkEstimate > div.table > div.data .s {
  display: inline-block;
}
#blkEstimate > div.table > div.data .l {
  display: none;
}
#blkEstimate > div.table > div.data select,
#blkEstimate > div.table > div.data input {
  box-sizing: border-box;
  width: 100%;
  text-align: right;
}
#blkEstimate > div.table > div.cost {
  display: block;
  margin: 0.5em 0;
}
#blkEstimate > div.table > div.cost #blkCost {
  display: none;
}
#blkEstimate > div.table > div.cost #blkCost > div {
  display: block;
  padding: 0.15em 0;
  background-color: #0B891A;
  color: #fff;
  font-size: 3em;
  text-align: center;
}
#blkEstimate > div.table > div.cost #blkCost > div .frac {
  font-size: 0.75em;
}
#blkEstimate > .infoblock {
  font-size: 0.95em;
}
#blkEstimate > div.actions {
  margin-top: 1em;
}
#blkEstimate > div.actions > button {
  width: 100%;
}
#blkEstimate > div.actions > button:not(:last-child) {
  margin-bottom: 0.5em;
}
#blkEstimate > div.actions #btnAddToCart,
#blkEstimate > div.actions #btnOrder {
  display: none;
}
#blkNeedFlexo {
  display: none;
}
@media screen and (min-width: 550px) {
  #blkEstimate > div.table {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
  }
  #blkEstimate > div.table > div.data {
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 10px;
    align-content: start;
    align-items: end;
    justify-content: start;
  }
  #blkEstimate > div.table > div.data > div:nth-child(2n+1),
  #blkEstimate > div.table > div.data > div:nth-child(2n) {
    font-style: normal;
    text-align: left;
    margin: 0;
  }
  #blkEstimate > div.table > div.data > div:nth-child(2n+1):not(:last-child),
  #blkEstimate > div.table > div.data > div:nth-child(2n):not(:last-child) {
    margin-bottom: 0;
  }
  #blkEstimate > div.table > div.data .s {
    display: none;
  }
  #blkEstimate > div.table > div.data .l {
    display: block;
  }
  #blkEstimate > div.table > div.data select,
  #blkEstimate > div.table > div.data input {
    box-sizing: border-box;
    width: 10em;
    text-align: left;
    margin: 0;
  }
  #blkEstimate > div.table > div.cost {
    display: flex;
    align-items: end;
  }
  #blkEstimate > div.table > div.cost #blkCost > div {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 150px;
    height: 150px;
  }
  #blkEstimate > div.actions {
    display: flex;
    gap: 5px;
    margin-top: 1em;
  }
  #blkEstimate > div.actions > button {
    width: auto;
  }
  #blkEstimate > div.actions > button:not(:last-child) {
    margin: 0;
  }
}
#blkCategories {
  display: block;
}
#blkCategories > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 1em;
  padding: 5px;
  margin-bottom: 10px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
#blkCategories > a:last-child {
  margin-bottom: 0;
}
#blkCategories > a:hover {
  border-color: #0B891A;
}
#blkCategories > a > .image > img {
  width: auto;
  height: 85px;
}
#blkCategories > a > .header {
  font-size: 1.1em;
  font-weight: bold;
}
#blkCategories > a > .desc {
  text-align: center;
  font-size: 0.95em;
  margin-bottom: 2.5em;
}
#blkCategories > a > button.basic {
  position: absolute;
  right: 5px;
  bottom: 5px;
}
#blkItems {
  display: block;
}
#blkItems > div.item {
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: repeat(3, auto);
  box-sizing: border-box;
  border: 2px solid #ccc;
  padding: 5px;
  margin-bottom: 10px;
  row-gap: 10px;
  column-gap: 10px;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
#blkItems > div.item:last-child {
  margin-bottom: 0;
}
#blkItems > div.item:hover {
  border-color: #0B891A;
}
#blkItems > div.item > .image {
  grid-row: 1 / 3;
  justify-self: center;
  align-self: center;
}
#blkItems > div.item > .image > img {
  max-width: 90px;
  max-height: 170px;
}
#blkItems > div.item > .header {
  font-size: 1em;
  font-weight: bold;
}
#blkItems > div.item > .data {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(4, auto);
  column-gap: 5px;
  row-gap: 2px;
  align-content: start;
  align-items: end;
  justify-content: start;
  font-size: 0.9em;
}
#blkItems > div.item > .data .mdi {
  color: #666;
}
#blkItems > div.item > .buttons {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 5px;
  align-self: self-end;
}
#blkItems > div.item > .buttons > a.basic {
  display: inline-block;
  color: #333;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: calc(5px + 2px) 10px;
  background-color: transparent;
}
#blkItems > div.item > .buttons > a.basic:hover {
  background-color: #BBC274;
  border-color: #9da649;
  color: #fff;
}
#blkItems > div.item > .buttons > a.basic.att {
  color: #005a44;
  background-color: transparent;
  border-color: #004131;
}
div.loader {
  display: none;
  width: 100%;
  padding: 3em 0;
  text-align: center;
  background-color: #eee;
}
div.loader .mdi {
  display: block;
  font-size: 4em;
}
div.loaderbutton {
  display: flex;
  justify-content: center;
}
div.loaderbutton > #btnMore {
  display: none;
  min-width: 70px;
  width: 55%;
  padding: 1em 0.5em;
  margin-top: 0.75em;
}
#blkItem {
  display: block;
}
#blkItem > div.image {
  text-align: center;
}
#blkItem > div.image > img {
  max-width: 100%;
  max-height: 200px;
}
#blkItem > div.data {
  display: block;
}
#blkItem > div.data > div:not(:last-child) {
  margin-bottom: 0.75em;
}
#blkItem > div.data > .header {
  font-size: 1.1em;
  font-weight: bold;
  color: #004131;
  text-align: center;
}
#blkItem > div.data > .groups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.75em;
  font-size: 0.95em;
}
#blkItem > div.data > .groups > a {
  padding: 2px 0.7em;
  color: #fff;
  background-color: #888;
  text-decoration: none;
  border-radius: 0.5em;
  cursor: pointer;
}
#blkItem > div.data > .groups > a::before {
  content: '\2022\00a0';
}
#blkItem > div.data > .article {
  font-size: 0.9em;
  color: #999;
}
#blkItem > div.data > .dims {
  display: flex;
  align-items: center;
  gap: 1em;
}
#blkItem > div.data > .dims > table {
  border-collapse: collapse;
  border: 1px solid #4d4d4d;
}
#blkItem > div.data > .dims > table th {
  padding: 0.2em 0.5em;
  color: #fff;
  background-color: #888;
  font-weight: normal;
  text-align: center;
  border-left: 1px solid #4d4d4d;
}
#blkItem > div.data > .dims > table td {
  padding: 0.2em 0.5em;
  text-align: center;
  border: 1px solid #4d4d4d;
}
#blkItem > div.data > .cbtype {
  display: flex;
  align-items: center;
  gap: 0.2em 1em;
}
#blkItem > div.data > .cbtype > div {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.2em 1em;
}
#blkItem > div.data > .cbtype img {
  height: 1em;
}
#blkItem > div.data > .cb_colors {
  display: flex;
  align-items: center;
  gap: 0.2em 1em;
}
#blkItem > div.data > .cb_colors > div {
  display: flex;
  align-items: center;
  gap: 0.2em 0.35em;
}
#blkItem > div.data > .cb_colors > div > img {
  height: 1em;
}
#blkItem > div.data > .actions {
  display: block;
}
#blkItem > div.data > .actions > a,
#blkItem > div.data > .actions > button {
  display: inline-block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid #2b2b2b;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: calc(5px + 2px) 10px;
  background-color: #4d4d4d;
  box-sizing: border-box;
  width: 100%;
}
#blkItem > div.data > .actions > a:not(:last-child),
#blkItem > div.data > .actions > button:not(:last-child) {
  margin-bottom: 0.5em;
}
#blkItem > div.data > .actions > a:hover,
#blkItem > div.data > .actions > button:hover {
  background-color: #BBC274;
  border-color: #9da649;
  color: #fff;
}
#blkItem > div.data > .actions > a.att,
#blkItem > div.data > .actions > button.att {
  color: #005a44;
  background-color: transparent;
  border-color: #004131;
}
#blkItem > div.data > .desc > p {
  text-align: justify;
  text-indent: 0.5em;
}
#blkItem > div.data > .sale_name {
  font-size: 0.95em;
  color: #999;
}
.jquery-modal {
  z-index: 20;
}
.jquery-modal .modal {
  min-width: 100%;
  z-index: 25;
}
.jquery-modal .modal img {
  width: 100%;
}
@media screen and (min-width: 700px) {
  #blkItem {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  #blkItem > div.image {
    text-align: left;
  }
  #blkItem > div.image > img {
    max-width: 280px;
    max-height: none;
  }
  #blkItem > div.data > div:not(:last-child) {
    margin-bottom: 0.5em;
  }
  #blkItem > div.data > .header {
    font-size: 1.15em;
    text-align: left;
  }
  #blkItem > div.data > .actions {
    display: flex;
    gap: 0.2em 1em;
  }
  #blkItem > div.data > .actions > a,
  #blkItem > div.data > .actions > button {
    width: auto;
  }
}
@media screen and (min-width: 713px) {
  #blkCategories,
  #blkItems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
  }
  #blkCategories > a,
  #blkItems > a {
    margin-bottom: 0;
  }
  #blkCategories > a > .desc,
  #blkItems > a > .desc {
    margin-bottom: 0;
  }
  #blkCategories > a > button.basic,
  #blkItems > a > button.basic {
    display: none;
  }
  #blkItems > div.item {
    margin-bottom: 0;
  }
  #blkItems > div.item > .image {
    grid-row: 1 / 4;
  }
  #blkItems > div.item > .buttons {
    grid-column: 2 / 3;
    display: flex;
    justify-content: flex-end;
  }
  #blkItems > .desc {
    margin-bottom: 0;
  }
  #blkItems > button.basic {
    display: none;
  }
}
@media screen and (min-width: 716px) {
  .jquery-modal .modal {
    min-width: 716px;
  }
  .jquery-modal img {
    width: auto;
  }
}
@media screen and (min-width: 1087px) {
  #blkCategories,
  #blkItems {
    grid-template-columns: repeat(3, 1fr);
  }
}
