#embdedShop {
  justify-content: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 10px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px; }

@media only screen and (max-width: 860px) {
  #embdedShop iframe {
    height: 720px; } }

@media only screen and (max-width: 750px) {
  #embdedShop iframe {
    height: 1380px; } }

.shopLink {
  border: solid #353535 3px;
  border-radius: 5px;
  background-color: #353535;
  width: 280px;
  height: 360px;
  cursor: pointer;
  justify-content: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 80% 20%;
  grid-template-rows: 80% 20%;
  text-align: center; }
  .shopLink .shopImg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: center; }
    .shopLink .shopImg img {
      -o-object-fit: cover;
         object-fit: cover;
      height: 100%;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      margin-left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
  .shopLink:hover {
    -webkit-box-shadow: 0em 0em 1em rgba(0, 0, 0, 0.3);
            box-shadow: 0em 0em 1em rgba(0, 0, 0, 0.3); }
  .shopLink .shopTitle {
    color: white;
    margin: auto;
    padding-left: 5px;
    padding-right: 5px;
    font-family: "Roboto", sans-serif;
    word-wrap: break-word;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px; }
