@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* POPUP CSS */
.size-chart-popup-overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000069;
    z-index: 99;
  }
  .size-popup {
    display: none;
    position: fixed;
    top: 5vh;
    left: 20vw;
    width: 60%;
    height: 90%;
    z-index: 999;
  }
  .close-btn {
    position: absolute;
    width: 35px;
    height: 35px;
    z-index: 9999;
    background: #5d5d5d;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 4px 1px;
    border: 1px solid #fafafa;
    box-shadow: 1px 1px 5px #00000069;
    top: -10px;
    right: -10px;
    text-shadow: 2px 2px 6px #000;
  }
  .close-btn i {
    top: 0px;
    position: relative;
    left: 1px;
  }
  .size-popup iframe {
    border: 0;
    box-shadow: 0px 0px 50px #000;
  }
  .size-chart-popup img {
      width: 30px;
      height: 30px;
      top: 8px;
      position: relative;
  }
  @media only screen and (max-width:768px) {
    .size-popup {
      width: 90%;
      height: 90%;
      top: 5vh;
      left: 5vw;
    }
  }