.ntf{
    padding: 12px 7px;
    border-radius: 5px;
    margin: 5px 0;
    font-size: 14px;
    width: 100%;
}

.ntf-error{
    background: #f8d7da;
    color: #bf1717;
    border: 1px solid #fdc5cb;
    padding: 12px 7px;
}

.ntf-success{
	background: #c7fbc1;
    color: #144807;
    border: 1px solid #a8efa0;
}

.hide{
   display: none;
}

.ntf-warning{
    background: #fff4bf;
    color: #c39b0b;
    border: 1px solid #ffdba5;
}


.fix-loader{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(226 241 240 / 60%) !important;
    top: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
     z-index: 999999999;
}

.fix-loader.active{
    display: flex;
}

.entry-header{
        display: none;
}

ul.error-danger {
    border: 1px solid #dfa1a1;
    border-radius: 5px;
    background: #f7d2d2;
    margin-top: 10px;
}

li.text-error {
    color: #a10f0f;
    padding-right: 16px;
    margin-top: -20px;
}
.text-error {
    color: #a10f0f;
    margin-top: 5px;
}


.modal.active{
   display: block !important;
    z-index: 99999;
    max-width: 100% !important;
}
.gm-error{
    display: none;
}
.gm-error.has-error{
    display: block;
    width: 100%;
}
.pointer{
    cursor: pointer;
}
/* HTML: <div class="loader"></div> */
.graymatters-loader {
  width: 40px;
  aspect-ratio: 1;
  --c: linear-gradient(#0cb5ac 0 0);
  --r1: radial-gradient(farthest-side at bottom,#0cb5ac 93%,#0cb5ac);
  --r2: radial-gradient(farthest-side at top   ,#0cb5ac 93%,#0cb5ac);
  background: 
    var(--c) ,var(--r1),var(--r2),
    var(--c) ,var(--r1),var(--r2),
    var(--c) ,var(--r1),var(--r2);
  background-repeat: no-repeat;
  animation: l2 1s infinite alternate;
}


.gm-tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #ffffff;
  background: #0cb5ac;
  min-width: 100px;
  left: 27px;
  /* font-size: 20px; */
}

.gm-tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  bottom: -3px;
  left: 12px;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: #0cb5ac;
}

input[name=schedule]:checked + .gm-tooltip,
.with-gm-tooltip:hover .gm-tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  top: -30px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 5;
}

span.gm-tooltip.warning {
    background: #e75858;
    color: #fff;
}

.gm-tooltip.warning::before {
    background: #e75858;
}



label.with-gm-tooltip {
    position: relative;
}

@keyframes l2 {
  0%,25% {
    background-size: 8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
 }
 50% {
    background-size: 8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
 }
 75% {
    background-size: 8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
 }
 95%,100% {
    background-size: 8px 100%,8px 4px, 8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(0% - 2px),100% calc(100% + 2px);
 }
}