

.text-color-primary {
    color: #1d6cff
}
.text-color-white {
    color: white;
}
.text-color-green {
    color: #89dc65;
}
.text-color-gray {
    color: #a7a7a7;
}

.font-weight-500 {
    font-weight: 500;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.brightness-7 {
    filter: brightness(7) !important;
}

.flex {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.width-available {
    width: -webkit-fill-available;
}
.max-width-500 {
    max-width: 500px;
}
.max-width-600 {
    max-width: 600px;
}

.absolute {
    position: absolute;
}

.font-15 {
    font-size: 15px;
}

.hover {
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover {
        transform: scale(1.02);
    }
}

.border-radius-8 {
    border-radius: 8px;
}