﻿#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;
    }

.multi-steps > li.is-active:before, .multi-steps > li.is-active ~ li:before {
    content: counter(stepNum);
    font-family: inherit;
    font-weight: 700;
}

.multi-steps > li.is-active:after, .multi-steps > li.is-active ~ li:after {
    background-color: #ededed;
}

/*.dxbs-table {
    background-color: rgb(187, 222, 251) !important;
}

.dxbs-pager {
    background-color: rgb(187, 222, 251) !important;
}*/

.multi-steps {
    display: table;
    table-layout: fixed;
    width: 100%;
}

    .multi-steps > li {
        counter-increment: stepNum;
        text-align: center;
        display: table-cell;
        position: relative;
        color: tomato;
    }

        .multi-steps > li:before {
            content: '\f00c';
            content: '\2713;';
            content: '\10003';
            content: '\10004';
            content: '\2713';
            display: block;
            margin: 0 auto 4px;
            background-color: #fff;
            width: 36px;
            height: 36px;
            line-height: 32px;
            text-align: center;
            font-weight: bold;
            border-width: 2px;
            border-style: solid;
            border-color: tomato;
            border-radius: 50%;
        }

        .multi-steps > li:after {
            content: '';
            height: 2px;
            width: 100%;
            background-color: tomato;
            position: absolute;
            top: 16px;
            left: 50%;
            z-index: -1;
        }

        .multi-steps > li:last-child:after {
            display: none;
        }

        .multi-steps > li.is-active:before {
            background-color: #fff;
            border-color: tomato;
        }

        .multi-steps > li.is-active ~ li {
            color: #808080;
        }

            .multi-steps > li.is-active ~ li:before {
                background-color: #ededed;
                border-color: #ededed;
            }

/*slider*/
.slidecontainer {
    width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
    -webkit-appearance: none; /* Override default CSS styles */
    /*appearance: none;*/
    width: 100%; /* Full-width */
    height: 10px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

    /* Mouse-over effects */
    .slider:hover {
        opacity: 1; /* Fully shown on mouse-over */
    }

    /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
    .slider::-webkit-slider-thumb {
        -webkit-appearance: none; /* Override default look */
        /*appearance: none;*/
        width: 24px; /* Set a specific slider handle width */
        height: 24px; /* Slider handle height */
        background: url('/img/logo_slider.png');
        cursor: pointer; /* Cursor on hover */
    }

    .slider::-moz-range-thumb {
        width: 24px; /* Set a specific slider handle width */
        height: 24px; /* Slider handle height */
        background: url('/img/logo_slider.png');
        cursor: pointer; /* Cursor on hover */
    }

.dx-checkbox {
    border-bottom: 1px solid #ddd; /* Dodaj obramowanie dolne */
    margin-bottom: 5px; /* Dodaj odstęp pomiędzy poszczególnymi DxCheckBox */
}

.form-proposition-type-box {
    
    border-radius: 8px;
    border-color: black;
    border-width: 1px;
    background-color: #FDB940;
    margin: 10px;
    padding: 10px;
    height: 80%;
    width: 90%;
    align-content: center;
    display: block;
}

.form-proposition-type-box-bold-center-text {
    margin-top:15px;
    text-align:center;
    display:block;
    font-weight:bold;
}

.form-proposition-type-box-center-text {
    margin-top: 15px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    display: block;
    height: 100%;
}

.form-proposition-type-box-container {
    width: 50%;
    margin: auto;
    float: left;
    height: 100%;
}

.form-proposition-no-propositions-error {
    text-align: center;
    border: solid;
    padding: 10px;
    border-color: red;
    border-radius: 8px;
}
