.components-premium-render {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: auto;
  padding: 10px 5px;

  .premium-wrapper {
    display: flex;
    flex-direction: column;
  }

  .premium-text {
    color: #ff4a4a;
    font-size: 14px;
    transform: translate3d(0, 0, 0);

    &.bold {
      font-weight: bold;
    }

    & + .premium-text {
      margin-top: 5px;
    }

    &.large {
      font-size: 18px;

      &:after {
        premium: attr(data-after);
        font-size: 14px;
        padding-left: 5px;
      }
    }

    &.small {
      font-size: 12px;
    }
  }

  .change-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-left: 5px;

    .icon {
      font-size: 12px;
      color: #9e9e9e;
      transform: rotate(90deg);
      transition: transform 1s 0;

      &.arrow-up {
        transform: rotate(-90deg);
      }
    }
  }
}

.components-premium-popup-wrapper {
  position: relative;
  z-index: 10;

  .popup-box {
    border-radius: 8px 8px 0 0;
  }

  .pop-box-title {
    position: relative;
    height: 50px;
    padding: 10px 20px;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
  }

  .module-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 1;

    .icon {
      position: absolute;
      top: 50%;
      left: 50%;
      color: #999;
      font-size: 18px;
      transform: translate(-50%, -50%);
    }
  }

  .content {
    padding: 10px 15px 80px;

    .title {
      line-height: 28px;
      font-size: 14px;
      font-weight: 500;
      color: #000;
    }

    .insure-premium-item {
      display: flex;
      justify-content: space-between;
      margin-top: 4px;
      line-height: 24px;
      font-size: 14px;
      color: #9e9e9e;

      .premium {
        color: #ff4a4a;
        font-size: 15px;

        .flag {
          font-size: 12px;
        }
      }
    }
  }
}
