.Box-wrapper {
  margin-bottom: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  transition: all .3s ease;

  &:hover:not(.--open) {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
  }
}

.Box {
  border-radius: 4px;
  text-align: left;
  border: 1px solid #eff3f6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #fff;
  height: 96px;
  transition: all .3s ease;

  &.--open {
    cursor: pointer;
    border-bottom: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    border-top: 4px solid #02bf6f;
    border-right-style: hidden;
    border-left-style: hidden;
  }

  &.--no-hover {
    cursor: default;
  }
}

.Box-content {
  background: #fff;
  padding: 40px;
  width: 80%;
  margin: auto;
  border-radius: 0 0 4px 4px;

  &.--full-size {
    width: auto;
    padding: 0;
  }
  &.--small-size {
    width: 65%;
  }
}

.Box-header {
  display: flex;
  align-items: center;
  padding: 25px;
  border: 1px solid #eff3f6;
  border-width: 0 1px;
}

.Box-border {
  border: 1px solid #EFF3F6;
  border-radius: 0 0 4px 4px;
  background: #fff;
}

.Box-arrow {
  font-size: 30px;
  font-weight: bold;
  width: 30px;
  text-align: right;
}

.Box-icon {
  margin-right: 25px;
  margin-left: 5px;
  color: @primary-color;
}

.Box-title {
  font-size: 16px;
  padding-right: 20px;
  color: #2C3336;
  letter-spacing: 0.5px;
  line-height: 24px;
}

.Box-hint {
  font-size: 14px;
  color: #9FA6AD;
  flex: 1;
  line-height: 22px;
  letter-spacing: 0.25px;
}

.Box-done {
  border: 0;
  height: 40px;
  flex: 1;
  text-align: right;

  button {
    border: 1px solid #DEE4E8;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 15px;
    box-shadow: none;
    margin-left: auto;
  }
}

.Box-continue {
  border-top: 1px solid #e8ecf3;
  padding: 20px;
}

.hide {
  display: none;
}

.Box-extra-info {
  margin-left: auto;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.4px;
  color: #2C3336;
}
