
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-indicators .active {
    background-color: #23272b;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #000000;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000000 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.transition-all {
    transition:all .5s ease-in
}

.blur{
    filter: blur(4.5px);
}

.loading{
    position: absolute;
    left: 50%;
    top: 35%;
    text-align: center;
}

.icon {
    max-width: 100%;
    max-height: 100%;

}

.icon-container {
    height: 64px;
    width: 64px;
    border: 1px solid var(--bs-border-color);
    border-radius: .375rem;
    padding: 0.2rem;
    text-align: center;
}

.bi-x-circle:hover {
    color: red;
    transition:all 0.2s;
}

/*User entries*/

.userEntry{
    border: 1px solid #dfdfe1;
    border-radius: 4px;
    background-color: #f9f9fb;
    margin-top: 5pt;
    padding-left: 12px;
    padding-right: 12px;
    transition: 0.3s;
}

.itemLastText{
    font-size: 7pt;
    color: #6c6c6c;
    margin-top: 2.5pt;
}
.itemEntry{
    border: 1px solid;
    border-color: #dfdfe1;
    border-radius: 4px;
    background-color: #f9f9fb;
    margin-top: 2.5pt;
    margin-bottom: 2.5pt;
    margin-right: 1pt;
    margin-left: 1pt;
    padding-left: 12px;
    padding-right: 6px;
    transition: 0.4s;
    font-size: 10pt;
}

.itemAmount {
    padding: 0;
    border: none;
    font: inherit;
    background-color: #808080;
    color: white;
    cursor: pointer;
    height: 17px;
    width: 17px;
    font-size: 7pt;
    border-radius: 10px;
}

.itemDate{
    font-size: 8pt;
    color: #364249;
}

.itemCost{
    text-align: right;
    font-size: 9pt;
    height: 17px;
    width: fit-content;
    border-radius: 6px ;
}

.itemCostRed{
    /*border: 1px solid #792121;*/
    background-color: #e7dada;
}

.itemCostGreen{
    /*border: 1px solid  #217935;*/
    background-color: #dbe7da;
}

.bi-plus-circle-dotted {
    color: green;
}

.disableLink a{
        all: unset;
}

.userEntry:hover{
    border-color: var(--bs-black);
    transition: all 0.4s;
}

.userFirstName{
    font-size: 9pt;
    color: #6487a2;
    transition: all 0.4s;
}

.userEntry:hover .userFirstName{
    color: var(--bs-primary);
    transition: all 0.4s;
}

.userBalance{
    background-color: #dae7db;
    text-align: right;
    padding-right: 4px;
    padding-left: 4px;
    border-radius: 6px ;
    border: 1px solid #217935;
    font-size: 9.5pt;
    min-width: fit-content;
}

.userBalanceRed{
    border: 1px solid #792121;
    background-color: #e7dada;
}

.userContent{
    max-height: 0;
    overflow: hidden;
    background-color: #f1f1f1;
    transition: max-height 0.4s ease-out;
}