﻿/*.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #003366;
    --bs-btn-border-color: #003366*/ /*#2e6db7*//*;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #003366;
    --bs-btn-disabled-border-color: #003366;
}*/
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #195e9c;
    --bs-btn-border-color: #195e9c /*#2e6db7*/;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #195e9c;
    --bs-btn-disabled-border-color: #195e9c;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(46 109 183) !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #003366 !important;
}

/*
.golden-bottom-border {
    border-bottom: 10px solid !important;
    border-image: linear-gradient(to right, #bfa75a,  muted gold  #d4b86e,  warm golden beige  #b9974a  deeper gold-brown  ) 1 !important;
}*/
.golden-bottom-border {
    border-bottom: 10px solid;
    /*border-image: linear-gradient(to right, #e58130, #e08837, #df8634) 1;*/
    border-image: linear-gradient(to right, #bd9a3f, #dbae5d, #cc9f2b) 1;
}
.bg-darkblue {
    background: #112D5A;
    background: linear-gradient(90deg, rgb(29 52 89) 0%, rgb(0 58 110) 51%, rgb(29 52 89) 100%);
}
/*Checkbox*/
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

    /* Hide default checkbox */
    .custom-checkbox input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        background-color: #fff;
        border: 2px solid #888;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        transition: all 0.25s ease;
        margin-left: 14px;
    }

        /* Checked state */
        .custom-checkbox input[type="checkbox"]:checked {
            background-color: #0d6efd; /* Bootstrap primary color */
            border-color: #0d6efd;
        }

            /* Checkmark */
            .custom-checkbox input[type="checkbox"]:checked::after {
                content: "";
                position: absolute;
                left: 5px;
                top: 1px;
                width: 5px;
                height: 10px;
                border: solid #fff;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }

    /* Label styling */
    .custom-checkbox label {
        font-size: 14px;
        color: #333;
        cursor: pointer;
        margin-bottom: 5px;
    }

@media (min-width: 1176px) {
    .col-xlcustom {
        flex: 0 0 auto;
        width: auto;
    }
}