:root {
    --dark-blue: #123468;
    --blue: #1B73BB;
    --light-blue: #CFE0EE;
    --cyan: #4BA7BE;
    --azure: #61A6C6;
    --light-gray: #D3D3D3;
    --gray: #8B8B8B;
    --white: #FFFFFF;
    --red: #EB4963;
    --light-green: #CAD515;
    --green: #60BB69;
    --orange: #FFC500;
    --yellow: #FCC549;
    --cherry: #EB4963;
    --tool-tip: #ffffcc;
    --shadow-down: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-arround: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}


@font-face {
     font-family: 'Open Sans Hebrew Condensed';
    src: url('../webfonts/OpenSansHebrewCondensed-Regular.ttf') format('truetype');
  /*  font-family: 'Arimo';
    src: url('../webfonts/Arimo-VariableFont_wght.ttf') format('truetype');*/
}

* {
    font-family: 'Open Sans Hebrew Condensed', serif;
    /*font-family: Arimo;*/
    box-sizing: border-box;
}

body {
    overscroll-behavior-y: contain;
}

html, body {
    direction: rtl;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-size: 14px;
    color: var(--dark-blue);
}

h1 {
    font-size: 30px;
}

    h1:focus {
        outline: none;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px;
}

a {
    text-decoration: none;
}

textarea {
    resize: none;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.w-page-form {
    height: calc(100% - 55px);
    position: relative;
    background-color: var(--white);
    padding: 5px 10px;
}

.w-form-area {
    border-radius: 10px;
    padding: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 5px 5px rgba(91, 95, 185, 0.1);
    margin-bottom: 10px;
}

.w-form-area-col {
    display: flex;
    flex-direction: column;
    width: 300px;
    /*margin: 10px;*/
    align-items: flex-start;
}

/* Blazor error design - do not remove */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.dis-small {
    display: table-cell;
}

.dis-medium {
    display: none;
}


@media only screen and (min-width: 600px) {
    .dis-small {
        display: none;
    }

    .dis-medium {
        display: table-cell;
    }
}

/*Loader*/

.loader-container {
    display: grid;
    place-items: center;
    height: 100vh;
}

.loader {
    display: flex;
}

    .loader div {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        transform: scale(0);
        animation: animate 1.5s ease-in-out infinite;
        display: block;
        margin: 5px;
    }

        .loader div:nth-child(0) {
            animation-delay: 0s;
        }

        .loader div:nth-child(1) {
            animation-delay: 0.2s;
        }

        .loader div:nth-child(2) {
            animation-delay: 0.4s;
        }

        .loader div:nth-child(3) {
            animation-delay: 0.6s;
        }

        .loader div:nth-child(4) {
            animation-delay: 0.8s;
        }

        .loader div:nth-child(5) {
            animation-delay: 1s;
        }

        .loader div:nth-child(6) {
            animation-delay: 1.2s;
        }

        .loader div:nth-child(7) {
            animation-delay: 1.4s;
        }

@keyframes animate {
    0%, 100% {
        transform: scale(0.2);
        background-color: #2B608F;
    }

    40% {
        transform: scale(1);
        background-color: #40A2D0;
    }

    50% {
        transform: scale(1);
        background-color: #9ED1EA;
    }
}