
:host {
    --bg-primary: #07f;
}

:root {
    --background_color: red;
    --text__shadow: rgba(255,255,255,0.4);
}

b, strong {
    font-weight: bolder;
}

.bold {
    font-weight: 700;
}

.btn {
    align-items: center;
    border: 2px solid transparent;
    border-radius: 4px;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px rgba(0,0,0,0.14),0px 1px 5px rgba(0,0,0,0.12);
    cursor: pointer;
    display: inline-flex !important;
    font-weight: 700;
    justify-content: center;
    line-height: 1.5;
    margin: 0.08mm;
    outline: none;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    white-space: nowrap;
}

.btn:active {
    border: 2px solid rgba(0,0,0,0.28);
}

.btn:hover:not(:disabled) {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
        0px 2px 2px 0px rgba(0, 0, 0, 0.14),
        0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.btn.caution {
    background-color: rgb(255,140,0);
}

.btn.circle {
    border-radius: 50% !important;
}

.btn:disabled {
    background-color: #c0c0c0 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.danger {
    background-color: red;
    color: white;
}

.btn.dark {
    background-color: var(--bg-primary);
    color: white;
}

.btn.default {
    background-color: #999;
}

.btn.fab {
   background-color: #ffa500;
   border-radius: 50%;
}

.btn.flat {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: black;
}

.btn.large {
    font-size: 1.2em;
    padding: 0.4rem;
}

.btn.medium {
    font-size: 1.0em;
}

.btn.navigation {
    background-color: #ccc;
    color: white;
}

.btn.primary {
    background-color: rgb(0, 131, 248);
    color: white;
}

.btn.round {
    border: 2px solid rgba(0,0,0,0.24);
    border-radius: 12px;
}

.btn.secondary {
    color: #fff;
    background-color: #6c757d;
}

.btn.shadow {
    box-shadow: 0 3px 1px -2px rgba(0,0,0,0.24), 0 2px 2px 0 rgba(0,0,0,0.16), 0 1px 5px 0 rgba(0,0,0,0.08);
}

.btn.small {
    font-size: 0.8em;
    line-height: 1.0;
}

.btn.success {
    background-color: rgb(50,171,87);
    color: white;
}

.btn.warning {
   background-color: rgb(240,0,0);
   color: white;
}

button {
    cursor: pointer;
    text-transform: uppercase;
}

.icon {
   cursor: pointer;
   pointer-events: all;
}

   .icon.caution {
      background-color: rgb(0,18,21);
      border-radius: 4px;
      color: rgb(247,231,87);
      padding:2px 4px;
   }

.info {
   background-color:rgb(0, 131, 248);
   border-radius: 50%;
   color: white;
   display: inline-block;
   height: 20px;
   position: relative;
   text-align: center;
   width:20px;
}

.info:hover::before {
    background-color: rgb(0, 131, 248);
    border-radius: 6px;
    content: attr(data-info);
    display: block;
    padding: 4px;
    position: absolute;
    top: 20px;
}

.info.left::before, .tooltip.left::before {
    right: 16px;
}

.info.right::before, .tooltip.right::before {
    left: 16px;
}

.interactive {
    pointer-events: all;
}

.italic {
    font-style: italic;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

h1, .h1 {
    font-size: 2.0rem;
}

h2, .h2 {
    font-size: 1.75rem;
}

h3, .h3 {
    font-size: 1.5rem;
}

h4, .h4 {
    font-size: 1.25rem;
}

h5, .h5 {
    font-size: 1.2rem;
}

h6, .h6 {
    font-size: 1rem;
}

.no-interaction {
    pointer-events: none;
    user-select: none;
}

.truncate {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80%;
}

.underline {
    text-decoration: underline;
}

.wrapper {
    position: relative;
}

::-webkit-scrollbar {
    background-color: rgb(215,215,220);
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-button {
    background-color: #6c757d;
    height: 16px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(161,163,164);
}

::-webkit-scrollbar-track {
   background: white;
   box-shadow: inset 0 0 5px whitesmoke;
}

::-webkit-scrollbar-corner {
   background: yellow;
}