@charset "utf-8";
/* CSS Document */

/* Product Selection Header CSS */

.select_header {
    display: block;
	max-width: 100%;
	margin: 0 5%;
    text-align: center;
    color: #FFF;
    background-color: #0088bb;
}

/* Product Selection Flex Box CSS */

.product {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 21px;
  max-width: 100%;
  margin: 0 auto;
}

/* Product Selection Image CSS */

.product img {
  width: 144px;
  height: 144px;
  margin: 0;
  border: 1px solid #0088bb;
}

/* Product Selection Text Link CSS Properties*/

.sel_link {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 11px;
}

/* Selection Link Text Position & Other CSS */

.sel_text {
  position: absolute;
  left: 50%;
  top: 95%;
  transform: translate(-50%, -95%);
  margin: 0 auto;
  width: 130px;
  border: 1px solid black;
  background-color: white;
  z-index: 2;
  }

/*Product Text Link Hover Effects CSS */

.sel_link:hover {
  color: #0086b3;
  background-color: #0088bb;
}

