/* Promo */
.eacf7-pro-modal {
  box-sizing: border-box;
  width: 350px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  position: relative;
  text-align: center;

  * {
    box-sizing: border-box;
  }

  &-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &-close {
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    font-size: 30px;
    color: #777;
    padding: 10px;
    line-height: normal;
    transition: all .3s ease;

    &:hover {
      color: #333;
    }
  }

  img {
    width: 200px;
    position: absolute;
    top: -80px;
  }

  h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 2px;
  }

  h2 {
    color: $eacf7_color;
    margin: 20px 0 20px 0;
    font-size: 2.5rem;
    font-weight: bold;
  }

  p {
    font-size: .875rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.2;
    margin-top: 7px;
  }

  a {
    padding: 10px 20px;

    &:hover {
      color: #fff;
    }

  }

  .discount {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin: 20px 0;
    line-height: normal;

    &-special {
      color: $eacf7_color;
      position: absolute;
      font-size: 22px;
      top: -25px;
      background: #FFF;
      padding: 5px;
      text-transform: uppercase;
    }

    &-text {
      border: 2px solid $eacf7_color;
      font-size: 28px;
      padding: 10px 15px;
      border-radius: 5px;
      font-weight: bold;
      color: $eacf7_color;
    }
  }

  .timer {
    display: flex;
    align-items: center;
    text-align: center;

    & > div {
      display: inline-block;
      margin: 0 14px;
      width: 47px;
      background-size: contain;
      line-height: 20px;


      span {
        &:first-child {
          font-size: 28px;
          color: #333;
          height: 47px;
          margin: 0 0 2px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          z-index: 1;
          border: 1px dashed #ddd;
          border-radius: 5px;
          font-weight: 500;
        }

        &:last-child {
          font-family: Arial, serif;
          font-size: 12px;
          text-transform: uppercase;
          color: #555;
        }

      }

    }

  }

  &-actions {
    margin-top: 15px;

    a {


      &:hover {
        transform: scale(1.05);
      }
    }

  }

}