@import "var";

.@{prefixName}-msg {
  text-align: center;

  &__body {
    padding: 34px 15px;
  }
  &__icon {
    padding-top: 60px;
  }
  &__title {
    font-size: @msg-title-text-size;
    color: @msg-title-text-color;
    padding: 0 50px;
  }
  &__description {
    font-size: @msg-description-text-size;
    color: @msg-description-text-color;
    padding: 0 50px;
  }
  &__title + &__description {
    margin-top: 20px;
  }
  &__buttons {
    margin-top: 30px;

    &--inline {
      display: flex;
      margin-left: -@msg-button-margin-horizontal;
      margin-right: -@msg-button-margin-horizontal;
      justify-content: space-between;

      .@{prefixName}-msg__button {
        flex: 1;
        margin: 0 @msg-button-margin-horizontal;
      }
    }
  }
  &__button {
    display: block;
    margin: @msg-button-margin-vertical 0;
  }
  &__footer {
    font-size: @msg-footer-text-size;
    color: @msg-footer-text-color;

    &--fixed {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      padding: @msg-footer-padding;
      text-align: center;
      box-sizing: border-box;
    }
  }
}