﻿* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --theme-color: #205295;
}


html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}




@font-face {
    font-family: Roboto-Regular;
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    direction: ltr;
    font-family: Roboto-Regular !important;
    overflow-x:clip;
}

@media (max-width:1300px) {
    body {
        padding-top: 0 !important;
    }
}


* {
    text-align: left;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 500;
}

p {
    font-size: 15px;
    font-weight: 400;
}



button,
a,
input[type="button"],
input[type="submit"],
input[type="reset"],
label,
select,
option {
    cursor: pointer;
}

.ck-content p {
    font-family: inherit !important;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }


/* Style for the radio button itself */
input[type="radio"] {
    width: 15px !important;
    min-height: 15px !important;
    appearance: none !important; /* Remove default styles */
    background-color: #fff !important;
    border: 2px solid var(--theme-color) !important;
    border-radius: 50% !important; /* Circular shape */
    position: relative !important;
    transition: all 0.3s ease !important;
    margin: 0 10px !important;
}

    /* Style for the radio button when it's checked */
    input[type="radio"]:checked {
        border-color: var(--theme-color) !important;
        transform: scale(1.2) !important; /* Slight scaling effect when checked */
    }

        /* Circle (pseudo-element to create the inner circle when checked) */
        input[type="radio"]:checked::before {
            content: '' !important;
            position: absolute !important;
            top: 2px !important;
            left: 2px !important;
            width: 7px !important;
            height: 7px !important;
            background-color: var(--theme-color) !important;
            border-radius: 50% !important;
        }

    /* Style when the radio button is hovered */
    input[type="radio"]:hover {
        cursor: pointer !important;
        transform: scale(1.1) !important; /* Scale up when hovered */
        transition: transform 0.2s ease !important;
    }

input[type="file"] {
    display: inline-block;
    border: 1px solid #bdc3c7;
    padding: 10px;
    font-size: 16px;
    color: #333;
    height: fit-content;
}

    input[type="file"]::file-selector-button {
        position: relative;
        top: 50%;
        border: none;
        border-right: 1px solid var(--theme-color);
        padding: 5px 10px;
        border-radius: 5px;
        background-color: var(--theme-color);
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 12px;
    }



    input[type="file"]:focus {
        outline: none;
        box-shadow: 0 0 5px var(--theme-color);
    }


/* Apply styles to checkboxes, excluding ones inside TreeSelect and AG Grid */
input[type="checkbox"]:not(.treeselect-list__item-checkbox):not(.ag-checkbox-input) {
    width: 15px !important;
    min-height: 15px !important;
    appearance: none !important;
    background-color: #fff !important;
    border: 2px solid var(--theme-color) !important;
    border-radius: 4px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    margin: 0 10px !important;
}

    /* Checked state */
    input[type="checkbox"]:not(.treeselect-list__item-checkbox):not(.ag-checkbox-input):checked {
        border-color: var(--theme-color) !important;
        background-color: var(--theme-color) !important;
        transform: scale(1.1) !important;
    }

        /* Checkmark */
        input[type="checkbox"]:not(.treeselect-list__item-checkbox):not(.ag-checkbox-input):checked::after {
            content: '' !important;
            position: absolute !important;
            left: 3px;
            bottom: 3px;
            width: 5px;
            height: 8px;
            border: solid white !important;
            border-width: 0 2px 2px 0 !important;
            transform: rotate(45deg) !important;
        }

    /* Hover */
    input[type="checkbox"]:not(.treeselect-list__item-checkbox):not(.ag-checkbox-input):hover {
        cursor: pointer !important;
        transform: scale(1.1) !important;
        transition: transform 0.2s ease !important;
    }

    /* Focus */
    input[type="checkbox"]:not(.treeselect-list__item-checkbox):not(.ag-checkbox-input):focus {
        outline: none !important;
        box-shadow: 0 0 3px var(--theme-color) !important;
    }

    /* Disabled */
    input[type="checkbox"]:not(.treeselect-list__item-checkbox):not(.ag-checkbox-input):disabled {
        opacity: 0.5 !important;
        cursor: not-allowed !important;
    }
