﻿
#blazor-error-ui {
    background: linear-gradient(202deg, #404eb0, #1b2254);
    box-shadow: none;
    font-size: 14px;
    color: #fff;
    z-index: 22222;
}

    #blazor-error-ui a {
        color: #000 !important;
    }

[dir="rtl"] #blazor-error-ui {
    padding: 0.6rem 1.8rem 0.7rem 1.25rem;
}

#blazor-error-ui .reload {
    font-weight: bold !important;
}




/* Rounded tabs */

@media (min-width: 576px) {
    .rounded-nav {
        border-radius: 50rem !important;
    }
}

@media (min-width: 576px) {
    .rounded-nav .nav-link {
        border-radius: 50rem !important;
    }
}


.nav-pills .nav-link {
    color: #555;
}

.nav-link {
    cursor: pointer;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #3e4bab !important;
    background-image: linear-gradient(202deg,#3e4bab, #1e255a);
    color: #fff;
}

hr {
    background-color: #dee4ea;
    height: 2px;
}




.fstChoiceItem {
    font-size: 14px;
    background-color: #40dc7e !important;
    background-image: linear-gradient(to right,#40dcb2,#40dc7e) !important;
    border: 0;
    padding: .0em .33333em .0em 1.5em;
}

.fstElement {
    border: 0;
    width: 100%;
    background: none;
}

.fstResultItem {
    font-size: 14px;
}

.fstMultipleMode .fstQueryInput {
    font-size: 14px;
}

.fstMultipleMode .fstControls {
    background-color: #ffffff !important;
    border-radius: 10px;
    width: 100%;
    /* box-shadow: 0px 0px 10px #2a2b6217,0px 0px 15px #fff inset !important; */
    border: 1px solid #d2d6da;
    height: 47px;
    padding: 7px 12px;
}

.fstMultipleMode.fstActive, .fstMultipleMode.fstActive .fstResults {
    box-shadow: none;
}

.fstResultItem.fstSelected {
    background-color: #40dc7e !important;
    background-image: linear-gradient(to right,#40dcb2,#40dc7e) !important;
    border-color: #3ad678 !important;
}

.fstGroupTitle {
    font-size: 15px;
}

.fstMultipleMode.fstActive .fstResults {
    max-height: 200px;
}

.minicolors-theme-default .minicolors-swatch {
    top: 11px;
    left: 5px;
    width: 21px;
    height: 21px;
    right: 10px;
}

.minicolors-theme-default .minicolors-input {
    height: 40px;
    width: auto;
    display: inline-block;
    padding-left: 37px;
}


[dir=rtl] .minicolors-theme-default .minicolors-input {
    text-align: right;
    unicode-bidi: plaintext;
    padding-left: 1px;
    padding-right: 37px;
}

.nav.nav-pills {
    padding: 0px;
}



.form-2column {
    display: flex;
    flex-wrap: wrap;
    /*max-width: 900px;*/
}

    .form-2column .form-group {
        width: calc(50% - 20px);
        margin: 10px 10px;
    }

@media (max-width: 768px) {
    .form-2column .form-group {
        width: calc(100% - 20px);
    }
}


#progressbar {
    overflow: hidden;
    counter-reset: step;
    display: flex;
    width: 100%;
    padding: 0px;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
    margin-bottom: 30px;
    direction: rtl;
}

    #progressbar li {
        list-style-type: none;
        color: black;
        text-transform: uppercase;
        font-size: 13px;
        float: right;
        font-weight: 600;
        min-width: 150px;
        position: relative;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 35px;
            line-height: 35px;
            display: block;
            font-size: 14px;
            color: #333;
            background: white;
            border-radius: 40px;
            margin: 0 auto 5px auto;
        }
        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: white;
            position: absolute;
            right: -50%;
            top: 16px;
            z-index: -1; /*put it behind the numbers*/
        }

        #progressbar li a {
            color: inherit;
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }
        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before, #progressbar li.active:after {
            background: #4052da;
            background-image: linear-gradient(202deg, var(--color1), var(--color2));
            color: white;
        }

@media (max-width:768px) {
    #progressbar {
    }

        #progressbar li {
            min-width: 70px;
            font-size: 11px;
        }

        #progressbar span {
            display: inline-block;
            padding: 0px 5px 0px 5px;
        }
}
