﻿html, body {
    FONT-SIZE: 14pt;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0px;
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    padding: 0;
}

.column-flex {
    display: flex;
    flex-direction: column;
}

.row-flex {
    display: flex;
    flex-direction: row;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}
.text-blue {
    color: #004970;
}

.font-l {
    font-size: 1.8rem;
}

.font-m {
    font-size: 1.2rem;
}

.font-s {
    font-size: 0.8rem;
}

.font-xs {
    font-size: 0.6rem;
}

.padding-10 {
    padding: 10px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-left-40 {
    margin-left: 40px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.m-r-10 {
    margin-right: 10px;
}

.m-r-20 {
    margin-right: 20px;
}

.m-r-30 {
    margin-right: 30px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-l-20 {
    margin-left: 20px;
}

.m-l-30 {
    margin-left: 30px;
}

.p-l-10 {
    padding-left: 10px;
}

.p-l-20 {
    padding-left: 20px;
}

.p-l-30 {
    padding-left: 30px;
}

.p-r-10 {
    padding-right: 10px;
}

.p-r-20 {
    padding-right: 20px;
}

.p-r-30 {
    padding-right: 30px;
}

.h-46 {
    height: 46px;
}

.h-35 {
    height: 35px;
}

.h-30 {
    height: 30px;
}

.h-50 {
    height: 50px;
}

.h-80 {
    height: 80px;
}

.w-max {
    width: 100%;
}

.w-110 {
    width: 110px;
}

.w-200 {
    width: 200px;
}

.w-220 {
    width: 220px;
}

.w-270 {
    width: 270px;
}

.w-320 {
    width: 320px;
}

.w-330 {
    width: 330px;
}

.bold {
    font-weight: 700;
}

.light-cyan {
    background-color: #D9EDF4;
}

.border-bottom-grey {
    border-bottom: 1.5px solid rgba(151, 151, 151, 0.3);
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
}
.border-left-grey {
    border-left: 1.5px solid rgba(151, 151, 151, 0.3);
}
.border-right-grey {
    border-right: 1.5px solid rgba(151, 151, 151, 0.3);
}

.main-button {
    border-radius: 50px;
    background-color: #004970;
    color: white;
    cursor: pointer;
    font-weight: 700;
    border: 1px solid #004970;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s;
}

    .main-button:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        transform: scale(1.01);
    }

.main-txt-box {
    border-radius: 10px;
    border: 1.5px solid black;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .main-txt-box:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.main-title {
    font-size: 4rem;
    color: #004970;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.secondary-title {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    direction: rtl;
}

.cust-drop {
    border: 1.5px solid black;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    border-radius: 50px;
    min-height: 30px;
}

    .cust-drop:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        opacity: 0.9;
    }

.cust-txt {
    border: 1.5px solid black;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    border-radius: 10px;
    min-height: 30px;
}

    .cust-txt:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        opacity: 0.9;
    }

.drop-down-list {
    border-radius: 10px;
    border: 1.5px solid black;
}

.custom-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid black;
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .custom-dropdown:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .custom-dropdown option {
        padding: 10px;
        background-color: #fff;
        color: #333;
    }

        .custom-dropdown option:hover {
            background-color: #004970;
            color: #fff;
        }

.white-btn {
    cursor: pointer;
    border: 1px solid white;
    border-radius: 50px;
    background-color: white;
    color: #004A70;
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.5);
    transition: box-shadow 0.3s ease;
}

    .white-btn:hover {
        box-shadow: 0 0 4px 0 rgba(0,0,0,0.9);
        opacity: 0.9;
    }







/*custom checkbox -  place a div around the checkbox 
  asp control with class round
  to get custom checkbox
*/
.round {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .round span {
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.9;
        margin-right: 4%;
    }

    .round label {
        border: 1.5px solid #ccc;
        border-radius: 25%;
        cursor: pointer;
        height: 1.5rem;
        width: 1.5rem;
        right: 2px;
        position: absolute;
        margin-top: 2%;
    }

        .round label:after {
            border: 3px solid #fff;
            border-top: none;
            border-right: none;
            content: "";
            height: 10px;
            left: 3px;
            opacity: 0;
            position: absolute;
            top: 5px;
            transform: rotate(-45deg);
            width: 16px;
        }

    .round input[type="checkbox"] {
        visibility: hidden;
    }

        .round input[type="checkbox"]:checked + label {
            background-color: white;
        }

            .round input[type="checkbox"]:checked + label:after {
                opacity: 1;
                border-color: #004970;
            }
/* end of custom checkbox class*/
/*main checkbox style -  need to wrap the checkbox
     in a div and give the main-checkbox class*/
.main-checkbox input[type="checkbox"] {
    display: none;
}

.main-checkbox label {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}

    .main-checkbox label:before {
        content: '';
        position: absolute;
        right: 0;
        top: 2px;
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 6px;
        background-color: white;
        transition: background-color 0.3s, color 0.3s;
    }

.main-checkbox input[type="checkbox"]:checked + label:before {
    background-color: #004970;
    border-color: #004970;
    color: white;
}

.main-checkbox input[type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    right: 5px;
    top: 0;
    width: 10px;
    height: 20px;
    color: white;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
}
/*btn with image, need to add color if not default and border if not default*/
.btn-w-img {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 10px;
    height: 40px;
    padding-left: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

    .btn-w-img img {
        height: 40px;
        width: 40px;
        border-radius: 10px;
        margin-right:5px;
    }

    .btn-w-img:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

.border-blue {
    border: 1.5px solid #004970;
}

.bcg-blue {
    background: #004970;
}
.bcg-white {
    background: white;
}
