﻿:root {
    --color-green-back: hsl(145, 92%, 87%);
    --color-green-text: #2a9f47;
    --color-error-back: hsl(325, 92%, 87%);
    --color-error-text: #9f2a65;
    --color-info-back: hsl(210, 92%, 87%);
    --color-info-text: #2a6f9f;
    --color-warning-back: hsl(45, 92%, 87%);
    --color-warning-text: #9f802a;
    --color-8quali: #1C5477;
    --color-orange-600: #f54a00;
    --color-green-600: #00a63e;
    --color-red-600: #e7000b;
    --color-yellow-600: #d08700;
    --color-gray-500: #6a7282;
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --color-red-50: #fef2f2;
    --color-yellow-50: #fefce8;
    --color-green-50: #f0fdf4;
    --title-blue: #355D98;
    --btn-bg: #355D98;
    --btn-hover: #2a4a7a;
    --green-600: #16a34a;
    --red-600: #dc2626;
    --text-muted: #717171;
    --info-blue: #4a90e2;
    --text-secondary: #626b79;
    --blue-acc-border: #bedbff;
    --orange-acc-border: #ffd6a8;
    --green-acc-border: #b9f8cf;
    --blue-acc: #eff6ff;
    --orange-acc: #fff7ed;
    --green-acc: #f0fdf4;
    --dot-blue: #3b82f6;
    --dot-orange: #f97316;
    --dot-green: #00a63e;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px
}

.dot-blue {
    background: var(--dot-blue)
}

.dot-orange {
    background: var(--dot-orange)
}

.dot-green {
    background: var(--dot-green)
}

.font-medium {
    font-weight: 500 !important;
}

.border-color {
    border-color: #0000001a;
}

.card-rounded {
    background-color: #fff;
    border-radius: 14px;
    border-width: 1px;
    border-style: solid;
    border-color: #0000001a;
}

.text-info-blue {
    color: var(--info-blue);
}

.font-bold {
    font-weight: 700 !important;
    --tw-font-weight: 700 !important;
}

.text-orange-600 {
    color: var(--color-orange-600);
}

.text-green-600 {
    color: var(--color-green-600);
}
.text-red-600 {
    color: var(--color-red-600);
}
.text-yellow-600 {
    color: var(--color-yellow-600);
}

.text-gray-500 {
    color: var(--color-gray-500);
}
.uppercase {
    text-transform: uppercase;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}
.bg-red-50 {
    background-color: var(--color-red-50);
}
.bg-yellow-50 {
    background-color: var(--color-yellow-50);
}
.bg-green-50 {
    background-color: var(--color-green-50);
}
.back-btns {
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

    .back-btns svg {
        fill: currentColor;
        stroke: currentColor;
        pointer-events: none;
    }

    .back-btns:hover,
    .back-btns:focus,
    .back-btns:active {
        background-color: #e0e0e0 !important;
        color: #000 !important;
    }

.btn.back-btns:hover svg {
    fill: currentColor;
    stroke: currentColor;
}