.bg-botle-azured {
    background-image: url(/img/blue-bg-2x.png);
}
.bg-green {
    background-color: #06c18c;
}
.bg-violet {
    background-color: #4c3bca;
}
.border-underline {
    border-bottom: 1px solid white;

}

.txt-white {
    color: #fff!important;
}
.txt-violet {
    color: #4c3bca!important;
}
.txt-green {
    color: #06c18c!important;
}

.btn-round-green {
    color: #fff;
    background-color: #06c18c;
    border-color: #06c18c;
    border-radius: 20px !important;
    text-decoration: none;
}

.btn-round-violet {
    color: #fff;
    background-color: #4c3bca;
    border-color: #4c3bca;
    border-radius: 20px !important;
    text-decoration: none;
}

.bg-violet {
    --bs-bg-opacity: 1;
    background-color: #4c3bca !important;
}

.loader { 
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 50px;
    height: 50px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index:9000;
}

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