/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
    --bs-btn-disabled-bg: #d7ead8;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
    --bs-btn-disabled-color: #626262;
    --bs-btn-disabled-border-color: #8b9989;
    --bs-btn-active-bg: var(--light);
    --bs-btn-active-color: #626262;
}

.btn-danger {
    --bs-btn-disabled-color: #4a4a4a;
    --bs-btn-disabled-border-color: #ead7d7;
    --bs-btn-disabled-bg: #bb7f85;
}

.btn-secondary {
    --bs-btn-disabled-color: #4a4a4a;
    --bs-btn-disabled-bg: #cacaca;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.nav-underline .nav-link {
    color: var(--dark);
}

    .nav-underline .nav-link:hover,
    .nav-underline .nav-link.active {
        color: var(--primary);
    }

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 15px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--light);
    }


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


.service-item-block {
    min-height: 15rem;
}
/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
    min-height: 17rem;
}

    .service-item .svetlo1 {
        border: 1px solid gray;
    }

    .service-item .svetlo2 {
        border: 1px solid red;
    }

    .service-item .svetlo3 {
        border: 1px solid gold;
    }

    .service-item .svetlo4 {
        border: 1px solid black;
    }

    .service-item .service-img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: -1;
    }

        .service-item .service-img img {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            object-fit: cover;
            transform: scale(1.2);
            transition: .3s;
            z-index: -1;
        }

    .service-item:hover .service-img img {
        transform: scale(1);
    }

    .service-item .service-text {
        background: #FFFFFF;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        transition: .3s;
    }

    .service-item:hover .service-text {
        background: rgba(15, 66, 41, .6);
    }

    .service-item .service-text h4,
    .service-item .service-text p {
        transition: .3;
    }

    .service-item:hover .service-text h4 {
        color: #FFFFFF;
    }

    .service-item:hover .service-text p {
        color: var(--light);
    }

    .service-item .service-text .btn-square {
        width: 100px;
        height: 100px;
        background: transparent;
        transition: .5s;
    }

    .service-item:hover .service-text .btn-square {
        background: var(--light);
    }

    .service-item .service-text .btn {
        width: 31px;
        height: 31px;
        display: inline-flex;
        align-items: center;
        color: var(--dark);
        background: var(--light);
        white-space: nowrap;
        overflow: hidden;
        transition: .3s;
    }

    .service-item:hover .service-text .btn {
        width: 112px;
    }


@media (max-width: 992px) {
    .service-item-block {
        height: 22rem;
    }
}

/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

    #portfolio-flters li {
        display: inline-block;
        font-weight: 500;
        color: var(--primary);
        cursor: pointer;
        transition: .5s;
        border-bottom: 2px solid transparent;
    }

        #portfolio-flters li:hover,
        #portfolio-flters li.active {
            color: var(--dark);
            border-color: var(--dark);
        }

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

    .portfolio-inner::before,
    .portfolio-inner::after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(15, 66, 41, .6);
        transition: .5s;
    }

    .portfolio-inner::after {
        left: auto;
        right: 0;
    }

    .portfolio-inner:hover::before,
    .portfolio-inner:hover::after {
        width: 50%;
    }

    .portfolio-inner .portfolio-text {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .5s;
        z-index: 3;
        opacity: 0;
    }

    .portfolio-inner:hover .portfolio-text {
        transition-delay: .3s;
        opacity: 1;
    }

    .portfolio-inner .portfolio-text .btn {
        background: var(--light);
        color: var(--primary);
    }

        .portfolio-inner .portfolio-text .btn:hover {
            background: var(--primary);
            color: var(--light);
        }




/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin-right: 15px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: var(--light);
        border-radius: 4px;
        font-size: 22px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            color: var(--light);
        }


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--primary);
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer a {
    color: var(--light);
}

    .footer a:hover {
        color: var(--primary);
        box-shadow: none;
    }

    .footer a.primary {
        color: var(--primary);
    }

        .footer a.primary:hover {
            text-decoration: underline;
        }

.copyright {
    color: var(--light);
    background: #072A19;
    font-size: 0.9em;
}

    .copyright a {
        color: #FFFFFF;
    }

        .copyright a:hover {
            color: var(--primary);
        }


.app-header-name {
}

@media (max-width: 1250px) {
    .app-header-name h1 {
        font-size: calc(1rem + 1.3vw);
    }
}

@media (max-width: 1060px) {
    .app-header-name h1 {
        font-size: calc(0.9rem + 1.0vw);
    }
}

@media (max-width: 992px) {
    .app-header-name {
        position: relative;
    }

        .app-header-name h1 {
            font-size: calc(1rem + 1.3vw);
        }
}


.op-list div, .op-list h2 {
    padding-left: 0px;
}

.op-list .op-list-tool {
    font-size: calc(1rem + 0.2vw);
    cursor: pointer;
    color: var(--dark);
}

    .op-list .op-list-tool .op-tool {
        display: block;
        margin-bottom: 0.5rem;
    }

.op-list table th {
    background-color: #519F55;
    color: white;
    padding: 2px 10px;
    font-weight: normal;
    border: 1px solid black;
}

.op-list table td {
    border: 1px solid black;
    padding: 2px 10px;
}

.op-list ul.OpPodminky {
    padding-left: 0px;
    margin-top: 2px;
    margin-bottom: 8px;
}

    .op-list ul.OpPodminky li {
        display: block;
        clear: both;
        border-bottom: 1px dotted #777;
        width: 90%;
    }

        .op-list ul.OpPodminky li span {
            position: relative;
            top: 5px;
            background-color: #FFFFFF;
            opacity: 0.9;
        }

            .op-list ul.OpPodminky li span:first-of-type {
                padding-right: 5px;
            }

            .op-list ul.OpPodminky li span:last-of-type {
                float: right;
                text-align: right;
                padding-left: 5px;
            }

.op-list .OpPoznamka {
    clear: both;
    margin: 10px;
    font-style: italic;
}

.op-list .OpML {
    font-size: 0.9em;
    font-style: italic;
}

.op-list .poznamka_ml {
    margin: 15px 0px 30px;
}

.op-list .OpPojmy {
    font-size: 0.8em;
    background-color: #D3D3D3;
    padding: 5px 3px 10px 10px;
    border-radius: 6px;
}

    .op-list .OpPojmy hr:first-of-type {
        display: none;
    }

.op-list .op-poznamky {
    font-size: 0.8em;
    margin: 5px;
    padding: 5px 10px;
    border: 1px solid black;
    border-radius: 5px;
    background: var(--light);
}

    .op-list .op-poznamky dt {
        display: inline-block;
        margin-right: 10px;
    }

    .op-list .op-poznamky dd {
        display: inline;
    }

.op-list ul.KoralkyPodminky {
    padding-left: 0px;
    margin-top: 2px;
    margin-bottom: 8px;
}

    .op-list ul.KoralkyPodminky li {
        display: block;
    }

        .op-list ul.KoralkyPodminky li ul li {
            display: list-item;
            list-style: disc;
        }

.op-list-prehled .opCiny2E5-15-zneni {
    display: none;
}


@media (max-width: 992px) {
    .op-list .op-poznamky dt {
        font-size: 2.0em !important;
    }
}

.op-splneno {
    font-weight: bold;
}

.op-list-detail .opCiny2E5-15-splneno {
    display: none;
}

.tituly h3 {
    display: inline;
    font-size: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-right: 10px;
}

input[type=search], input[type=search]:focus {
    box-shadow: none;
    border: 0px;
}

.search-group .input-group-text {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: var(--light);
}

.search-group .autofill-input {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


@media (max-width: 992px) {
    #search-input {
        font-size: 1.2em;
        border-radius: 10px;
    }

    .search-group .input-group-append {
        display: none;
    }

    h4 {
        font-size: 1.2em;
    }
}


.navbar-toggler-icon {
    width: 1.8em;
    height: 1.8em;
}

.navbar-toggler {
    background-color: var(--light);
    border-color: black !important;
}

.autofill-dropdown-menu {
    z-index: 9999;
}

.op-sekce-list {
    column-count: 2
}

.autor {
    font-style: italic;
}

.dropdown-menu {
    z-index: 9999;
}

.lodge-selector .fa {
    font-size: 80%;
}


.lodge-selector a {
    cursor: pointer;
}


/*------------------------- MISTROVSTVÍ ------------------*/

.mastership_section {
    margin: 15px 0px 0px 0px;
}

    .mastership_section:first-letter {
        font-weight: bold;
    }

.master-circle {
    float: left;
    text-align: right;
    width: 80px;
    font-weight: normal;
    font-size: 0.7em;
    padding-right: 8px;
}


.mastership-condition {
    margin-left: 85px;
}

    .mastership-condition .op-name {
        font-variant: petite-caps;
    }

/* bootstrap */
.bg-dark {
    background-color: #0F4229 !important;
}

.bg-light {
    background-color: #E8F5E9 !important;
}

a {
    color: #348E38;
    text-decoration: none;
}

    a:hover {
        color: #2a722d;
    }

body {
    font-family: "Open Sans",sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #525368;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Jost",sans-serif;
    line-height: 1.2;
    color: #0F4229;
}

.btn {
    border-radius: var(--bs-btn-border-radius);
}

.btn-lg, .btn-group-lg > .btn {
    padding: .5rem 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 4px;
}

.btn-primary {
    background-color: #348E38;
    border-color: #348E38;
}

    .btn-primary:hover {
        color: #000;
        background-color: #529f56;
        border-color: #48994c;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #000;
        background-color: #529f56;
        border-color: #48994c;
        box-shadow: 0 0 0 .25rem rgba(44,121,48,0.5);
    }

form-control {
    color: #525368;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.card {
    color: #525368;
}


.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:focus {
    color: #525368;
    background-color: #fff;
    border-color: #9ac79c;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(52,142,56,0.25);
}

.form-select:focus {
    border-color: #9ac79c;
    box-shadow: 0 0 0 .25rem rgba(52,142,56,0.25);
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,0.25);
    appearance: none;
    color-adjust: exact;
}

    .form-check-input:focus {
        border-color: #9ac79c;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(52,142,56,0.25);
    }

    .form-check-input:checked {
        background-color: #348E38;
        border-color: #348E38;
    }

.form-floating {
    padding: 0px;
}

    .form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
        transform: scale(.75) translateY(-.5rem) translateX(.15rem);
    }

label.form-float {
    transform: scale(0.7);
    font-weight: bold;
    color: rgba(var(--bs-body-color-rgb),.65);
}


input[required] + label, select[required] + label {
    font-weight: bold;
}



.text-primary {
    color: #348E38 !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #348E38;
}


.page-link {
    color: #348E38;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

    .page-link:hover {
        color: #2a722d;
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

.table {
    --bs-table-bg: rgba(0,0,0,0);
    --bs-table-striped-color: #525368;
    --bs-table-striped-bg: rgba(0,0,0,0.05);
    --bs-table-active-color: #525368;
    --bs-table-active-bg: rgba(0,0,0,0.1);
    --bs-table-hover-color: #525368;
    --bs-table-hover-bg: rgba(0,0,0,0.075);
    color: #525368;
    border-color: #dee2e6;
}

.table-striped > tbody > tr:nth-of-type(2n+1) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table > :not(caption) > * > * {
    background-color: var(--bs-table-bg);
    color: #525368;
}

.is_valid-object {
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.is_invalid-object {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}


/* select 2*/
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #E8F5E9;
    color: black;
}

.select2-container.select2-container--focus .select2-selection, .select2-container.select2-container--open .select2-selection {
    border-color: #9ac79c;
    border-bottom-color: #9ac79c;
    box-shadow: 0 0 0 .25rem rgba(52,142,56,0.25);
}

.select2-dropdown {
    border-color: #9ac79c;
    border-bottom-color: #9ac79c;
    box-shadow: 0 0 0 .25rem rgba(52,142,56,0.25);
    clip-path: inset(0px -10px -10px -10px);
}

input:focus-visible {
    border: 2px solid #9ac79c;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple {
    margin-top: 1.4rem;
    padding-left: 12px;
}

.select2-container--default .select2-selection--single {
    height: 3.5rem;
}

.alert-danger a {
    color: #EC4747;
}

    .alert-danger a:hover {
        color: #972727;
    }

.top-part a.action {
    color: white;
}

    .top-part a.action:hover {
        color: var(--primary);
    }

.top-part .user-menu {
    width: 330px
}

    .top-part .user-menu img.avatar {
        height: 53px;
    }

.top-part .autofill-dropdown-menu .dropdown-item {
    overflow: hidden;
    text-overflow: ellipsis;
}

.cursor-pointer {
    cursor: pointer;
}

.profile-avatar {
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .profile-avatar img {
        position: absolute;
        margin: 0px !important;
    }

    .profile-avatar label {
        cursor: pointer;
        height: 150px;
        width: 150px;
        z-index: 20;
    }

        .profile-avatar label:hover, .modal-dialog .profile-avatar label {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.6);
            color: #fafafa;
            transition: background-color 0.2s ease-in-out;
            border-radius: 50%;
        }

#avatar-modal img.border {
    border-width: 2px !important;
}

    #avatar-modal img.border:hover {
        border: 2px solid red !important;
    }

#avatar-modal .profile-avatar img {
    height: 150px;
    max-width: 150px;
}

#avatar-modal .uploadInProgress label {
    color: transparent;
    background-color: rgba(0, 0, 0, 0.8);
}

#avatar-modal .profile-avatar .upload-loader {
    position: absolute;
    z-index: 100;
}

#avatar-modal .loader, .mastership-condition-tool .loader {
    display: none;
}

#cropper-modal .modal-body {
    height: 50vh;
}

#cropper-modal .img-container {
    height: 90%;
}


.accordion-button {
    background-color: transparent;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background-color: transparent;
        box-shadow: none !important;
    }

.op-detail-tools i {
    color: var(--dark);
    font-size: calc(1rem + 0.2vw);
    cursor: pointer;
}

.op-tool {
    color: var(--dark) !important;
}

    .op-tool.fa-solid.fa-heart {
        color: darkred !important;
    }

    .op-tool.fa-regular.fa-heart.disabled {
        color: gray !important;
        cursor: auto;
    }

.op-detail-tools .op-tool {
    display: block;
    margin-bottom: 0.5rem;
}

/* fix summernote */
.note-modal-footer {
    height: auto !important;
    overflow: auto;
}

.toast {
    z-index: 10000;
}


.nav-tabs .nav-item .nav-link {
    color: var(--primary);
}

.nav-tabs .nav-item .active {
    font-weight: bold;
    color: var(--dark);
}

.form-loader {
    display: none;
}

.mastership-condition-tool {
    font-size: 0.9em;
}

img.img-cernobila {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.op-priloha {
    height: 80px;
}

    .op-priloha:hover {
        border-color: black !important;
    }

    .op-priloha img {
        max-height: 60px;
        max-width: 120px;
    }

.op-edit-priloha {
    height: 175px;
}

    .op-edit-priloha:hover {
        border-color: black !important;
    }

    .op-edit-priloha img {
        max-height: 103px;
        max-width: 124px;
    }

    .op-edit-priloha .op-edit-priloha-imgarea {
        height: 103px;
    }

    .op-edit-priloha .op-edit-priloha-nazev {
        font-size: 0.85em;
    }

.dropzone .dz-preview.dz-image-preview {
    background: none !important;
}

.select2-container--default .select2-selection--single.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .select2-container--default .select2-selection--single.is-invalid:focus,
    .select2-container.select2-container--focus .is-invalid,
    .select2-container.select2-container--open .is-invalid {
        border-color: var(--bs-form-invalid-border-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb),.25) !important;
    }

.select2-container.select2-container--focus .select2-selection {
}

#favoritesMISTROVSTVI img{
    width: 30px;
} 