/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.menu .app-brand.demo {
    height: 64px;
    margin-top: 12px;
}

.app-brand-logo.demo svg {
    width: 22px;
    height: 38px;
}

.app-brand-text.demo {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 76px !important;
}
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
    display: block !important;
}

.demo-inline-spacing > * {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element > :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element > :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element > :first-child {
    margin-top: 0 !important;
}

.rtl-only {
    display: none !important;
    text-align: left !important;
    direction: ltr !important;
}

[dir='rtl'] .rtl-only {
    display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-demo-placeholder img {
    width: 900px;
}

.layout-demo-info {
    text-align: center;
    margin-top: 1rem;
}

.fixed-table-container {
    border-radius: 6px;
    /* border: 1px inset #d9dee3; */
    -webkit-box-shadow: inset 0px 0px 0px 1px #d9dee3;
    -moz-box-shadow: inset 0px 0px 0px 1px #d9dee3;
    box-shadow: inset 0px 0px 0px 1px #d9dee3;
}

.fixed-table-body {
    border-radius: 6px;
}

.card-body:not(.no-border) {
    border-top: 1px solid #f2f2f2 !important;
    padding-top: 30px;
}

.slideshow {
    list-style-type: none;
    /* Add the blur effect */
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

    /** SLIDESHOW **/
    .slideshow,
    .slideshow:after {
        top: 0px; /*Not sure why I needed this fix*/
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0px;
        z-index: 0;
    }

        .slideshow li span {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0px;
            left: 0px;
            color: black;
            background-size: cover;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            opacity: 0;
            z-index: 0;
            animation: imageAnimation 30s linear infinite 0s;
        }

        .slideshow li:nth-child(1) span {
            background-image: url("../img/backgrounds/bg1.jpeg");
        }

        .slideshow li:nth-child(2) span {
            background-image: url("../img/backgrounds/bg2.jpeg");
            animation-delay: 6s;
        }

        .slideshow li:nth-child(3) span {
            background-image: url("../img/backgrounds/bg3.jpeg");
            animation-delay: 12s;
        }

        .slideshow li:nth-child(4) span {
            background-image: url("../img/backgrounds/bg4.jpeg");
            animation-delay: 18s;
        }

        .slideshow li:nth-child(5) span {
            background-image: url("../img/backgrounds/bg5.jpeg");
            animation-delay: 24s;
        }



@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 0.4;
        animation-timing-function: ease-out;
    }

    17% {
        opacity: 0.4
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}


@keyframes titleAnimation {
    0% {
        opacity: 0
    }

    8% {
        opacity: 1
    }

    17% {
        opacity: 1
    }

    19% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}


.no-cssanimations .cb-slideshow li span {
    opacity: 1;
}



.bg-animated {
    background-color: transparent;
    animation-name: bg-highlight;
    animation-duration: 2s;
}

.bg-animated-primary {
    background-color: rgba(105,108,255,.10);
    animation-name: bg-highlight-primary;
    animation-duration: 2s;
}

@keyframes bg-highlight {

    from {
        background-color: #ffff00;
    }

    to {
        background-color: transparent;
    }
}

@keyframes bg-highlight-primary {

    from {
        background-color: #ffff00;
    }

    to {
        background-color: rgba(105,108,255,.10);
    }
}

[preload] {
    background-color: rgba(255,255,255,0.2);
    position: fixed;
    min-width: 100% !important;
    min-height: 100% !important;
    top: 0px;
    left: 0px;
    z-index: 99999;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    backdrop-filter: blur(0px);
    transition-duration: .2s;
}

.active-blur {
    backdrop-filter: blur(5px);
}

.dropdown.bootstrap-select.form-control .btn-close {
    position: absolute;
    right: 40px;
    top: 10px;
}

    .dropdown.bootstrap-select.form-control .btn-close:hover {
        color: var(--bs-primary) !important;
        position: absolute;
        right: 40px;
        top: 10px;
        background: transparent url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&amp;-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate%28-225.000000, -250.000000%29'%3E%3Cg id='Icon-Color' transform='translate%28225.000000, 250.500000%29'%3E%3Cuse fill='red' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23696cff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/0.8em auto no-repeat;
    }

.pulse-danger {
    background-color: #ffe4e4;
    animation-name: color-danger;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes color-danger {
    0% {
        background-color: #ffe4e4;
    }

    50% {
        background-color: #ffc8c8;
    }

    100% {
        background-color: #ffe4e4;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.animation-dot {
    display: none !important;
}

.dropdown-item.active.selected .text-muted {
    color: #40507578 !important;
}

.bg-whitesmoke {
    background-color: whitesmoke !important;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 120%; /* Set the maximum width to 120% */
    margin: 0 auto; /* Center the row horizontally (optional) */
}

    .image-row a {
        width: 100px;
        height: 100px;
        background-color: white;
        background-position: center;
        background-size: cover;
        border-radius: 10px;
        padding: 2px;
        border: 1px solid lightgray;
        -moz-transition: transform .2s;
        -o-transition: transform .2s;
        -webkit-transition: transform .2s;
        transition: transform .2s;
        /*flex: 0 0 calc(16.666% - 10px);*/ /* Set the width for each image (16.666% for 6 images per row) */
        object-fit: cover; /* Maintain aspect ratio while fitting within the defined dimensions */
        margin-bottom: 10px; /* Add some spacing between images */
        box-sizing: border-box; /* Include padding and borders in the image width */
        margin-right: 10px; /* Add space between images */
    }

        .image-row a:hover {
            transform: scale(1.05);
            z-index: 9;
            -webkit-box-shadow: 0px 10px 32px -10px rgba(0,0,0,0.49);
            -moz-box-shadow: 0px 10px 32px -10px rgba(0,0,0,0.49);
            box-shadow: 0px 10px 32px -10px rgba(0,0,0,0.49);
        }

    /* Adjust the last image in each row to remove the right margin */
    .image-row img:nth-child(6n) {
        margin-right: 0;
    }

/* Media query for mobile screens */
@media (max-width: 380px) {
    .image-row img {
        flex: 0 0 calc(33.333% - 10px); /* Set the width for each image (33.333% for 3 images per row on mobile) */
    }

        /* Adjust the last image in each row for mobile */
        .image-row img:nth-child(3n) {
            margin-right: 0;
        }
}

.check-thumb {
    display: flex;
    position: relative;
    z-index: 10
}

.ignore-transitions {
    -moz-transition: none !important;
    -o-transition: none !important;
    -webkit-transition: none !important;
    transition: none !important;
}

    .ignore-transitions:hover {
        transform: scale(1) !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }

.thumb-deletion:hover {
    border: 1px solid var(--bs-danger) !important;
}


.thumb-to-delete {
    border: 4px solid var(--bs-danger) !important;
}

[disabled] {
    pointer-events: none !important;
    opacity: 0.7 !important;
}

.dropdown-menu.show {
    z-index: 99999 !important;
}

.is-warning {
    border-color: var(--bs-warning) !important;
}

.toastui-calendar-weekday-event:hover {
    transition: filter 0.1s linear;
}

.toastui-calendar-weekday-event:hover {
    filter: brightness(120%) saturate(120%) !important;
}

.bs-select-all {
    border-color: #d9dee3 !important;
}

.bs-deselect-all {
    border-color: #d9dee3 !important;
}

.bs-actionsbox .btn-group {
    min-width: 100%;
}

.dropdown-item.selected {
    background-color: #40507523 !important;
    color: var(--bs-primary);
}

.dropdown-item .bs-ok-default.check-mark {
    margin-top: 5px;
}

.swal2-popup {
    user-select: text !important;
}

@media (max-width: 550px) {
    table {
        zoom: 0.7 !important;
    }
}

.card-toggle {
    padding: 7px 12px;
    border-radius: 5px;
}