.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    transition: all 300ms linear;
    z-index: 103;
}

.activated-modal {
    visibility: visible;
    opacity: 1;
    z-index: 103;
}

.modal__content {
    border-radius: 5px;
    position: fixed;
    top: 50%;
    background: transparent;
    width: calc(100% - 60px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 2;
}

@media only screen and (max-width: 1100px){
    .modal__content {
        max-width: 900px;
    }
}


@media only screen and (max-width: 1366px){
    .modal__content {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 1400px){
    .modal__content {
        max-width: 1100px;
    }
}


@media only screen and (min-width: 1600px){
    .modal__content {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1920px){
    .modal__content {
        max-width: 1400px;
    }
}

.iframe__container {
  position: relative;
  padding-bottom: 56.25%;
}
.iframe__container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button.modal__close {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border: none;
  z-index: 1;
  padding: 0;
  margin: 0;
  height: 50px;
  width: 50px;
  border-radius: 100%;
}
.modal__close__img{
    width: 22px;
}


@media only screen and (max-width: 767px){

    .modal__content {
        width: calc( 100% - 40px );
        overflow-y: auto;
    }

    .modal__close {
        top: 20px;
        padding: 10px;
        right: 20px;
    }

}