clarms-plugins-modal1.scss 1.99 KB
@import '@/styles/_support';

.comp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  @extend .fcc;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba($color: #000000, $alpha: 0.7);
}

.modal {
  position: relative;
  @extend .bb;
  width: 63.333333rem;
  // height: 28.5rem;
  border-radius: .8333rem;
  background-color: #ffffff;
  padding: 3.5rem 2rem 2.5rem;
  border: .083333rem solid $cOrange;


  .content {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 10rem 8.333333rem;

      .info-icon {
          width: 10rem;
        min-width: 6rem;
          img {
              width:100%;
          }
      }

      .message {
          margin-left: 1.666667rem;
          font-size: 1.333333rem;
          font-weight: 600;
          color: $cOrange;
          letter-spacing: .083333rem ;
          text-align: left;
          line-height: 1.5;

          span {
              cursor: pointer;
              text-decoration: underline;
          }
      }
  }

  .close {
    cursor: pointer;
    img {
      width: 1.666667rem ;
      position: absolute;
      right: -2.5rem;
      top: -1.666667rem ;
    }
  }
}


@media (max-width: 800px) {
    .modal {
      // height: 28.5rem;
      padding: 3rem 1.5rem;
      width: 80%;
      height: auto;
  
      .content {
        padding: 5rem 4rem;
      }
      .close {
        display: none;
      }
    }
  }

  @media (max-width: 700px) {
    .modal {
      // height: 28.5rem;
      padding: 3rem 1.5rem;
      width: 80%;
      height: auto;
  
      .content {
        padding: 4rem 2rem;
      }
      .close {
        display: none;
      }
    }
  }



@media (max-width: 450px) {
    .modal {
      // height: 28.5rem;
      padding: 3rem 1.5rem;
      width: 90%;
      height: auto;
  
      .close {
        display: none;
      }
      .content {
        padding: 2rem .5rem;
      }
    }
  }