/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.custom-notice-uk-comparison-table{
    padding: 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: normal;
}
.uk-comparison-table-shortcode{
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #c1d8fa3d;
    width: 50%;
    text-align: center;
}
.uk-comparison-table-shortcode.full-width {
    background-color:#d4ece1b5;
    border-left: 4px solid #459c73b5;
}

.uk-comparison-table-shortcode .shortcode-txt{
    cursor: pointer;
    font-size: 16px;
    line-height: 18px;
    position: relative;
}
.uk-comparison-table-shortcode .shortcode-txt::after {
    content: attr(tooltip);
    width: 140px;
    top: -20px;
    left: calc(50% - 70px);
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
  }

  .uk-comparison-table-shortcode .shortcode-txt::before,
  .uk-comparison-table-shortcode .shortcode-txt::after {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
    transform: translateY(-10px);
    transition: all 300ms ease;
  }

  .uk-comparison-table-shortcode .shortcode-txt:hover::before,
  .uk-comparison-table-shortcode .shortcode-txt:hover::after {
    opacity: 1;
    transform: translateY(-10);
  }
.uk-comparison-table-shortcode .label{
    color: grey;
    font-size: 12px;
    line-height: 14px;
    padding-top: 10px;
}