@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');


/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 520px) {
    .my-large {
        display: none !important;
    }

    .my-small {
        display: block !important;
    }
}

/* Large screen ----------- */
@media screen and (min-width: 521px) {
    .my-small {
        display: none !important;
    }
}



/* Browser only mode small ----------- */
@media only screen and (max-width : 1000px) {
    .mobilSuport {
        display: none !important;
    }

    .browserSuport {
    }
}

/* Browser only mode Large screen ----------- */
@media screen and (min-width: 1001px) {
    .mobilSuported {
    }

    .browserSuport {
        display: none !important;
    }
}

@media screen and (max-width: 1200px) {
    .largeOnly {
        display: none !important;
    }
}

.fitText {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: block;
    line-height: 1em;  
    max-height: 2em;  
}

.mainContent {
    visibility: visible;
    opacity: 1;
    padding: 0;
    margin: 0;
}

    .mainContent.closed {
        visibility: hidden;
        opacity: 0;
        /*        transition: visibility 0s 3s, opacity 3s linear;
        display: none;*/
    }


.modal {
    display: flex;
    position: fixed;
    top: 50%;
    left: 35%;
    /*   transform: translate(-50%, -50%);*/
    color: white;
    font-size: 1.5em;
    z-index: 1010;
    visibility: visible;
    opacity: 1;
    /*    transition: opacity 1s linear;*/
}

    .modal.closed {
        visibility: hidden;
        opacity: 0;
        /*        transition: visibility 0s 1s, opacity 1s linear;*/
        /*        transition: visibility 0s 3s, opacity 3s linear;
        display: none;*/
    }

.modal-overlay {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 31, 49, .5);
    visibility: visible;
    opacity: 1;
    /*    transition: opacity 1s linear;*/
}

    .modal-overlay.closed {
        /*      transition: visibility 0s 3s, opacity 3s linear;
        display: none;*/
        visibility: hidden;
        opacity: 0;
        /*        transition: visibility 0s 1s, opacity 1s linear;*/
    }

::placeholder {
    color: lightblue;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightblue;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: lightblue;
}





html, body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

a, .btn-link {
    color: #0366d6;
}


.btn-push {
    text-decoration: none;
    -webkit-box-shadow: 0px 5px 0px #c4c4c4;
    -moz-box-shadow: 0px 5px 0px #c4c4c4;
    -ms-box-shadow: 0px 5px 0px #c4c4c4;
    -o-box-shadow: 0px 5px 0px #c4c4c4;
    box-shadow: 0px 5px 0px #c4c4c4;
    text-shadow: 1px 1px 1px #fff;
    -webkit-transition: All 250ms ease;
    -moz-transition: All 250ms ease;
    -o-transition: All 250ms ease;
    -ms-transition: All 250ms ease;
    transition: All 250ms ease;
}
    /*==========  Active State  ==========*/
    .btn-push:active {
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        -ms-box-shadow: none !important;
        -o-box-shadow: none !important;
        box-shadow: none !important;
        -webkit-transition: All 250ms ease;
        -moz-transition: All 250ms ease;
        -o-transition: All 250ms ease;
        -ms-transition: All 250ms ease;
        transition: All 250ms ease;
    }



.btn-icon {
    color: #fff;
    background-color: #1b6ec2;
    /* border-color: #1861ac;*/
    border-width: 0;
    height: 34px;
    min-width: 34px;
    border-radius: 5px;
    margin: 2px 2px 5px 2px;
    cursor: pointer;
}

    .btn-icon:disabled {
        background: #dddddd;
        border-color: darkgray;
    }
    /* On mouse-over, add a deeper shadow */
    .btn-icon:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    /* border-color: #1861ac;*/
    border-width: 0;
    height: 34px;
    min-width: 30px;
    border-radius: 10px;
    margin: 2px 2px 5px 2px;
    cursor: pointer;
}

    .btn-primary:disabled {
        pointer-events: none!important;
        background: #dddddd;
        border-color: darkgray;
        color:darkgray!important;
    }
    /* On mouse-over, add a deeper shadow */
    .btn-primary:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }


.btn-small {
    color: #fff;
    background-color: #1b6ec2;
    /* border-color: #1861ac;*/
    border-width: 0;
    /*   height: 34px;*/
    min-width: 30px;
    border-radius: 5px;
    margin: 2px 2px 5px 2px;
    cursor: pointer;
    padding: 10px;
}
.btn-small:disabled {
    pointer-events: none !important;
    background: #dddddd;
    border-color: darkgray;
    color: lightgray !important;
}


.btn-large {
    font-size: 14px;
    height: 52px;
    border-radius: 30px;
    background-color: #1b6ec2;
    color: white;
    text-align: center;
    margin: 8px;
    padding: 8px;
    cursor: pointer;
}
    /* On mouse-over, add a deeper shadow */
    .btn-large:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        background-color: #6EC21B;
    }


.btn-large-selection {
    font-size: 14px;
    height: 52px;
    border-radius: 30px;
    background-color: #6EC21B; /*#1b6ec2;*/
    color: white;
    text-align: center;
    margin: 8px;
    padding: 8px;
    cursor: pointer;
}
    /* On mouse-over, add a deeper shadow */
    .btn-large-selection:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        background-color: #6EC21B;
    }

    .btn-large-selection:empty {
        /*        display: none;*/
        background-color: #1b6ec2;
    }

.btn-large-disabled {
    font-size: 14px;
    height: 52px;
    border-radius: 30px;
    background-color: rgba(3, 31, 49, .5); /*#1b6ec2;*/
    color: white;
    text-align: center;
    margin: 8px;
    padding: 8px;
    cursor: pointer;
}

.btn-checkOut {
    width: 200px;
    height: 60px;
    font-size: 1.5em;
}

.btn-addPass {
    width: 100px;
    height: 30px;
    font-size: 1.0em;
}

.imageIndicator {
    width: 30px;
    height: 30px;
}
/*
table {
    border-collapse: collapse;
    width: 100%;
    display:grid;
    margin-right:10px;
}

th, td {
    text-align: left;
    padding: 8px;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}*/
.card {
    /* Add shadows to create the "card" effect */
    /*    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
    /*  transition: 0.3s;*/

    padding: 10px;
    /*    min-width:450px;*/
}

    /* On mouse-over, add a deeper shadow */
    .card:hover {
        /*    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);*/
        /*   background-color: #1b6ec2;*/
        /*  color:white;*/
    }

.card-border {
    /* Add shadows to create the "card" effect */
    /*    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);*/
    border-style: solid;
    border-width: 1px; /* 5px top and bottom, 20px on the sides */
    border-color: darkgrey;
    border-radius: 4px;
    transition: 0.3s;
    padding: 10px;
}

.card-button {
    /* Add shadows to create the "card" effect */
    /*    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);*/
    border-style: solid;
    border-width: 1px; 
    border-color: darkgrey;
    border-radius: 4px;
    transition: 0.3s;
    padding: 10px;
    cursor: pointer;
    background-color:white;
    /*    min-width:450px;*/
}

    /* On mouse-over, add a deeper shadow */
    .card-button:hover {
        /*        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);*/
        border-style: solid;
        border-width: 1px; /* 5px top and bottom, 20px on the sides */
        border-color: darkgrey;
        border-radius: 4px;
        /*  background-color: #1b6ec2;*/
        /*   color: white;*/
        background-color: rgba(208, 223, 245, .3);
    }


    .card-button.active {
        background-color: #2196F3;
        color: white;
        /* Add some padding inside the card container */
    }


.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#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;
    }

.agreementLink {
    color: salmon;
    font-size: .75em;
    text-align: center;
    cursor: pointer;
    width: 100%;
    margin: auto;
    height: 40px;
}

/*===================================== CONTROLS ===============================================================*/
.listItemCaption {
    font-size: .8em;
    color: lightgray;
    text-align: right;
}

.listItemValue {
    font-size: 1em;
    color: black;
    text-align: left;
}

.listItem {
    background-color: white;
    display: inline-block;
    min-width: 240px;
    margin: 0 10px;
    height: 120px;
    /*    background: rgba(0, 0, 0, 0.05) no-repeat center center;*/
    background-size: cover;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px #dfdfdf;
}

.listItemTitle {
    height: 40px;
    background-color: darkgrey;
    color: white;
    width: 100%;
    margin: 0;
    padding: 5px 0 0 0;
    text-align: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.listItemTitle-selected {
    height: 40px;
    background-color: forestgreen;
    color: white;
    width: 100%;
    margin: 0;
    padding: 5px 0 0 0;
    text-align: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


.loader {
    border: 8px solid white; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}






.wrapperCollapsible {
    width: 100%;
}

.ulCollapsible {
    list-style: none;
    margin: 0;
    padding: 0;
}

.labelCollapsible {
    width: 100% !important;
    align-content: center;
    color: white;
    background-color: darkslategray;
    text-align: center;
    margin:0;
    min-height: 34px;
    padding: 2px;
}

    .labelCollapsible:hover {
        cursor: pointer;
        /*  background: #26C281;*/
    }

    .labelCollapsible.last {
        border-bottom: 1px solid #fff;
    }

.ulCollapsible ul li {
    padding-bottom: 2px;
    /*    background: #59ABE3;*/
}


.inputCollapsible[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

    .inputCollapsible[type="checkbox"] ~ ul {
        height: 0;
        transform: scaleY(0);
    }

    .inputCollapsible[type="checkbox"]:checked ~ ul {
        height: 100%;
        transform-origin: top;
        transition: transform .2s ease-out;
        transform: scaleY(1);
    }

    .inputCollapsible[type="checkbox"]:checked + label {
        background: #26C281;
        border-bottom: 1px solid #fff;
    }


.inputCollapsibleChecked {
    background: #26C281 !important;
    border-bottom: 1px solid #fff;
}
/*============================================================================*/

.grid-default {
    /*   font-family: Arial, Helvetica, sans-serif;*/
    border-collapse: collapse;
    border: none;
    width: 100%;
    overflow:hidden;
}

    .grid-default th {
        /*border: 1px solid #ddd;*/
        padding: 8px;
        height: 66px;
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: darkslategray;
        color: white;
    }

    .grid-default td {
        border: 0px solid #ddd;
        padding: 8px;
        height: 60px !important;
    }

    .grid-default tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .grid-default tr:hover {
        background-color: #ddd;
    }


.grid-title {
    color: darkslateblue;
}

.setting {
    width: 200px;
}

.value {
    width: 400px;
}

.dessription {
    width: 100%
}


/* Always display the drop down caret */
input[type="date"]::-webkit-calendar-picker-indicator {
    color: #2c3e50;
}

/* A few custom styles for date inputs */
input[type="date"] {
    margin: 5px auto 0px auto;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    padding: 10px;
    border: 2px solid darkgray;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    color: #95a5a6;
    font-family: "Helvetica", arial, sans-serif;
    font-size: 38px;
    /*border: 1px solid #ecf0f1;*/
    background: #ecf0f1;
    padding: 5px;
    display: inline-block !important;
    visibility: visible !important;
}

input[type="date"], focus {
    color: #95a5a6;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.sectionHeader {
    height: 30px;
    width: 100%;
    align-content: center;
    color: white;
    background-color: darkgray;
    text-align: center;
    margin-bottom: 0px;
}

.slotHeader {
    height: 30px;
    width: 100%;
    align-content: center;
    color: white;
    background-color: darkgray;
    text-align: center;
    margin-bottom: 0px;
}


.SpinWait{
   max-width:200px;
}

.isButton {
    color: green;
    position: absolute;
    top: 100%;
    right: 0%;
    margin: -30px 20px auto auto;
}

.notice {
    text-align:center;
    margin-top:40px;
    font:1em;
}

/**************************** CheckBox ************************************************************************************/
/* The container */
.checkboxContainer {
/*    display: block;*/
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
/*    font-size: 22px;*/
    font-size:1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkboxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a green background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}