/*!
 * Default utility classes for Dai Artista.
 */

.h-100 {
    height: 100% !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fc-white {
    color: #ffffff !important;
}

.fc-black {
    color: #000000 !important;
}

.fc-muted {
    color: #6c757d !important;
}

.fc-gold {
  background: linear-gradient(
    180deg,
    #fff6d9 0%, 
    #f7d07a 20%, 
    #cfa44b 50%, 
    #b8860b 75%, 
    #f7e7b5 100%
  );
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(255, 220, 120, 0.4),
    0 0 20px rgba(255, 200, 80, 0.2),
    1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  display: inline-block;
}

.bg-cream {
    background-color: #f4f1ee !important;
}

.bg-dark-overlay {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.bg-none {
    background-color: transparent !important;
}

.rounded-soft {
    border-radius: 0.5rem !important;
}

.shadow-soft {
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.08) !important;
}


[class*="js"] {
	cursor: pointer;
}

.btn-wrapper {
    display: inline-block;
}

.form-check-input{
	margin-top: .05rem
}
.consent-field {
	padding: 10px 35px;
}

.loading {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.loading:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25) url('img/loading.webp') center center /auto 25px no-repeat;
	z-index: 3;
}