﻿/*** 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;
    }

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary);
    }

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.jumbo-bg {
    background-image: url("../images/home/jet-bg.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.x-box {
    padding: 20px;
    /*background-color: aliceblue;*/
    transition: outline 0.3s ease;
    outline: 2px solid transparent;
}

    .x-box:hover {
        outline: 1px solid #b6d8da;
        outline-offset: 2px;
        cursor: pointer;
    }


/*Checkbox*/

.c-list-item {
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    list-style-type: none;
    transition: background-color 0.3s ease;
}

    .c-list-item:hover {
        background-color: #f0f0f0;
    }

    .c-list-item input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .c-list-item label {
        position: relative;
        padding-left: 35px; /* Space for the custom checkbox */
        cursor: pointer;
        font-size: 16px;
        display: block;
    }

        .c-list-item label::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 25px;
            border: 2px solid #ccc;
            background-color: #fff;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

    .c-list-item:hover label::before {
        border-color: #666; /* Darker border on hover */
    }

    .c-list-item input:checked + label::before {
        background-color: #2a2828ee;
        border-color: #2a2828ee;
    }

    .c-list-item input:checked + label {
        color: #2a2828ee;
        font-weight: 600;
    }

    .c-list-item label::after {
        content: "✔";
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%) scale(0);
        color: white;
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .c-list-item input:checked + label::after {
        transform: translateY(-50%) scale(1);
    }

.wrap-div {
    /* width: 100%;*/
    min-width: 300px;
}

@media only screen and (min-width: 768px) {
    .wrap-div {
        min-width: 600px;
    }
}

@media only screen and (min-width: 1024px) {
    .wrap-div {
        min-width: 850px;
    }
}



.checklist-container {
    width: 400px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.process-checklist {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .process-checklist li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        .process-checklist li:last-child {
            border-bottom: none;
        }

    .process-checklist input[type="checkbox"] {
        display: none;
    }

    .process-checklist label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        line-height: 1.4;
        color: #333;
    }

        .process-checklist label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            background: #fff;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

    .process-checklist input[type="checkbox"]:checked + label {
        color: #999;
        text-decoration: line-through;
    }

        .process-checklist input[type="checkbox"]:checked + label::before {
            border-color: #4CAF50;
            background-color: #4CAF50;
            content: '✔';
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 14px;
        }

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: process-counter;
}

.process-step {
    position: relative;
    padding: 20px 0 20px 60px;
    border-left: 2px solid #ccc;
    margin-bottom: 30px;
}

    .process-step::before {
        counter-increment: process-counter;
        content: counter(process-counter);
        position: absolute;
        left: -20px;
        top: 15px;
        background-color: #007bff;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        border: 3px solid #fff;
    }

    .process-step.completed::before {
        background-color: darkslategrey;
    }

    .process-step h3 {
        margin: 0 0 10px 0;
        color: #333;
    }

    .process-step p {
        margin: 0;
        color: #666;
    }

    .process-step:last-child {
        border-left: none; /* Removes the line after the final step */
        margin-bottom: 0;
    }
