.shop-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  background-image: url("../../assets/shop-bacground.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.border {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  -webkit-transition: border 0.4s ease-in-out;
  transition: border 0.4s ease-in-out;
  border: 64px solid #fbfbfb;
}

.shop-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  /* margin-left: auto;
  margin-right: auto; */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50%;
}

.shop-buttons a {
  text-decoration: none;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.15em;
  color: #fbfbfb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 105px;
  height: 53px;
  border: 2px solid #fbfbfb;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.shop-buttons a:first-child {
  position: absolute;
  left: 10%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.shop-buttons a:last-child {
  position: absolute;
  left: 90%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.shop-buttons a span {
  pointer-events: none;
}

.shop-buttons a:hover {
  width: 137px;
  height: 69px;
}

@media only screen and (max-width: 769px) {
  .border {
    border-left: 20px solid #fbfbfb;
    border-right: 20px solid #fbfbfb;
  }

  .shop-buttons {
    width: 80%;
  }
}

@media only screen and (max-width: 600px) {
  .border {
	  border: 64px solid #fbfbfb!important;
    border-left: 10px solid #fbfbfb!important;
    border-right: 10px solid #fbfbfb!important;
  }

  .shop-buttons {
    height: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .shop-buttons a:first-child {
    position: static;
    -webkit-transform: none;
    transform: none;
  }

  .shop-buttons a:last-child {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
}

/*# sourceMappingURL=shop.css.map */