@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

:root {
    --secondary-bg-color: #f7f5f1;
    --max-card-width: 170px;
}

.mdscreen {
    display: none!important;
}
.mdscreen-flex {
    display: none!important;
}
.show-mobile {
    display: block!important;
}
.show-mobile-flex {
    display: flex!important;
}

body {
    position: relative
}

@media (min-width: 576px) {
    :root {
        --max-card-width: 250px;
    }
    .max-site-width {
        max-width: 766px;
    }
    .mdscreen {
        display: none !important;
    }
    .mdscreen-flex {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
    }
    .show-mobile-flex {
        display: flex !important;
    }
}

@media (min-width: 768px){
    .max-site-width {
        max-width: 990px;
    }
    .mdscreen {
        display: none !important;
    }
    .mdscreen-flex {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
    }
    .show-mobile-flex {
        display: flex !important;
    }
}

@media (min-width: 992px){
    .max-site-width {
        max-width: 1050px;
    }
    .mdscreen {
        display: block !important;
    }
    .mdscreen-flex {
        display: flex !important;
        flex-direction: column;
    }
    .show-mobile {
        display: none !important;
    }
    .show-mobile-flex {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .max-site-width {
        max-width: 1300px;
    }
    .mdscreen {
        display: block !important;
    }
    .mdscreen-flex {
        display: flex !important;
    }
    .show-mobile {
        display: none !important;
    }
    .show-mobile-flex {
        display: none !important;
    }
}

@media (min-width: 1400px) {
    .max-site-width {
        max-width: 1350px;
    }
    .mdscreen {
        display: block !important;
    }
    .mdscreen-flex {
        display: flex !important;
    }
    .show-mobile {
        display: none !important;
    }
    .show-mobile-flex {
        display: none !important;
    }
}

.components-reconnect-hide > div {
    display: none !important;
}

.components-reconnect-show > div {
    display: none !important;
}

.components-reconnect-show > .show {
    display: block !important;
}

.components-reconnect-failed > div {
    display: none !important;
}

.components-reconnect-failed > .failed {
    display: none !important;
}

.components-reconnect-refused > div {
    display: none !important;
}

.components-reconnect-refused > .refused {
    display: none !important;
}

.modal-custom .modal-dialog {
    width: 20%;
    position: fixed;
    bottom: 0;
    right: 0;
}

.cursor-pointer:hover {
    cursor: pointer;
}

.cursor-disabled:hover {
    cursor: not-allowed;
}

.url-decoration {
    text-decoration: none;
}

.url-decoration:hover {
    text-decoration: underline;
}

.carousel-item {
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.text-transform-none {
    text-transform: none;
}

.font-24px {
    font-size: 24px;
}

.font-20px {
    font-size: 20px;
}

.font-18px {
    font-size: 18px;
}

.font-16px {
    font-size: 16px;
}

.font-15px {
    font-size: 15px;
}

.font-14px {
    font-size: 14px;
}

.mid-fonts {
    font-size: 0.8rem;
    font-weight: bold;
}

.small-fonts {
    font-size: 0.675rem;
}

figure {
    position: relative;
    width: 100%;
    height: 60%;
    margin: 0!important;
}

html, body {
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}


a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.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;
    }


.font-weight-600 {
    font-weight: 600;
}