.ant-iframe-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  background-color: #ffffffcc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 999999;
}

.ant-iframe-popup--hidden-scrollbar:before {
  content: '';
  display: block;
  position: fixed;
  width: 25px;
  height: 100%;
  top: 0;
  right: calc(8% - 5px);
  background-color: #ffffff;
  z-index: 2;
  -webkit-box-shadow: inset 3px 0px 4px -2px rgba(0, 0, 0, 0.15);
          box-shadow: inset 3px 0px 4px -2px rgba(0, 0, 0, 0.15);
}

.ant-iframe-popup__active {
  display: block;
}

.ant-iframe-popup__close {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 11px;
  right: calc(8% + 4%);
  border: 0px solid #5C5C65;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.ant-iframe-popup__close:hover {
  background-color: #E4E4E4;
}

.ant-iframe-popup__close:before, .ant-iframe-popup__close:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0%;
  background-color: #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ant-iframe-popup__close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ant-iframe-popup__iframe {
  width: 84%;
  display: block;
  margin: 0 auto;
  height: 100%;
  background-color: #fff;
  /*background-image: url('https://alexandersakulin.com/wp-content/uploads/2017/07/ascom-logo-en.png')*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: 223px 19px;
  border: none;
  overflow: hidden;
  z-index: 1;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

@media (max-width: 950px) {
  .ant-iframe-popup:before {
    display: none;
  }
  .ant-iframe-popup__iframe {
    width: 100%;
  }
  .ant-iframe-popup__close {
    right: 4%;
  }
}
/*# sourceMappingURL=style.css.map */