@import '../core/mixins.scss';
@import "../colors/colors";
@import "../variables";

.fx-modal-no-header {
  text-align: center;
  box-shadow: $box-shadow;

  .fx-modal-header {
    h1 {
      font-size: 20px;
      padding: 32px 16px 8px 16px;
      color: $gray-80;
    }
  }

  .icon-close {
    top: 14px;
    right: 20px;
    font-size: 24px;
  }

  .fx-modal-body {
    position: relative;
    padding: 0 80px;
    margin-bottom: 32px;
    overflow: hidden;

    p {
      margin: 0;
    }
  }

  .fx-modal-footer {
    overflow: hidden;
    padding: 0 0 32px 0;
    text-align: center;

    .btn-group {
      display: block;
    }
  }

  .input-info {
    padding-bottom: 12px;
  }

  .icon-close {
    position: absolute;
    @include transform(rotate(45deg));
    @include transition(0.3s all);
    color: $gray-20;

    fx-icon {
      font-size: 24px;
    }
    &:hover {
      cursor: pointer;
      @include transform(rotate(135deg));
    }
  }
  .tooltip.in {
    opacity: 1;
    max-width: 280px;
    max-height: 350px;
    overflow: auto;
    z-index:9999999;
  }
  .tooltip .tooltip-inner{
    max-width: 280px;
    max-height: 350px;
  }
}


@media screen and (max-width: 768px) {
  .fx-modal-no-header  {
     .fx-modal-header, .fx-modal-body {
       padding: 0 30px;
     }
     .hello-finpass-svg {
       max-width: 105%;
     }
  }
}
