/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

.cursor-pointer {
  cursor: pointer !important;
}
label {
  color: #ffb335;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 8px;
}

.text-bold {
  font-weight: bold;
}

.table-space {
  margin-top: 20px;
}

.main-color {
  color: #ffb335;
}

.float-right {
  float: right;
  margin-top: 20px;
}

.close {
  float: right;
}

div.alert {
  position: absolute;
  top: 15%;
  width: 80%;
  left: 10%;
  z-index: 9999;
}

  .info {
    --size: 1.25rem;
    position: relative;
    display: inline-grid;
    place-items: center;
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    border-radius: 50%;
    border: 1px solid currentColor;
    /*/ font-size: 0.9rem;*/
    font-weight: 600;
    color: #222;
    cursor: help;
    user-select: none;
  }

  .info::before {
    content: "i";
  }

  /* Tooltip bublina vpravo */
  .info::after {
    content: attr(data-tip);
    position: absolute;
    top: 50%;
    left: calc(100% + 8px); /* vedle ikonky s mezerou */
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(20,20,20,.95);
    color: #fff;
    font-size: .85rem;
    line-height: 1.2;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    pointer-events: none;
    opacity: 0;
    transition: opacity .12s ease-in-out, transform .12s ease-in-out;
    transform-origin: left center;
    translate: 4px 0;
    z-index: 9999; /* nad Bootstrapem */
  }

  .info:hover::after,
  .info[data-open="true"]::after {
    opacity: 1;
    translate: 0 0;
  }