
@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');


html, body {
    /*margin-top: 3rem;*/
}
 
body, h2, h3, h4, h5, h6, p, a, span {
    font-family: "SUSE", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

 
.empty-div {
    min-height: 1.7rem
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bd-violet-bg);
    --bs-tooltip-color: var(--bs-white);
}

.bg-green {
    background-color: #d9ffee !important;
}

.bg-gray {
    background-color: #ebebeb !important;
}

input, select, textarea {
    border-radius: 0.4rem;
    border: 2px solid #ebebeb;
    background-color: white;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

    input:focus, select:focus, textarea:focus {
        box-shadow: 0 0 0 4px rgba(85, 244, 167,0.2);
        outline: none;
        border: none;
    }

 

.settings {
    max-width: 60rem;
}

.footer {
    position: relative !important;
}


.block-span {
    display: block;
}

.btn-logo {
    border: 1px dashed gray;
    width: 20rem;
    height: 20rem;
}

    .btn-logo img {
        width: 200px;
    }

.cross {
    cursor: pointer;
}


.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.step.active .step-circle {
    background-color: #28a745;
    color: white;
}
/* /ONBOARDING STEPS */
.icon-setting {
    max-width: 3rem;
    max-height: 3rem;
}
/* /SHOW BANK ACCOUNT SWITCH FOR NEW INVOICE*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 10px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 4px;
        bottom: 2.4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }



    input:checked + .slider:before {
        transform: translateX(26px);
    }
/* /SHOW BANK ACCOUNT SWITCH FOR NEW INVOICE*/
/* INVOICE ITEMS CONTAINER */
.item-container {
    display: flex;
    flex-direction: column;
}


.item.sortable-ghost, .item.chosen {
    background-color: rgba(238, 245, 133,0.5); /* Mění barvu pozadí během přetahování */
}

.iconDeleteItem {
    stroke: gray;
}

    .iconDeleteItem:hover {
        stroke: red;
    }

.iconHelpShowIban {
    color: gray;
    font-size: 1.5rem;
}

    .iconHelpShowIban:hover {
        color: green;
        cursor: pointer;
    }

i, a {
    cursor: pointer;
}
.bi-list{
cursor: ns-resize;
}
.drag-icon {
    color: gray !important;
    transition: transform 0.2s ease !important;
}

    .drag-icon:hover {
        color: black !important;
        font-weight: 900 !important;
        transform: scale(1.2) !important;
    }

.bi-x-circle:hover {
    color: red;
}

.item {
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    user-select: none;
    position: relative; /* Položky by měly být relativně pozicovány */
    margin-bottom: 5px; /* Mezera mezi položkami */
}

.placeholder {
    background-color: #d9ffee;
    border: 1px dashed #ccc;
    box-sizing: border-box;
    height: 40px; /* Nastavení výšky placeholderu */
    margin-bottom: 5px; /* Mezera mezi položkami */
}

.dragging {
    position: absolute; /* Změna na absolutní pozici */
    pointer-events: none; /* Zabránit událostem myši */
    z-index: 1000; /* Zobrazit nad ostatními */
    opacity: 0.8; /* Poloprůhledná */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* /INVOICE ITEMS CONTAINER */

.invoice-total-price {
    background-color: #fafafa;
    height: 10rem;
}

.red-asterisk {
    color: red;
    font-size: 1rem;
}
/* CONTACT ALL */
.contact-box {
    height: 3rem;
    color: #0862f8;
    cursor: pointer;
}

    .contact-box:hover {
        color: #000;
        font-size: 1.1rem;
        transition: font-size 0.1s linear;
    }

.contact-box-letter {
    height: 3rem;
    background-color: #fafafa;
}
/* SEARCH ICON */
.search-container, .specify-due-on-container {
    position: relative;
}

    .search-container input {
        padding-left: 35px; /* Prostor pro ikonu */
    }

.customer-container {
    position: relative;
    padding-right: 35px;
}

.search-icon {
    position: absolute;
    left: 1.4rem;
    top: 1.4rem;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
}

.specify-due-on-icon {
    position: absolute;
    right: 9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
}

.customer-cancel-icon {
    position: absolute;
    left: 89%;
    top: 50%;
    transform: translateY(-41%);
    font-size: 18px;
    color: #aaa;
}

.centered-form {
    max-width: 39rem;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/*COMBO BOX FOR INPUT CUSTOMER IN NEW INVOICE PAGE*/


.combobox ul {
    position: absolute;
    top: 100%;
    left: 0rem;
    right: 0rem;
    border: 1px solid #ccc;
    max-height: 20rem;
    overflow-y: auto;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1000;
    max-width: 20rem;
}

    .combobox ul li {
        padding: 8px;
        cursor: pointer;
    }

        .combobox ul li:hover {
            background: #eee;
        }

    .combobox ul .no-results {
        color: red;
        text-align: center;
    }
