.OpenfactoryVideoModal {
    cursor: pointer;
}

.factoryVideoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 91000;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s;
}

.factoryModalClose-wrp {
    position: absolute;
    top: 30px;
    right: 30px;
}

.factoryModalClose {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    appearance: none;
}

.factoryModalClose::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 0;
    border-top: 1px solid #0075c1;
    rotate: 45deg;
}

.factoryModalClose::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 0;
    border-top: 1px solid #0075c1;
    rotate: -45deg;

}

.factoryVideoModal .factoryModalInner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.factoryVideoModal iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.factoryVideoModal.isShow {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

.factoryModalFootClose {
  width: 250px;
  margin: 40px auto 0;
}

.factoryModalFootClose button {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  appearance: none;
  transition: background-color 300ms ease-out;
}

.factoryModalFootClose button:hover,
.factoryModalFootClose button:active {
  background: #0075c1;
}
