.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
    /* gap: 60px; */
    gap: 50px;
    padding-left: 30px;
}

.card {
    position: relative;
    width: 100%;
    height: 356px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 8px, rgba(0, 0, 0, 0.22) 0px 2px;

}

.disable-transition {
    transition: none !important;
}

.card-img-box {
    width: 100%;
    height: 100%;
}

.card img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transform: scale(1.1);
}



/* GRID VIEW CHECKBOX DEFINITION*/

.checkbox-round {
    width: 42px;
    height: 42px;
    background-color: transparent;
    border-radius: 50%;
    vertical-align: middle;
    border: 2px solid #fff;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 27px;
    transition: all 0.6s;
}


.checkbox-round[switchstatus="todo"]::after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 9px;
    opacity: 0;
    position: absolute;
    top: 12px;
    right: 8px;
    transform: rotate(-45deg);
    width: 20px;
    transition: all 0.6s;
}

.checkbox-round[switchstatus="done"]::after {
    border: none;
    border-top: none;
    border-right: none;
    content: "";
    height: 20px;
    width: 20px;
    opacity: 1;
    position: absolute;
    top: 8px;
    right: 8px;
    background: url(../image/thumbs-.png);
    transform: none;
    transition: all 0.4s;
}



.checkbox-round[switchstatus="todo"] {
    background-color: #FDC342;
}


.no-hover {
    pointer-events: none;
    /* Add other styles if needed to negate hover effects */
}

/*EMPTY ICON */
.checkbox-round[switchstatus=""] {}

/*NO STATUS ICON, EMPTY*/
.checkbox-round[switchstatus=""]::after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 9px;
    opacity: 0;
    position: absolute;
    top: 12px;
    right: 8px;
    transform: rotate(-45deg);
    width: 20px;
    transition: all 0.6s;
}

/*TODO HOVER ICON */
.checkbox-round[switchstatus=""]:hover {
    background-color: #FDC342;
}

.checkbox-round[switchstatus=""]:hover::after,
.checkbox-round[switchstatus="done"]:after,
.checkbox-round[switchstatus="todo"]:after,
.checkbox-round[switchstatus="todo"]:hover::after {
    opacity: 1;
}

.checkbox-round[switchstatus="todo"]:hover {
    background-color: #69D19C;
}

.checkbox-round[switchstatus="done"] {
    background-color: #6C63FF;
}   

/*grid view turn thumb upside down when hovering over 'done' */
.checkbox-round[switchstatus="done"]:hover::after {
    opacity: 1;
    transform: scaleY(-1);
    /*  */
}

/* END GRID CHECKBOX DEFINITONS */
/* Disable hover effects on touch devices */
@media (hover: none) {
    .checkbox-round[switchstatus="todo"]:hover{
        background-color: #FDC342;
        
        opacity:1;
    }
    .checkbox-round[switchstatus="done"]:hover{
    background-color: #6C63FF;
    transform: none;
    opacity:1;
    }
    .checkbox-round[switchstatus=""]:hover {
        opacity:1;
    background-color: transparent;
    }

    
    .checkbox-round[switchstatus=""]:hover::after {
        opacity: 0; /* Reset to non-hover state */
        transform: none; /* Reset transform */
    }

    .checkbox-round[switchstatus="done"]:hover::after {
        transform: none; /* Ensure transform reset */
    }
    
}





.bookmark {
    position: absolute;
    top: 0;
    left: 20%;
    height: 50px;
    width: 35px;
    box-sizing: border-box;
    color: yellow;
    font-size: 1.5em;
    text-shadow: 0 -1px 0 hsla(0, 0%, 0%, 0.5);
}

.bookmark:before {
    bottom: -50%;
    height: 100%;
    width: 100%;
    background-image:
        linear-gradient(-45deg,
            transparent 50%,
            #FDC342 50%),
        linear-gradient(45deg,
            transparent 50%,
            #FDC342 50%);
    z-index: -1;
}

.bookmark-img img {
    width: unset;
    height: unset;
    border-radius: unset;
    object-fit: unset;
}

.overlay {
    position: absolute;
    bottom: 0;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    background: #00000047;
}

.text-box h4 {
    color: #fff;
    font-size: 20px;
    position: absolute;
    /* bottom: 15px; */
    bottom: 28px;
    padding: 10px;
    line-height: 30px;
    /* left: 15px; */
    left:28px;
    right:28px;
}

.hover-card {
    position: absolute;
    /* top: 100px; */
    background: #141053;
    padding: 20px;
    height: 100%;
    bottom: -360px;
    transition: all 0.6s;
    right: 0;
    left: 0;
}

.card:hover {
    /*box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20PX;*/
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 10px;
}


.card:hover .hover-card {
    bottom: -100px;

}

.hover-card button {
    height: 100px;
    position: absolute;
    top: 199px;
    right: 0;
    left: 0;
    height: 140px;
    border-radius: 58%;
    padding-bottom: 72px;
    background: #353360;
    color: #fff;
    font-size: 18px;
    width: 100%;
}

.hover-card p {
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    margin-top: 20px;
}

/* Al gedaan */

.vertical-design,
.horizontal-design {
    display: none;
}

.v-box-todo,
.v-box-done,
.v-box-alle-maatregelen {
    display: none;
}

.h-nog-te-doen-box,
.h-al-gedaanbox,
.h-alle-maatregelen-box {
    display: none;
}

.show,
.design-show {
    display: block !important;
}


/* horizontal-card = list-view*/
.horizontal-cards .card {
    position: relative;
    width: 100%;
    height: 80px;
    border: unset;
    border-radius: 20px;
    cursor: pointer;
    background: #F7F7F7;
    box-shadow: 0px 0px 5px #000029;
    /* filter: drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.16)); */
    overflow: hidden;
    justify-content: center;
    transition: all 0.6s;
}






            /* 
            LIST VIEW CHECKBOXES DEFINITION
            */
            .horizontal-cards .checkbox-round {
                width: 35px;
                height: 35px;
                background-color: transparent;
                border-radius: 50%;
                vertical-align: middle;
                /* border: 2px solid #7C7C7C; */
                appearance: none;
                -webkit-appearance: none;
                outline: none;
                cursor: pointer;
                position: absolute;
                top: 22px;
                left: 20px;
                transition: all 0.5s;
            }

            .horizontal-cards .checkbox-round[switchstatus="todo"]::after {
                border: 2px solid #fff;
                border-top: none;
                border-right: none;
                content: "";
                height: 9px;
                opacity: 0;
                position: absolute;
                top: 8px;
                right: 6px;
                transform: rotate(-45deg);
                width: 20px;
                transition: all 0.6s;
            }


            /* LIST VIEW DONE */
            .horizontal-cards .checkbox-round[switchstatus="done"]::after {
                border: none;
                border-top: none;
                border-right: none;
                content: "";
                height: 25px;
                opacity: 1;
                position: absolute;
                top: 6px;
                right: 6px;
                background: url(../image/thumbs-.png);
                transform: none;
            }

            /* LIST VIEW TODO */
            .horizontal-cards .checkbox-round[switchstatus="todo"] {
                background-color: #FDC342;
            }

            /* LIST VIEW TODO: HOVER-> SHOW AS IF DONE */
            .horizontal-cards .checkbox-round[switchstatus="todo"]:hover {
                background-color: #69D19C;
            }

            /* LIST VIEW TODO: HOVER-> SHOW AS IF DONE */

            .horizontal-cards .checkbox-round[switchstatus="done"] {
                background-color: #6C63FF;
            }


            /* LIST VIEW TODO: HOVER-> SHOW AS IF DONE */
            .horizontal-cards .checkbox-round[switchstatus="todo"]:after,
            .horizontal-cards .checkbox-round[switchstatus="done"]:after,
            .horizontal-cards .checkbox-round[switchstatus="todo"]:hover::after {
                opacity: 1;
            }

            .horizontal-cards .checkbox-round[switchstatus="done"]:hover::after {
                opacity: 1;
            /* */
                transform: scaleY(-1);
            }


            /* END CHECKBOXES DEFINITION IN LIST VIEW */









.horizontal-cards {
    padding: 40px 0px;
    gap: 30px;
    display: grid;
}

.horizontal-cards .bookmark {
    position: absolute;
    top: 0;
    left: unset;
    right: 22% !important;
    height: 50px;
    width: 35px;
    /* background-color: #FDC342;
    background-image: linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.5) 5px, hsla(0, 0%, 100%, 0) 25px);
    -webkit-filter: drop-shadow(0 2px 6px hsla(0, 0%, 0%, 0.75)); */
    box-sizing: border-box;
    /* padding-top: 50px; */
    color: yellow;
    font-size: 1.5em;
    text-shadow: 0 -1px 0 hsla(0, 0%, 0%, 0.5);
}

.horizontal-cards .img-box img {
    width: 90px;
    height: 47px;
    border-radius: 10px;
    object-fit: cover;
}

.card-discription {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 70px;
    gap: 40px;

}

.title-box h4 {
    color: #141053;
}

.hidden-box {
    opacity: 0;
    transition: all 0.6s;
}

.hidden-box p {
    font-size: 16px;
    color: #fff;
}

.horizontal-hover-card button {
    position: absolute;
    /* right: -290px; */
    right: -100%;
    top: 0;
    bottom: 0;
    background: #5E5B8D;
    border-radius: 50px 0 0px 50px;
    width: 20%;
    height: 80px;
    color: #fff;
    font-size: 16px;
    transition: all 0.6s;
}

.horizontal-cards .card:hover {
    background: #141053;
}

.horizontal-cards .card:hover .horizontal-hover-card button {
    right: 0px;
}

.horizontal-cards .card:hover .hidden-box {
    opacity: 1;
}

.horizontal-cards .card:hover .title-box h4 {
    color: #fff;
}

.horizontal-cards .card:hover .horizontal-cards .checkbox-round {
    border: 2px solid #fff;
}

/* .horizontal-tabs .h-tab-todo {
    margin-right: 70px;
} */

.horizontal-tabs-active {
    /* color: #3F3D56 !important; */
    background-color: #e2e2e2 !important;
}

.horizontal-tabs .h-tab-todo::before {
    content: attr(todo-total);
    width: 22px;
    height: 22px;
    position: absolute;
    right: -8px;
    top: -5px;
    background: #FDC342;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.horizontal-tabs .h-tab-done::before {
    content: attr(done-total);
    width: 22px;
    height: 22px;
    position: absolute;
    right: -8px;
    top: -5px;
    background: #6C63FF;
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-nog-te-doen-box {
    display: none;
}

.h-al-gedaanbox {
    display: none;
}



.checklist {
    display: none;
}

.fill-your-checklist.desktop-screen {
    display: block;
}

.goed-discription p {
    margin-bottom: 0;
}

.fill-your-checklist.desktop-screen a {
    border-radius: 30px;
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 350px;
    background: #69D19C;
    transition: all 0.6s;
}

/* .goed-contain-box {
    padding: 82px 120px 72px 120px;
} */

.fill-your-checklist {
    position: relative;
    margin-top: 30px;
}

.balloon-img {
    position: relative;
}



.fill-your-checklist.desktop-screen a:hover {
    background: #6C63F9;
}

.balloon-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
}

.balloon-img:hover .balloon-hover {
    opacity: 1;
}



.profile-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 10px;
}

.balloon-hover img {
    width: 60px;
    height: 60px;
}

.balloon-hover img {
    width: 60px;
    height: 60px;
    padding: 0;
}



@media(max-width:1655px) {

    .goed-contain-box {
        padding: 60px 60px 60px 60px;
    }

    .circle-progresbar {
        gap: 20px;
    }
}

@media(max-width:768px) {
    .v-box-done .checkbox-round {
        top: 20px;
        right: 20px;
    }

    .main-header {
        height: 180px !important;
    }

    .right-side-box {
        margin-top: -15px !important;
    }

    .goed-bezig-slider {
        margin-top: 0 !important;
    }

    .goed-main-box {
        margin-top: -94px;
    }
}

.goed-contain-box .col-xl-7 {
    display: flex;
    align-items: center;
}
