/* Backgrounds */
.bg-blue {
    background-color: #2670B9;
}

.bg-blue-electric {
    background-color: #35C1CE;
}

.bg-green {
    background-color: #16AD68;
}

.bg-green-classic {
    background-color: #57B946;
}

.bg-green-darked {
    background-color: #C1D72A;
}

.bg-gold {
    background-color: #F3BA51;
}

.bg-pink {
    background-color: #E5158C;
}

.bg-pink-mexican {
    background-color: #E91A2A;
}

.bg-gray {
    background-color: #828387;
}

.bg-brown {
    background-color: #B58737;
}

.bg-orange {
    background-color: #F54A1E;
}

.bg-yellow {
    background-color: #FEF200;
}

.bg-purple {
    background-color: #6D4891;
}

/* Colors */

.text-white {
    color: #fff;
}

/* Display */
.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center !important;
}

/* Effects */

.shadowBrand {
    filter: drop-shadow(0 0 0.75rem #FF6720);
}

.fade-out {
    opacity: 0 !important;
    transition: ease-out 0.3s;
}

.fade-in {
    opacity: 1 !important;
    transition: ease-in 0.3s;
}

.finderActive {
    border: 1px solid #FF6720;
}

/* Positions */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* Sizes */

.w-100 {
    width: 100% !important;
}