@import '../settings/base';

$dialog_css_prefix: #{$css_prefix}_c_dialog;

.#{$dialog_css_prefix} {
  position: relative;
  padding: 24px 32px;
  width: 420px;
  border: solid 1px #e0e0e0;
  border-radius: 2px;
  background-color: #fff;

  &__wrapper {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }

  &__title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
  }

  &__body {
    margin-top: 8px;
  }

  &__content {
    font-size: 14px;
    line-height: 1.5;
    color: #333;

    &--with_title {
      color: #666;
    }
  }

  &__footer {
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: flex-end;
  }

  &__button {
    &:not(:first-child) {
      margin-left: 20px;
    }
  }

  &__close {
    position: absolute;
    top: 0;
    right: -40px;
    font-size: 24px;
    color: #cccccc;
    &:hover {
      color: #ffffff;
    }
  }
}