.inner-notice-img{
    width: clamp(0px, 93%, 385.02px);
    box-sizing: border-box;
    background-color: none;
    z-index: 10;
    border-radius: clamp(0px, 1vw, 4.14px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
    text-align: center;
    position:relative;
    animation-name: pop-in;
    animation-duration: .18s;
    animation-fill-mode: forwards;
    margin-top:-8vh;
}

.inner-notice-video{
    width: clamp(0px, 93%, 385.02px);
    box-sizing: border-box;
    background-color: var(--bg-color);
    z-index: 10;
    border-radius: clamp(0px, 1vw, 4.14px);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
    text-align: center;
    position:relative;
    animation-name: pop-in;
	animation-duration: .18s;
	animation-fill-mode: forwards;
  margin-top:-8vh;
}

.inner-notice-img img{
    width:100%;
}

.inner-notice-video video{
    width:calc(100% - 20px);
    padding:10px;     
}

.inner-notice-img .swal2-close,
.inner-notice-video .swal2-close {
    position: absolute;
    top: 0;
    right: -10px;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    padding: 0;
    transition: color .1s ease-out;
    border: none;
    border-radius: 0;
    background: 0 0;
    color: #ccc;
    font-family: serif;
    font-size: 2.5em;
    line-height: 1.2;
    cursor: pointer;
    overflow: hidden;
    margin-top: -40px;
}

.swal2-close svg{
    height:20px;
    width:20px;
}

.inner-video-text{
    padding: 10px 0px 20px;
    font-size:15px;
    font-family: var(--font-family-roboto);
    color: var(--text-pm1-title);
}

@-webkit-keyframes pop-in {
    0% {
      -ms-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0)
    }

    70% {
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1)
    }

    to {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1)
    }
  }

  @keyframes pop-in {
    0% {
      -ms-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0)
    }

    70% {
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1)
    }

    to {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1)
    }
}

.fix-pop-div{
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: 9999;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fix-inner-pop{
  width: clamp(0px, 65vw, 269.1px);
  padding: clamp(0px, 5vw, 20.7px);
  border-radius: clamp(0px, 2vw, 8.28px);
  background-image: linear-gradient(180deg, #303030, #131313);
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 2.5vw, 10.35px);
  border: var(--sub-color) clamp(0px, 0.25vw, 1.035px) solid;
  position: relative;
}

.fix-hr{
  width: 100%;
}

.fix-pop-close-btn{
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.fix-pop-close-btn svg{
  /* width: clamp( 0px, 5vw, 20.7px);
  height: clamp( 0px, 5vw, 20.7px); */
  width: 40px;
  height: 40px;
  display: block;
}