﻿* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --theme-color: #ed1c24;
}


html {
    overflow-x: hidden;
}




@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;
}
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: none;
    border-bottom: 1px solid var(--theme-color);
    padding: 5px;
    font-size: 16px;
    color: #333;
    height: fit-content;
}

    input[type="file"]::file-selector-button {
        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;
    }

        input[type="file"]::file-selector-button:hover {
            transform: translateY(-2px);
        }

    input[type="file"]:focus {
        outline: none;
        box-shadow: 0 0 5px var(--theme-color);
    }