* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    padding-top: 2.1em;
}

.logo-64 {
    width: 64px;
    height: 64px;
    line-height: 64px;
}

.body-scroll {
    overflow-y: scroll;
}

.busy {
    position: fixed;
    top: 0;
    left: 0;
    height: 7px;
    width: 100%;
    z-index: 2250;
}

.topmost{
    z-index: 3000;
}

.auth-form {
    width: 100%;
    max-width: 400px;
}

.img-contained {
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    width: 72px;
    height: 72px;
}

.menu-item-selected {
    border-bottom: 3px solid #555;
}

.bg {
    background-color: rgb(234, 234, 234);
}

.text-bg {
    color: rgb(233, 233, 233);
}

.btn-like:hover {
    cursor: pointer;
    background-color: #212529;
    color: #FFF;

}

.btn-like {
    background-color: #fff;
    color: #333;
}

.btn-hover:hover {
    cursor: pointer;
}

.bi-xl {
    font-size: 7rem;
}

.smaller {
    font-size: smaller;
    /* line-height: 1em; */
}

.smallest {
    font-size: x-small;
}

.larger {
    font-size: larger;
}

.largest {
    font-size: x-large;
}

.highlighted {
    color: rgb(226, 53, 154);
}

.lowlighted {
    color: rgb(193, 193, 193);
}

.btn-big {
    width: 120px;
}

.business-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    line-height: 60px;
}

.spinner-fs-4 {
    width: 24px;
    height: 24px;
}

.spinner-border {
    border-width: 2px;
}

.popover {
    z-index: 1000;
}

.custom-popover {
    box-shadow: 0 0 12px #c6c6c6;
}

.offcanvas {
    z-index: 2000;
}

/* tagify */

.customLook{
    --tag-bg                  : #0052BF;    
    --tag-hover               : #CE0078;
    --tag-text-color          : #FFF;
    --tags-border-color       : silver;
    --tag-border-radius       : 25px;
    --tag-text-color--edit    : var(--bs-emphasis-color);
    --tag-remove-bg           : var(--tag-hover);
    --tag-pad                 : .6em 1em;
    --tag-inset-shadow-size   : 2em;
    --tag-remove-btn-bg--hover: black;    
  
    display: inline-block;
    min-width: 0;
    border: none;
  }
  
  .customLook .tagify__tag{
    margin-top: 0;
  }

  .customLook .tagify__tag__removeBtn{
    opacity: 0;
    transform: translateX(-6px) scale(.5);
    margin-left: -3ch;
    transition: .12s;
  }
  
  .customLook .tagify__tag:hover .tagify__tag__removeBtn{
    transform: none;
    opacity: 1;
    margin-left: -1ch;
  }
  
  .customLook + button{
    color: #0052BF;
    font: bold 1.4em/1.65 Arial;
    border: 0;
    background: none;
    box-shadow: 0 0 0 2px inset currentColor;
    border-radius: 50%;
    width: 1.65em;
    height: 1.65em;
    cursor: pointer;
    outline: none;
    transition: .1s ease-out;
    margin: 0 0 0 5px;
    vertical-align: top;
  }
  
  .customLook + button:hover{
    box-shadow: 0 0 0 5px inset currentColor;
  }
  
  .customLook .tagify__input{
    display: none;
  }