.wrap-center-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap column;
    text-align: center;
    height: 100vh;
  }
  
  .modal-window {
    position: fixed;
    z-index: 100;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -80%) scale(0.9);
    width: 520px;
    max-width: 95%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.18s ease-in-out;
    visibility: hidden;
    opacity: 0;
    color: blakck;
  }
  .modal-window.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  .modal-window__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: column wrap;
    height: 100%;
    min-height: inherit;
    position: relative;
  }
  .modal-window__heading{
    margin-top: 20px;
    color:black;
  }
  .modal-window__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .modal-close {
    border-radius: 4px;
    background: #006ce4;
    color:white;
    padding: 12px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    width: 200px;
    margin-top:20px;
  }
  .hidden {
    display: none;
  }
  .modal__red-zone {
    background: #17ff9a;
    color: blue;
    /* margin-top: 50px; */
    padding: 20px;
    /* position: absolute; */
    bottom: 0px;
    font-size: 20px;
    font-weight: 600;
  }
  .circle {
    content: " ";
    display: inline-block;
    position:absolute;
    margin: 15px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s;
    background-color: #17ff9a;
    top: -20px;
    left: -10px;
  }
  .modal-image_container {
    position: relative;
  }
  .modal-image_container img {
    position: relative;
    z-index: 2;
   }
  .blink-class {
    animation: blink 1s linear infinite;
    height: 170px;
    width: 170px;
    top: -30px;
    left: -20px;
  }

  .overflow-hidden{
    overflow: hidden;
  }
  @keyframes blink {
    25% {
      opacity: 0.5;
    }
    50% {
      opacity: 0;
    }
    75% {
      opacity: 0.5;
    }
  }
@media only screen and (max-width: 600px) {
    .modal-window {
        width:80%;
        height: 50vh;
        top:35vh;
    }
    .modal-window__title {
    }
}