@import url('./global.css');

.shop {
    padding: 200px 0 150px 0;
}
.shop-wrapper {
  display: flex;
}
.shop-left{
    width: 25%;
}
.shop-right{
    width: 75%;
    padding: 10px;
}

.gallery-attribute-btn {
  width: 200px;
  height: 50px;
  background: transparent;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-bottom: 5px solid #000000;
  border-right: 5px solid #000000;
  border-radius: 100px;
  font-family: var(--secondary-font-family);
  font-size: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
  padding-left: 30px;
  margin: 5px;
}

.drop-down-icon {
  position: absolute;
  right: 20px;
}

.shop-grid {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(5, 1fr);
}

.item-container {
  position: relative;
  border: 1px solid #000000;
}

.item-img {
  width: 100%;
  height: 100%;
}

.item-info {
  background: rgba(196, 196, 196, 0.1);
  box-shadow: inset 10.2667px -10.2667px 10.2667px rgba(149, 149, 149, 0.1), inset -10.2667px 10.2667px 10.2667px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20.5333px);
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--secondary-font-family);
  color: white;
  padding: 2px;
}

.item-info-name {
  font-size: 12px;
}

.item-info-desc {
  font-size: 14px;
}

.connect-wallet-alert {
  width: 100%;
  height: 100%;
  background-color: #ffffffaa;
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connect-wallet-btn .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: -120%;
  left: 50%;
  margin-left: -60px;
}

.connect-wallet-btn .tooltiptext::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.connect-wallet-btn {
  width: 450px;
  height: 70px;
  background: var(--primary-color);
  margin-right: 30px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-bottom: 5px solid #000000;
  border-right: 5px solid #000000;
  border-radius: 100px;
  font-family: var(--primary-font-family);
  font-size: 25px;
  font-weight: 100;
  color: white;
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1px black;
  /* border-bottom: 1px dotted black; */
}

.connect-wallet-btn:hover .tooltiptext {
  visibility: visible;
}