/* for home page product cards */
.gl-product-row {
  font-family: 'Lato', sans-serif;
  font-size: 15px !important;
  display: block;
  margin: 0px;
}
.gl-product-row-box {
  float: left;
  width: 100%;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
}
.gl-product-card {
  float: left;
  width: 95%;
  margin-right: 2%;
  margin-bottom: 5%;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 3px;
  border-style: solid;
  border-color: #ffffff;
  text-align: center;
}
.gl-product-card img{
  width: 70%;
}
div.gl-product-model{
  font-weight: bold;
}
.gl-product-card:hover {
  border-color: #b6bde3 !important;
}
img.glboxshadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media only screen and (max-width: 30em) {
	.gl-product-row-box {
    grid-template-columns: 50% 50%;
  }
}
/* for GL-S10 user manuel */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-container, .s10-user-manual > div {
  margin: 10px 20px;
}
@media only screen and (max-width: 30em) {
  .flex-container, .s10-user-manual > div {
    margin: 0px 0px;
  }
}

.gl-link-select {
  position: relative;
  margin: 1.25rem 0;
  max-width: 32rem;
}

.gl-link-select__control {
  position: relative;
}

.gl-link-select__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--md-default-fg-color--light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gl-link-select__trigger {
  align-items: center;
  background: var(--md-default-bg-color);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0.45rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  color: var(--md-default-fg-color);
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 1rem;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.gl-link-select__trigger:hover,
.gl-link-select__trigger[aria-expanded="true"] {
  border-color: var(--md-primary-fg-color);
}

.gl-link-select__trigger:focus-visible {
  border-color: var(--md-primary-fg-color);
  box-shadow: 0 0 0 0.2rem rgba(64, 81, 181, 0.16);
  outline: none;
}

.gl-link-select__value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-link-select__icon {
  color: var(--md-default-fg-color--lighter);
  flex: 0 0 auto;
  font-size: 0.75rem;
  transition: transform 0.18s ease;
}

.gl-link-select__trigger[aria-expanded="true"] .gl-link-select__icon {
  transform: rotate(180deg);
}

.gl-link-select__menu {
  background: var(--md-default-bg-color);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.65rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  margin-top: 0.45rem;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 20;
}

.gl-link-select__option {
  color: var(--md-default-fg-color);
  display: block;
  padding: 0.8rem 0.95rem;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.gl-link-select__option:hover,
.gl-link-select__option:focus-visible {
  background: rgba(64, 81, 181, 0.08);
  color: var(--md-primary-fg-color);
  outline: none;
}

.gl-link-select__fallback {
  margin-top: 0.75rem;
}

.gl-link-select[data-enhanced="true"] .gl-link-select__fallback {
  display: none;
}
