body{
    background-color: #f7f7f7;
}


@font-face {
    font-family: 'Raleway';
    font-weight: 700; /* Bold */
    src: url('/assets/fonts/Raleway-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Raleway';
    font-weight: 400; /* Regular */
    src: url('/assets/fonts/Raleway-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Raleway';
    font-weight: 300; /* Thin */
    src: url('/assets/fonts/Raleway-Thin.ttf') format('truetype');
}

/* Define a class to use the custom font */
.raleway-bold {
    font-family: 'Raleway', sans-serif;
    font-weight: 700; /* Bold */
}

.raleway-regular {
    font-family: 'Raleway', sans-serif;
    font-weight: 400; /* Regular */
}

.raleway-thin {
    font-family: 'Raleway', sans-serif;
    font-weight: 300; /* Thin */
}

/* Hide default checkbox */
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid #000; 
    border-radius:2px; 
    background-color: #fff !important;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

/* Checked state */
.custom-checkbox:checked {
    background-color: #db0d43 !important; /* Pink background */
    border-color: #db0d43 !important;
}

/* Custom white checkmark */
.custom-checkbox:checked::after {
    content: '✔'; 
    color: #fff !important; /* Force white color for the checkmark */
    font-size: 0.6rem;
    position: absolute;
    top: -1px;
    left: 3px;
    line-height: 1rem;
    font-family: Arial, sans-serif; /* Ensure a proper font is used */
}

/* Optional: to fix the size of the checkmark */
.custom-checkbox:checked {
    background-color: #db0d43 !important;
    border-color: #db0d43 !important;
    padding-left: 0.2rem; /* Adjust padding to center the checkmark if needed */
}

