html{cursor: default!important;}

/* position */
/* .fixed{position:fixed;}   */
.absolute{position:absolute;}  
.relative{position: relative;} 
.top-0{top:0;} .left-0{left:0;}


.block{display: block;}
/* flex */
.flex{display: flex;} 
.flex-1{flex: 1;} 
.inline-flex{display: inline-flex;} 
.flex-col{flex-flow: column;}
.flex-wrap{flex-wrap:wrap;}
.items-center{align-items: center;} 
.items-baseline{align-items: baseline;} 
.self-baseline{align-self: baseline;} 
.justify-center{justify-content: center;}  
.justify-between{justify-content: space-between;}
.justify-around{justify-content: space-around;}

/* grid */
.grid{display: grid;}
.grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr)); gap:20px} 
.grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));column-gap: 20px;} 
.grid-cols-12{grid-template-columns: repeat(12, minmax(0, 1fr));} 
.col-span-4{grid-column: span 4 / span 4;}
.col-span-6{grid-column: span 6 / span 6;}
.col-span-8{grid-column: span 8 / span 8;}
.col-span-12{grid-column: span 12 / span 12;}
.gap-0{gap: 0;}
.gap-4{gap: 4px;}
.gap-8{gap: 8px;}
.gap-10{gap: 10px;}
.gap-20{gap: 20px;}

@media (min-width: 768px) {
 .md-col-span-8{grid-column: span 8 / span 8;}
}


@media (max-width: 768px) {
    .md-grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr)); gap:20px;} 
}
/* height */
.h-0{height: 0!important;}
.h-12{height: 3rem;} 
.h-24{height: 6rem;} 
.h-48{height: 12rem;}
.h-screen{height: 100vh;} 
.h-full{height: 100%;} 
.min-h-screen{min-height: 100vh;}

/* width */
.w-12{width:3rem;}
.w-24{width:6rem;}
.w-48{width:12rem;}
.w-1-3{width: 33.333333%;}
.w-1-2{width:50%;}
.w-2-3{width:75%;}
.w-3-4{width:85%;}
.w-full{width:100%;} 

/* zindex */
.z-20{z-index: 20!important;} 
.z-50{z-index: 50!important;} 

/* padding */
.p-0{padding: 0!important;} 
.p-3{padding: 0.75rem;} 
.p-5{padding: 1.25rem;} 
.px-3{padding-left: 0.75rem;padding-right: 0.75rem;} 
.px-5{padding-left: 1.25rem;padding-right: 1.25rem;} 
.py-3{padding-top: 0.75rem;padding-bottom: 0.75rem;}
.py-5{padding-top: 1.25rem;padding-bottom: 1.25rem;}
.py-10{padding-top:2.5rem;padding-bottom: 2.5rem;}



/* margin */
.m-0{margin: 0;} 
.mt-0{margin-top: 0;} 
.mt-3{margin-top: 0.75rem;}
.mt-5{margin-top: 1.25rem;}
.mb-0{margin-bottom: 0;}
.mb-3{margin-bottom: 0.75rem;}
.mb-5{margin-bottom: 1.25rem;}
.mb-10{margin-bottom: 2.50rem;}
.mr-2{margin-right: 0.5rem;} 
.ml-0{margin-left: 0;}
.ml-5{margin-left: 1.25rem;}


/* text */
.text-center{text-align: center!important;}

.text-red{color:red;}

/* font */
.font-light{font-weight: 300} 
.font-semibold{font-weight: 600} 
.text-xs{font-size: 0.75rem;line-height: 1rem;}
.text-base{font-size: 1rem;line-height: 1.5rem;}
.text-xl{font-size: 1.25rem!important;line-height: 1.75rem;}
.text-2xl{font-size: 1.5rem!important;line-height: 2rem;}
.text-3xl{font-size: 1.875rem;line-height: 2.25rem;}

.space-x-2 > * + * {margin-left: 0.5rem;}
.space-x-4 > * + * {margin-left: 1rem;}
.space-y-2 > * + * {margin-bottom: 0.5rem;}
.space-y-4 > * + *,
.space-y-4 > * {margin-bottom: 1rem;}
.space-y-6 > * + * {margin-bottom: 1.5rem;}
.space-y-8 > * + *,
.space-y-8 > * {margin-bottom: 3rem;}
.space-y-7 > * {margin-bottom: 2rem;}

.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide{
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all .4s;
}

.show{
  opacity: 1;
  visibility: visible;
  height: auto;
}

.d-none{display: none;}

.flex-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mb-3{margin-bottom: 0.75rem!important;}
.mb-5{margin-bottom: 1.5rem!important;}
.mb-10{margin-bottom: 3rem!important;}

.responsive{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.ba-loader {
    opacity:0;
    visibility: hidden;
    position: absolute;
    top: 10%;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #26966d;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.ba-loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-left: 4px solid #186f91;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
} 

.ba-loader.active{
    opacity: 1;
    visibility: visible;
}
  
.ba-btn-text{
    opacity: 1;
    visibility: visible;
    transition: all ease .4s;
}
.ba-btn-text.inactive{
    opacity: 0;
    visibility: hidden;
}

/*******loader css start********/

#preloader {
  background-color: #337ab7;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483647;
  transition: all 4s ease;
}

.loading {
  width: 100%;
  max-width: 550px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0px auto;
  margin-top: -90px;
}

.loading svg {
  width: 100%;
  height: 100%;
}

.loading #pulsar {
  stroke-dasharray: 281;
  -webkit-animation: dash 2.5s infinite linear forwards;
}


#preloader.active {
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  stroke: transparent;
}



@-webkit-keyframes dash {
  from {
      stroke-dashoffset: 814;
  }
  to {
      stroke-dashoffset: -814;
  }
}


/*******loader css end*******/


/**gdpr**/
.informativa-gdpr-container{
  margin-top: -13px;
  margin-bottom: 10px;
}
a.informativa-gdpr {
  font-size: .90rem;
  text-decoration: underline;
}