.tel {
    font-size: 16px;
}

.delayed-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100vw;
  height: 100vh;
  display: flex;
  display: none;
  align-items: center;
  align-items: center;
  justify-content: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.6);
}

.delayed-content {
  position: relative;

  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border-radius: 0;
}

.delayed-img_mob {
  display: none;
}

.delayed__btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;

  width: 40px;
  height: 40px;

  background: inherit;
  border: 0;

  cursor: pointer;
}

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

@media (max-width: 1024px) {
  .delayed-img_mob {
    height: 500px;
    display: block;
  }

  .delayed-img {
    display: none;
  }

  .delayed__btn-close {
    top: 10px;
    right: 10px;

    padding: 0;
    width: 14px;
    height: 14px;
  }

  .delayed__btn-close svg {
    width: 12px;
    height: 12px;
  }
}
