.loader_big {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

.loader_small {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 2s linear infinite;
  display: inline-block;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fs-16 {
    font-size: 16px;
}

.tooltip-container {
    padding: 0;
    margin: 0;
    position: relative;
}

.tooltip-container .tooltip-content {
    position: absolute;
    border: 1px solid lightgrey;
    background: rgb(255, 255, 255, .9);
    min-width: 200px;
    top: 30px;
    right: 0;
    z-index: 999;
    overflow: hidden;
    padding: .4em;
    border-radius: 8px;
    box-shadow: 4px 4px 5px 2px rgba(0, 0, 0, 0.2);
    display: none;
}

.tooltip-container:hover .tooltip-content {
    display: block;
}

input.smallInput:read-only {
    background-color: rgba(239, 239, 239, 0.3);
    color: rgb(84, 84, 84);
    border-color: rgba(118, 118, 118, 0.3);
}

select.readonly { pointer-events: none; background-color: rgba(239, 239, 239, 0.3); }

.horizontal-radio {
  display: inline-flex;
  align-items: center;
}

table.full-width {
    width: 100%;
}